-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroutes.js
40 lines (39 loc) · 1.42 KB
/
routes.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
const ObjectID = require('mongodb').ObjectID;
module.exports = function(app) {
app.get('/:collection/api', function (req, res) {
if (!req.query.phone || !req.query.text) {
res.statusCode = 400;
res.send({error: 400});
} else {
const message = {
time: Date.now(),
phone: req.query.phone,
text: req.query.text
};
req.db.collection(req.params.collection).insertOne(message, function (err, result) {
if (err) throw err;
res.send(result.ops[0]);
});
}
});
app.get('/:collection/messages', function (req, res) {
req.db.collection(req.params.collection).find().toArray(function(err, result) {
if (err) throw err;
res.send(result);
});
});
app.get('/:collection/messages/:id', function (req, res) {
const id = req.params.id;
req.db.collection(req.params.collection).findOne({ '_id': new ObjectID(id) }, function(err, result) {
if (err) throw err;
res.send({ok: result.ok});
});
});
app.delete('/:collection/messages/:id', function (req, res) {
const id = req.params.id;
req.db.collection(req.params.collection).removeOne({ '_id': new ObjectID(id) }, function(err, result) {
if (err) throw err;
res.send(result);
});
});
};