124 lines
3.3 KiB
JavaScript
124 lines
3.3 KiB
JavaScript
const config = require('../config');
|
|
const request = require('request');
|
|
|
|
module.exports.getDetails = function (detailsId, movieOrTv, tmdbApiKey, language, cb) {
|
|
|
|
if (movieOrTv == 'movie' || movieOrTv == 'tv') {
|
|
|
|
const detailURL = config.theMovieDbURL + movieOrTv + '/' + detailsId + '?api_key=' + tmdbApiKey + '&language=' + language;
|
|
|
|
request(detailURL, (err, resultBody, body) => {
|
|
if (resultBody != '') {
|
|
const getJson = JSON.parse(resultBody.body);
|
|
|
|
if (getJson.status_code > 1) {
|
|
// if wrong api key error
|
|
const error = 'tmdb get detail wrong api key error';
|
|
const result = null;
|
|
cb(error, result);
|
|
}
|
|
else {
|
|
if (err) {
|
|
// if thmdb api connection error
|
|
const error = 'tmdb get detail api connection error';
|
|
const result = null;
|
|
cb(error, result);
|
|
}
|
|
else {
|
|
const error = null;
|
|
const result = getJson;
|
|
cb(error, result);
|
|
}
|
|
}
|
|
} else {
|
|
const error = 'tmdb get detail api connection error';
|
|
const result = null;
|
|
cb(error, result);
|
|
}
|
|
});
|
|
}
|
|
else {
|
|
const error = 'tmdb get detail wrong watch parameter';
|
|
const result = null;
|
|
cb(error, result);
|
|
}
|
|
}
|
|
|
|
module.exports.getCredits = function (detailsId, movieOrTv, tmdbApiKey, cb) {
|
|
|
|
if (movieOrTv == 'movie' || movieOrTv == 'tv') {
|
|
|
|
const creditsURL = config.theMovieDbURL + movieOrTv + '/' + detailsId + '/credits?api_key=' + tmdbApiKey + '&language=en-US';
|
|
|
|
request(creditsURL, (err, resultBody, body) => {
|
|
|
|
const getJson = JSON.parse(resultBody.body);
|
|
|
|
if (getJson.status_code > 1) {
|
|
// if wrong api key error
|
|
const error = 'tmdb get credits wrong api key error';
|
|
const result = null;
|
|
cb(error, result);
|
|
}
|
|
else {
|
|
if (err) {
|
|
// if thmdb api connection error
|
|
const error = 'tmdb get credits api connection error';
|
|
const result = null;
|
|
cb(error, result);
|
|
}
|
|
else {
|
|
const error = null;
|
|
const result = getJson;
|
|
cb(error, result);
|
|
}
|
|
}
|
|
|
|
});
|
|
}
|
|
else {
|
|
const error = 'tmdb get credits wrong watch parameter';
|
|
const result = null;
|
|
cb(error, result);
|
|
}
|
|
}
|
|
|
|
module.exports.getImages = function (detailsId, movieOrTv, tmdbApiKey, cb) {
|
|
|
|
if (movieOrTv == 'movie' || movieOrTv == 'tv') {
|
|
|
|
const creditsURL = config.theMovieDbURL + movieOrTv + '/' + detailsId + '/images?api_key=' + tmdbApiKey + '&language=en-US&include_image_language=en,null';
|
|
|
|
request(creditsURL, (err, resultBody, body) => {
|
|
|
|
const getJson = JSON.parse(resultBody.body);
|
|
|
|
if (getJson.status_code > 1) {
|
|
// if wrong api key error
|
|
const error = 'tmdb get images wrong api key error';
|
|
const result = null;
|
|
cb(error, result);
|
|
}
|
|
else {
|
|
if (err) {
|
|
// if thmdb api connection error
|
|
const error = 'tmdb get images api connection error';
|
|
const result = null;
|
|
cb(error, result);
|
|
}
|
|
else {
|
|
const error = null;
|
|
const result = getJson;
|
|
cb(error, result);
|
|
}
|
|
}
|
|
|
|
});
|
|
}
|
|
else {
|
|
const error = 'tmdb get images wrong watch parameter';
|
|
const result = null;
|
|
cb(error, result);
|
|
}
|
|
}
|