-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathroutes.js
More file actions
84 lines (61 loc) · 2.01 KB
/
routes.js
File metadata and controls
84 lines (61 loc) · 2.01 KB
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
var Todo = require('./models/todo');
function getTodos(res){
Todo.find({done:false},function(err, todos) {
// if there is an error retrieving, send the error. nothing after res.send(err) will execute
if (err)
res.send(err)
res.json(todos); // return all todos in JSON format
});
};
function getOldTodos(res){
Todo.find({done:true},function(err, todos) {
// if there is an error retrieving, send the error. nothing after res.send(err) will execute
if (err)
res.send(err)
res.json(todos); // return all todos in JSON format
});
}
module.exports = function(app) {
// api ---------------------------------------------------------------------
// get all todos
app.get('/api/todos', function(req, res) {
// use mongoose to get all todos in the database
getTodos(res);
});
// create todo and send back all todos after creation
app.post('/api/todos', function(req, res) {
// create a todo, information comes from AJAX request from Angular
Todo.create({
text : req.body.text,
done : false,
//timeCompleted: null
}, function(err, todo) {
if (err)
res.send(err);
// get and return all the todos after you create another
getTodos(res);
});
});
// Check off todo
app.delete('/api/todos/:todo_id', function(req, res) {
Todo.findById(req.params.todo_id, function (err, todo) {
if (err)
res.send(err);
todo.done = true;
//todo.timeCompleted = Date.now();
todo.save(function (err) {
if (err)
res.send(err);
getTodos(res);
});
});
});
app.get('/api/completed', function(req, res) {
//res.sendfile('./public/old.html');
getOldTodos(res);
});
// application -------------------------------------------------------------
app.get('*', function(req, res) {
res.sendfile('./public/index.html'); // load the view file (angular will handle the page changes on the front-end)
});
};