-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
95 lines (85 loc) · 2.32 KB
/
index.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
const express = require('express');
const app = express();
const models = require('./models');
const mongoose = require('mongoose');
mongoose.connect('mongodb://localhost/dinesafe');
function getCount(query,model) {
return new Promise((res) =>{
models[model].count(query,(...args) => res(args));
});
}
app.get('/', (_,res) => {
models.Info.findOne((err,doc) =>{
if(err) {
res
.status(400)
.send({
error: err
});
return;
}
res
.status(200)
.send(doc);
})
});
app.get('/restaurants',(req,res) =>{
const per_page = Number(req.query.per_page > 30 ? 30 : req.query.per_page) || 30;
const offset = Number(req.query.offset) || 0;
const inspections = req.query.inspections || false;
const query = {};
models.Restaurant
.find({}, async (err,docs) => {
if(err) {
res.status(400)
.send({
error: err
});
return;
}
const [_, count] = await getCount(query,'Restaurant');
res.status(200)
.send({
restaurants: docs,
count
});
})
.populate(inspections === 'true' ? 'inspections' : '')
.limit(per_page)
.skip(offset)
});
app.get('/restaurants/:id',(req,res) => {
const { id } = req.params;
models.Restaurant.findOne({ establishment_id: id },(err,doc) => {
if(err) {
res.status(400)
.send({
error: err
});
return;
}
res.status(200)
.send({
restaurant: doc
});
})
.populate('inspections');
});
app.get('/restaurants/:id/inspections', (req,res) => {
const { id } = req.params;
models.Restaurant.findOne({ establishment_id: id }, (err,doc) => {
if(err) {
res.status(400)
.send({
error: err
});
return;
}
res.status(200)
.send({
inspections: doc.inspections
});
})
.populate('inspections');
});
app.listen(process.env.PORT || '3700');