-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
131 lines (107 loc) · 3.11 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
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 foundItem;
var nextTodoId = 1;
var todos = [];
app.use(bodyParser.json());
app.get('/', function(req, res) {
res.send('Todo API Root');
});
app.get('/todos', function(req, res) {
var queryParams = req.query;
var filteredTodos = todos;
if (queryParams.hasOwnProperty('completed') && queryParams.completed === 'true') {
filteredTodos = _.where(filteredTodos, {
completed: true
});
} else if (queryParams.hasOwnProperty('completed') && queryParams.completed === 'false') {
filteredTodos = _.where(filteredTodos, {
completed: false
});
}
if (queryParams.hasOwnProperty('q') && queryParams.q.length > 0) {
filteredTodos = _.filter(filteredTodos, function(todo) {
return todo.description.toLowerCase().indexOf(queryParams.q.toLowerCase()) > -1;
});
}
res.json(filteredTodos);
});
// GET /todos/:id
app.get('/todos/:id', function(req, res) {
var todoId = parseInt(req.params.id, 10);
var matchedTodo = _.findWhere(todos, {
id: todoId
});
if (matchedTodo) {
res.json(matchedTodo);
} else {
res.status(404).send();
}
});
// POST /todos
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);
});
// call create on db.todo
// respond with 200 and todo
// res.status(400).json(e)
// if (!_.isBoolean(body.completed) || !_.isString(body.description) || body.description.trim().length === 0) {
// return res.status(400).send();
// }
// body.description = body.description.trim();
// body.id = todoNextId++;
// todos.push(body);
// res.json(body);
});
// DELETE /todos/:id
app.delete('/todos/:id', function(req, res) {
var todoId = parseInt(req.params.id, 10);
var matchedTodo = _.findWhere(todos, {
id: todoId
});
if (!matchedTodo) {
res.status(404).json({
"error": "no todo found with that id"
});
} else {
todos = _.without(todos, matchedTodo);
res.json(matchedTodo);
}
});
// PUT /todos/:id
app.put('/todos/:id', function(req, res) {
var todoId = parseInt(req.params.id, 10);
var matchedTodo = _.findWhere(todos, {
id: todoId
});
var body = _.pick(req.body, 'description', 'completed');
var validAttributes = {};
if (!matchedTodo) {
return res.status(404).send();
}
if (body.hasOwnProperty('completed') && _.isBoolean(body.completed)) {
validAttributes.completed = body.completed;
} else if (body.hasOwnProperty('completed')) {
return res.status(400).send();
}
if (body.hasOwnProperty('description') && _.isString(body.description) && body.description.trim().length > 0) {
validAttributes.description = body.description;
} else if (body.hasOwnProperty('description')) {
return res.status(400).send();
}
_.extend(matchedTodo, validAttributes);
res.json(matchedTodo);
});
db.sequelize.sync().then(function() {
app.listen(PORT, function() {
console.log('Express listening on port ' + PORT + '!');
});
});