-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
159 lines (121 loc) · 3.61 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
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();
});
// var filterTodos = todos;
//
// if (queryParams.hasOwnProperty('completed') && queryParams.completed === 'true'){
// filterTodos = _.where(filterTodos,{completed:true});
// } else if(queryParams.hasOwnProperty('completed') && queryParams.completed === 'false'){
// filterTodos = _.where(filterTodos,{completed:false});
// }
//
// if (queryParams.hasOwnProperty('q') && queryParams.q.length > 0 ){
// filterTodos = _.filter(filterTodos, function (todo) {
// return todo.description.toLowerCase().indexOf(queryParams.q.toLowerCase()) > -1;
// })
// }
//
//
// res.json(filterTodos);
});
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();
});
// 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);
});
// if(!_.isBoolean(body.completed) || !_.isString(body.description) || body.description.trim().length === 0){
// return res.status(400).send();
// }
// body.id = todoNextId++;
// body.description = body.description.trim();
//
// todos.push(body);
//
// res.json(body);
});
// Delete /Todos:
app.delete('/todos/:id',function (req,res) {
var todoId= parseInt(req.params.id, 10);
var matchedTodo = _.findWhere(todos,{id:todoId});
if(!matchedTodo){
res.status(400).json({"error":"ID not found"})
}
todos = _.without(todos,matchedTodo);
res.json(matchedTodo);
});
// Edit /Todos:
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){
res.status(400).json({"error":"ID not found"})
}
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('Server Started on Port: ' + PORT)
});
});