-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
156 lines (126 loc) · 3.38 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
var express = require('express');
var bodyParser = require('body-parser');
var _ = require('underscore');
var db = require('./db.js');
var middleware = require('./middleware.js')(db);
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');
});
//GET /todos?completed=true&q=work
app.get('/todos', middleware.requireAuthentication, 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();
});
});
//GET /todos/:id
app.get('/todos/:id', middleware.requireAuthentication, 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();
});
});
// POST /todos
app.post('/todos', middleware.requireAuthentication, 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).send();
});
});
// DELETE /todos/:id
app.delete('/todos/:id', middleware.requireAuthentication, 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();
});
});
// PUT /todos/:id
app.put('/todos/:id', middleware.requireAuthentication, 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();
});
});
app.post('/users', function(req, res) {
var body = _.pick(req.body, 'email', 'password');
db.user.create(body).then(function (user) {
res.json(user.toPublicJSON());
}, function (e) {
res.status(400).json(e);
});
});
// POST /users/login
app.post('/users/login', function(req, res) {
var body = _.pick(req.body, 'email', 'password');
db.user.authenticate(body).then(function (user) {
var token = user.generateToken('authentication');
if (token) {
res.header('Auth', token).json(user.toPublicJSON());
} else {
res.status(401).send();
}
}, function () {
res.status(401).send();
});
});
db.sequelize.sync().then(function () {
app.listen(PORT, function () {
console.log('Express listening on port ' + PORT + '!');
});
});