-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
102 lines (100 loc) · 2.81 KB
/
server.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
96
97
98
99
100
101
102
var express = require('express');
var bodyParser = require('body-parser');
var _ = require('underscore');
var db = require('./db.js');
var app = express();
var PORT = process.env.PORT || 3000;
var todos = [];
var todoNextId = 1;
app.use(bodyParser.json());
app.get('/', function(req, res) {
res.send('Todo API Root');
});
app.get('/todos', function(req, res) {
var query = req.query;
var where = {};
if (query.hasOwnProperty('completed') && query.completed === 'true') {
where.completed = true;
} else if (query.hasOwnProperty('completed') && query.completed === 'false') {
where.completed = false;
}
if (query.hasOwnProperty('q') && query.q.length > 0) {
where.description = {
$like: '%' + query.q + '%'
};
}
db.todo.findAll({
where: where
}).then(function(todos) {
res.json(todos)
}, function(e) {
res.status(500).send();
});
});
app.get('/todos/:id', function(req, res) {
var todoId = parseInt(req.params.id, 10);
db.todo.findById(todoId).then(function(todo) {
if (!!todo) {
res.json(todo.toJSON());
} else {
res.status(404).send();
}
}, function(e) {
res.status(500).send();
});
});
app.post('/todos', function(req, res) {
var body = _.pick(req.body, 'description', 'completed');
db.todo.create(body).then(function(todo) {
res.json(todo.toJSON());
}, function(e) {
res.status(400).json(e);
});
});
app.delete('/todos/:id', function(req, res) {
var todoId = parseInt(req.params.id, 10);
db.todo.destroy({
where: {
id: todoId
}
}).then(function(rowsDeleted) {
if (rowsDeleted === 0) {
res.status(404).json({
error: 'No todo with id'
});
} else {
res.status(204).send();
}
}, function() {
res.status(500).send();
});
});
app.put('/todos/:id', function(req, res) {
var todoId = parseInt(req.params.id, 10);
var body = _.pick(req.body, 'description', 'completed');
var attributes = {};
if (body.hasOwnProperty('completed')) {
attributes.completed = body.completed;
}
if (body.hasOwnProperty('description')) {
attributes.description = body.description;
}
db.todo.findById(todoId).then(function(todo) {
if (todo) {
todo.update(attributes).then(function(todo) {
res.json(todo.toJSON());
}, function(e) {
res.status(400).json(e);
});
} else {
res.status(404).send();
}
}, function() {
res.status(500).send();
});
});
db.sequelize.sync().then(function() {
app.listen(PORT, function() {
console.log('Express listening on port ' + PORT + '!');
});
});