-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
350 lines (267 loc) · 7.95 KB
/
server.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
var express = require('express'),
http = require('http'),
path = require('path'),
mongoose = require('mongoose'),
winston = require('winston'),
Q = require('q'),
crawler = require('./lib/crawler');
var Ad = require('./lib/models/ad'),
Search = require('./lib/models/search'),
City = require('./lib/models/city');
var app = express();
// Connect to the mongo database
mongoose.connect('mongodb://localhost/lbc');
var logger = new (winston.Logger)();
if(app.get('env') === 'development') {
logger.add(winston.transports.Console, {
colorize: true
});
logger.cli();
crawler.setLogger(logger);
};
// all environments
app.set('port', process.env.PORT || 3000);
app.set('views', __dirname + '/views');
app.use(express.logger('dev'));
app.use(express.bodyParser());
app.use(express.methodOverride());
app.use(app.router);
app.configure('development', function() {
app.use(express.static(path.join(__dirname, 'app')));
});
app.configure('production', function() {
app.use(express.static(path.join(__dirname, 'dist')));
});
// development only
if ('development' == app.get('env')) {
app.use(express.errorHandler());
}
/**
* Return search by id
* @param {String} id Search id
* @return {Q.promise}
*/
var getSearchById = function(id) {
var defer = Q.defer();
Search
.findById(id)
.populate('cities', 'realName postcode')
.exec(function(err, search) {
defer.resolve(search);
});
return defer.promise;
}
var getAds = function(page, limit, filters) {
var defer = Q.defer();
page = page || 1;
limit = limit || 30;
filters = filters || {};
return Ad.find(filters)
.sort('-updatedAt')
.skip((page-1)*limit)
.limit(limit)
.exec(function(err, ads) {
if(err) {
return defer.reject();
}
return defer.resolve(ads);
});
return defer.promise;
};
var getAdsBySearch = function(search, page, limit, filters) {
// Filter by cities
if(search.cities.length > 0) {
var cities = [];
for(var i = 0; i < search.cities.length; i++) {
cities.push(search.cities[i].realName);
}
filters.city = { $in: cities };
}
return getAds(page, limit, filters)
}
// Get ads
app.get('/ws/ads', function(req, res) {
var page = req.query.page || 1;
var limit = req.query.limit || 30;
var filters = {};
var ignored = req.query.ignored === 'true';
var followed = req.query.followed === 'true';
filters.ignored = req.query.ignored;
if(followed) {
filters.followed = true;
}
if(req.query.idSearch) {
getSearchById(req.query.idSearch)
.then(function(search) {
return getAdsBySearch(search, page, limit, filters)
})
.then(function(ads) {
res.send(ads)
});
} else {
getSearch(page, limit, filters)
.then(function(ads) {
res.send(ads)
});
}
});
// Get ad
app.get('/ws/ads/:idAd', function(req, res) {
return Ad
.findById(req.params.idAd, function(err, ad) {
if(ad.partial == true) {
return crawler.updateAd(ad)
.then(function(ad) {
res.send(ad);
});
}
res.send(ad);
});
});
// Put ad
app.put('/ws/ads/:idAd', function(req, res) {
var $set = {
ignored: req.body.ignored,
partial: req.body.partial,
followed: req.body.followed,
};
return Ad
.findByIdAndUpdate(req.params.idAd, {
$set: $set
}, function(err, ad) {
res.send(ad);
});
});
// Get cities
app.get('/ws/cities', function(req, res) {
var limit = req.params.limit || 10;
var filters = {};
if(req.query.q) {
filters.realName = {
$regex: req.query.q+'.*',
$options: 'i'
};
}
return City
.find(filters)
.limit(limit)
.sort('-population')
.exec(function(err, cities) {
if(err) {
return res.status(404).send(err);
}
return res.send(cities);
});
});
// Get searches
app.get('/ws/searches', function(req, res) {
Search
.find()
.populate('cities', 'realName postcode')
.exec(function(err, searches) {
if(err) {
return res.status(404).send(err);
}
return res.send(searches);
});
});
// Get search
app.get('/ws/searches/:idSearch', function(req, res) {
if(!req.params.idSearch) {
return res.status(404).send('Search not found');
}
return Search
.findById(req.params.idSearch)
.populate('cities', 'realName postcode')
.exec(function(err, search) {
if(err) {
return res.status(404).send(err);
}
return res.send(search);
});
});
// Create search
app.post('/ws/searches', function(req, res) {
var search = new Search(req.body).save(function(err) {
if(err) {
return res.status(404).send(err);
}
return search
.populate('cities', 'realName postcode', function() {
return res.send(search);
});
});
});
// Update search
app.post('/ws/searches/:idSearch', function(req, res) {
if(!req.params.idSearch) {
return res.status(404).send('Search not found');
}
var datas = req.body;
return Search
.findById(req.params.idSearch)
.exec(function(err, search) {
if(err) {
return res.status(404).send(err);
}
search.title = datas.title;
search.photoOnly = datas.photoOnly;
search.updatedAt = datas.updatedAt;
search.updateFrequency = datas.updateFrequency;
search.cities = [];
for(var i in datas.cities) {
search.cities.push(datas.cities[i]._id);
}
search.urls = [];
for(var i in datas.urls) {
search.urls.push(datas.urls[i]);
}
return search.save(function(err) {
if(err) {
return res.status(404).send(err);
}
return search
.populate('cities', 'realName postcode', function() {
return res.send(search);
});
});
});
});
// Get search ads
app.get('/ws/searches/:idSearch/ads', function(req, res) {
if(!req.params.idSearch) {
return res.status(404).send('Search not found');
}
return Search
.findById(req.params.idSearch)
.populate('cities', 'realName')
.exec(function(err, search) {
if(err) {
return res.status(404).send(err);
}
var page = req.query.page || 1;
var limit = req.query.limit || 30;
var filters = {}
// Filter by cities
if(search.cities.length > 0) {
var cities = [];
for(var i = 0; i < search.cities.length; i++) {
cities.push(search.cities[i].realName);
}
filters.city = { $in: cities };
}
return Ad.find(filters)
.sort('-updatedAt')
.skip((page-1)*limit)
.limit(limit)
.exec(function(err, ads) {
if(err) {
return res.status(404).send(err);
}
return res.send(ads);
});
});
});
http.createServer(app).listen(app.get('port'), function() {
console.log('Express server listening on port ' + app.get('port') + ' in '+app.get('env')+' mode');
});