You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
772 B
30 lines
772 B
import { Router } from 'express';
|
|
import TheMovieDb from '../api/themoviedb';
|
|
import { mapSearchResults } from '../models/Search';
|
|
import Media from '../entity/Media';
|
|
|
|
const searchRoutes = Router();
|
|
|
|
searchRoutes.get('/', async (req, res) => {
|
|
const tmdb = new TheMovieDb();
|
|
|
|
const results = await tmdb.searchMulti({
|
|
query: req.query.query as string,
|
|
page: Number(req.query.page),
|
|
language: req.query.language as string,
|
|
});
|
|
|
|
const media = await Media.getRelatedMedia(
|
|
results.results.map((result) => result.id)
|
|
);
|
|
|
|
return res.status(200).json({
|
|
page: results.page,
|
|
totalPages: results.total_pages,
|
|
totalResults: results.total_results,
|
|
results: mapSearchResults(results.results, media),
|
|
});
|
|
});
|
|
|
|
export default searchRoutes;
|