forked from RunnableDemo/node-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
todos.js
76 lines (67 loc) · 1.57 KB
/
todos.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
const mongoose = require('mongoose')
const TodoSchema = mongoose.Schema({
id: String,
value: String,
index: Number,
checked: Boolean
})
TodoSchema.post('init', (todo) => {
todo.id = todo._id
})
TodoSchema.post('save', (todo) => {
todo.id = todo._id
todo.update({ id: todo.id }, (err) => {
if (err) console.log(err)
})
})
const Todo = mongoose.model('Todo', TodoSchema)
exports.all = (req, res) => {
console.log('Finding all todos')
return Todo.find((err, todos) => {
if (err) {
throw new Error(err, req, res)
}
res.send(todos)
})
}
exports.one = (req, res) => {
var id = req.params.id
console.log('Finding todo: ' + id)
return Todo.findById(id, (err, todo) => {
if (err) {
throw new Error(err, req, res)
}
res.send(todo)
})
}
exports.create = (req, res) => {
console.log('Creating new todo: ' + JSON.stringify(req.body))
var todo = new Todo(req.body)
return todo.save((err) => {
if (err) {
throw new Error(err, req, res)
}
res.send(todo)
console.log('Created new todo: ' + JSON.stringify(todo))
})
}
exports.update = (req, res) => {
var id = req.params.id
console.log('Updating todo: ' + JSON.stringify(req.body))
return Todo.findOneAndUpdate({'_id': id}, req.body, {}, (err, todo) => {
if (err) {
throw new Error(err, req, res)
}
res.send(todo)
})
}
exports.delete = (req, res) => {
var id = req.params.id
console.log('Deleting todo: ' + id)
return Todo.remove({'_id': id}, (err) => {
if (err) {
throw new Error(err, req, res)
}
res.send({})
})
}