-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroutes.js
88 lines (57 loc) · 1.35 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
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
// app/routes.js
// load the todo model
var Todo = require('./models/todo');
// expose the routes to our app with module.exports
module.exports = function(app) {
// api =======================================
// get all todos
app.get('*', function(req, res){
res.sendfile('./public/index.html');
});
// api ---------------------------------------
// get all todos
app.get('/api/todos', function(req, res){
// use mongoose to find all Todos
Todo.find(function(err, todos){
if(err){
res.send(err);
}
res.json(todos);
});
});
// create a todo and send back all todos after creation
app.post('/api/todos', function(req, res){
// use mongoose to insert new todo (from AJAX req from Angular) into DB
Todo.create({
text : req.body.text,
done : false
},function(err, todo){
if(err){
res.send(err);
}
// show all todos
Todo.find(function(err, todos){
if(err){
res.send(err);
}
res.json(todos);
});
});
});
// delete a todo
app.delete('/api/todos/:todo_id',function(req, res){
Todo.remove({
_id : req.params.todo_id
},function(err,todo){
if (err){ res.send(err); }
Todo.find(function(err, todos){
if (err){ res.send(err); }
res.json(todos);
});
});
});
// delete all from the db
app.get('/deleteall',function(req, res){
Todo.remove({});
});
};