Skip to content
Snippets Groups Projects
Commit d34776a4 authored by Bastien's avatar Bastien
Browse files

recherche criteres

parent fcc0565b
No related branches found
No related tags found
No related merge requests found
......@@ -41,6 +41,36 @@ exports.searchMovieByTitle = (searchTitle) => {
})
};
exports.searchMovie = (title,dateMin,dateMax,genres,personnes,order,croissant) => {
return new Promise((resolve,reject) => {
let query = 'SELECT * FROM Film WHERE 1=1';
if (title) {
query += ' AND primaryTitle LIKE CONCAT("%", ?, "%") OR titleFR LIKE CONCAT("%", ?, "%")';
}
if (dateMin) {
query += ' AND startYear >= ?';
}
if (dateMax) {
query += ' AND startYear <= ?';
}
if (genres) {
query += ' AND EXISTS (SELECT 1 FROM genreFilm gf WHERE gf.tconst = Film.tconst AND gf.idGen IN (?) )';
}
if (personnes) {
query += ' AND EXISTS (SELECT 1 FROM genreFilm gf WHERE gf.tconst = Film.tconst AND gf.idGen IN (?) )';
}
if (!croissant) {
query +='DESC';
}
})
}
/**
* Récupère la distribution d'un film en fonction de son identifiant unique (tconst).
*
......
......@@ -88,6 +88,7 @@ exports.getUserSeenMovies = (username) => {
}
})
})
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment