-
Notifications
You must be signed in to change notification settings - Fork 1
/
restHandler.js
160 lines (121 loc) · 4.68 KB
/
restHandler.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/*
This program is part of MovieRand (https://github.com/destan/change-it-now)
change-it-now is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
change-it-now is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with change-it-now. If not, see <http://www.gnu.org/licenses/>.
*/
"use strict";
var sessionManager = require('./sessionManager');
var apiRequestHelper = require('./apiRequestHelper');
var posterBase = 'http://cf2.imgobject.com/t/p/w342';
module.exports = {
getGenres: function(req, res, next) {
apiRequestHelper.httpGetRequest('/3/genre/list',function(responseString) {
var apiResponse = JSON.parse(responseString);
// return unsuccessful response if present
if(apiResponse.success == false){
res.end(JSON.stringify(apiResponse));
return;
}
res.end(JSON.stringify(apiResponse.genres));
});
},
getMovieByGenre: function(req, res, next) {
var pageCount;
var itemCount;
var randomPage;
var randomItem;
if(req.params && req.params.id){
apiRequestHelper.httpGetRequest('/3/genre/' + req.params.id + '/movies',function(responseString) {
var apiResponse = JSON.parse(responseString);
// return unsuccessful response if present
if(apiResponse.success == false){
res.end(JSON.stringify(apiResponse));
return;
}
pageCount = apiResponse.total_pages;
if(pageCount == 0){// there is no result for this genre
res.end(JSON.stringify({
"success":false,
"code":"EMPTY"
}));
return;
}
randomPage = randomFromInterval(1, pageCount);
if(randomPage != 1){
apiRequestHelper.httpGetRequest('/3/genre/' + req.params.id + '/movies?page=' + randomPage, function(responseString) {
apiResponse = JSON.parse(responseString);
// return unsuccessful response if present
if(apiResponse.success == false){
res.end(JSON.stringify(apiResponse));
return;
}
pickRandomMovieAndRespondBack();
});
return;
}
function pickRandomMovieAndRespondBack() {
// return unsuccessful response if present
if(apiResponse.success == false){
res.end(JSON.stringify(apiResponse));
return;
}
itemCount = apiResponse.results ? apiResponse.results.length : 0;
randomItem = randomFromInterval(0, itemCount - 1);
var selectedMovie = apiResponse.results[randomItem];
//get movie details
apiRequestHelper.httpGetRequest('/3/movie/' + selectedMovie.id, function(responseString) {
var theMovie = JSON.parse(responseString);
// return unsuccessful response if present
if(theMovie.success == false){
res.end(JSON.stringify(theMovie));
return;
}
//process selected movie
var processedResult = processMovie(theMovie);
res.end(JSON.stringify(processedResult));
});
}
pickRandomMovieAndRespondBack();
});
}//end if
},//end of getMovieByGenre
getMovieById: function(req, res, next) {
if(req.params && req.params.id) {
apiRequestHelper.httpGetRequest('/3/movie/' + req.params.id ,function(responseString) {
var theMovie = JSON.parse(responseString);
// return unsuccessful response if present
if(theMovie.success == false){
res.end(JSON.stringify(theMovie));
return;
}
//process selected movie
var processedResult = processMovie(theMovie);
res.end(JSON.stringify(processedResult));
});//end of api response handler
}//end of if
}//end of getMovieById
};
function randomFromInterval(from, to) {
return Math.floor(Math.random()*(to-from+1)+from);
}
function processMovie(theMovie) {
return {
id: theMovie.id,
title: theMovie.title,
overview: theMovie.overview,
imdb: theMovie.imdb_id,
originalTitle: theMovie.original_title,
poster: posterBase + theMovie.poster_path,
vote: theMovie.vote_average,
releaseDate: theMovie.release_date,
tagline: theMovie.tagline
};
}