-
Notifications
You must be signed in to change notification settings - Fork 0
/
serveur.js
350 lines (289 loc) · 9.43 KB
/
serveur.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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
///////env
const env = require('./config/config');
///////////////////////////////////////////////////////////REQUIRES
const express = require('express');
const bodyParser = require('body-parser');
const _ = require('lodash');
//const { mongoose, db } = require('./db/mongoose');
const { mongoose } = require('./db/mongoose');
const { Todo } = require('./models/todo');
const { User } = require('./models/user');
const { authentification } = require('./middleware/authentification');
const port = process.env.PORT;
const app = express();
//https://sleepy-hamlet-49567.herokuapp.com/
///////////////////////////////////////////////////////////REQUIRES
///////////////////////////////////////////////////////////MIDDLEWARES
app.use(bodyParser.json());
///////////////////////////////////////////////////////////MIDDLEWARES
///////////////////////////////////////////////////////////POST ROUTE
// app.post("/todos", (req, res) => {
// //console.log(req.body); //dans postman pour ttester l api. http://localhost:3000/todos
// const todo = new Todo({
// text: req.body.text,
// completed: false,
// completedAt: Date.now()
// })
// .save()
// .then(data => {
// //console.log(data); //dans le terminal.
// res.send(data) //ce qui retourne dans postman dans la boite response
//
// app.get('/' , (req, res) => { //a localhost:3000/
// res.send(` <h1>Test mongoose - postman ${data.text} </h1>` ); //Content-Type: text/html
// });
//
// })
// .catch(err => {
// res.status(400).send(err);
// });
// });
///POST ROUTE, AVEC AJOUT DU USER , AUTENTHIFICATION, A LUI ACCES A USER. POUR MERGER LES DEUX MODELS
app.post("/todos", authentification, (req, res) => {
const todo = new Todo({
text: req.body.text,
completed: false, //pas besoin , deja a false par defaut.
completedAt: Date.now(),
_creator: req.user._id // provient de authentification , le middleware homemade
})
.save()
.then(data => {
//console.log(data); //dans le terminal.
res.send(data) //ce qui retourne dans postman dans la boite response
app.get('/' , (req, res) => { //a localhost:3000/
res.send(` <h1>Test mongoose - postman ${data.text} </h1>` ); //Content-Type: text/html
});
})
.catch(err => {
res.status(400).send(err);
});
});
///////////////////////////////////////////////////////////POST ROUTE
///////////////////////////////////////////////////////////GET ROUTE
///action se produit en allant sur http://localhost:3000/todos
// app.get("/todos", (req, res) => {
// Todo.find()
// .then(data => {
// res.send({data}) //on le met dans un boj, pour se donner des options, facile d ajouter a un obj.
// //console.log(data[0].text); //test todo text
// })
// .catch(err => {
// res.status(400).send(err);
// });
// });
///en ajoutant authentification, on peut verifier par le creator qui est l utilisateur en ligne.
app.get("/todos", authentification, (req, res) => {
Todo.find({_creator: req.user._id})
.then(todo => {
//authentification s occupe de rejeter si y a pas de
res.send({todo}) //on le met dans un boj, pour se donner des options, facile d ajouter a un obj.
})
.catch(err => {
res.status(400).send(err);
});
});
///////////////////////////////////////////////////////////GET ROUTE
////////////////////GET req.params.id ROUTE
const {ObjectID} = require('mongodb'); //mongoNative
////http://localhost:3000/todos/599100ab170cdc199ba831c8
//routes
// app.get("/todos/:id", (req, res) => {
// const id = req.params.id;
//
// if (!ObjectID.isValid(id)) {
// return res.status(404).send();
// }
// //il met pas de else
// Todo.findById(id)
// .then(todo => {
// if (!todo) {
// res.status(404).send();
// }
// res.send({todo});
// //res.send({todo})
// //console.log(todo);
// })
// .catch(e => {
// res.status(400).send();
// //console.log(e); ca donne un message d err. de typeError
// });
//
// });
app.get("/todos/:id", authentification, (req, res) => {
const id = req.params.id;
if (!ObjectID.isValid(id)) {
return res.status(404).send();
}
//pour s assurer que c'est lui qui est loguer qui va chercher ses infos a lui
Todo.findOne({
_id: id,
_creator: req.user._id
})
.then(todo => {
if (!todo) {
res.status(404).send();
}
res.send({todo});
//res.send({todo})
//console.log(todo);
})
.catch(e => {
res.status(400).send();
//console.log(e); ca donne un message d err. de typeError
});
});
////////////////////GET req.params.id ROUTE
///////////////////////////////////// DELETE Route de app.delete ROUTE
// app.delete("/todos/:id", (req, res) => {
// const id = req.params.id;
//
// if (!ObjectID.isValid(id)) {
// return res.status(404).send();
// }
//
// Todo.findByIdAndRemove(id)
// .then(todo => {
// if (!todo) {
// res.status(404).send();
// }
// res.send({todo});
// })
// .catch(err => {
// res.status(400).send();
// });
// });
app.delete("/todos/:id", authentification, (req, res) => {
const id = req.params.id;
if (!ObjectID.isValid(id)) {
return res.status(404).send();
}
Todo.findOneAndRemove({
_id: id,
_creator: req.user._id
})
.then(todo => {
if (!todo) {
res.status(404).send();
}
res.send({todo});
})
.catch(err => {
res.status(400).send();
});
});
///////////////////////////////////// DELETE Route de app.delete ROUTE
///////////////////////////////////// UPDATE Route de app.patch ROUTE
//const _ = require('lodash');
// app.patch("/todos/:id", (req, res) => {
// const id = req.params.id;
// const body = _.pick(req.body, ["text", "completed"]); //pick aider a dire quel props est dispo a updater
// // ET les met directement sur body , donc body.test ///
// if (!ObjectID.isValid(id)) {
// return res.status(404).send();
// }
//
// if (_.isBoolean(body.completed) && body.completed) {
// body.completedAt = Date.now();
// } else {
// body.completed = false;
// body.completedAt = null;
// }
//
// Todo.findByIdAndUpdate(id, { $set: body }, { new: true })
// .then(todo => {
// if (!todo) {
// res.status(404).send();
// }
// res.send({ todo });
// })
// .catch(err => {
// res.status(400).send();
// });
// });
app.patch("/todos/:id", authentification, (req, res) => {
const id = req.params.id;
const body = _.pick(req.body, ["text", "completed"]); //pick aider a dire quel props est dispo a updater
// ET les met directement sur body , donc body.test ///
if (!ObjectID.isValid(id)) {
return res.status(404).send();
}
if (_.isBoolean(body.completed) && body.completed) {
body.completedAt = Date.now();
} else {
body.completed = false;
body.completedAt = null;
}
Todo.findOneAndUpdate({_id: id, _creator: req.user._id}, { $set: body }, { new: true })
.then(todo => {
if (!todo) {
res.status(404).send();
}
res.send({ todo });
})
.catch(err => {
res.status(400).send();
});
});
///////////////////////////////////// UPDATE Route de app.patch ROUTE
///////////////////////////////////////////////////////////POST USER ROUTE
//const _ = require('lodash'); //en haut
app.post("/users", (req, res) => {
let body = _.pick(req.body, ["email", "password"]); ///creer body.email ..
let user = new User(body);
user.save()
.then(() => {
return user.generateAuthToken();
})
.then((token) => {
res.header('x-auth', token).send(user); //ce qui retourne dans postman dans la boite response
})
.catch(err => {
res.status(400).send();
});
});
///////////////////////////////////////////////////////////POST USER ROUTE
//PRIVATE ROUTE EST UNE ROUTE QUI DEMANDE UN AUTHENTIFICATION
///////////////////////////////////////////////////////////PRIVATE ROUTE
//const { authentification } = require('./middleware/authentification'); //en haut
app.get('/users/moi', authentification, (req, res) => {
//authentification va faire le boulot, et ici on ne fait qu envoyer le user , comme avant
res.send(req.user)
});
///////////////////////////////////////////////////////////PRIVATE ROUTE
///////////////////////////////////////////////////////////LOGIN ROUTE
//findByCredentials()
app.post("/users/login", (req, res) => {
let body = _.pick(req.body, ["email", "password"]); ///creer body.email ..
let user = new User(body);
User.findByCredentials(body.email, body.password)
.then(user => {
return user.generateAuthToken()
.then((token) => {
res.header('x-auth', token).send(user); //ce qui retourne dans postman dans la boite response
});
})
.catch(err => {
res.status(400).send();
});
});
///////////////////////////////////////////////////////////LOGIN ROUTE
///////////////////////////////////////////////////////////DELOGUER ROUTE EN ENLEVANT LE TOKEN
// on va rendre ca private, avec authentification
app.delete("/users/moi/token", authentification, (req, res) => {
//authentification retourne le user en req,user et le token en req.token
//on va creer une methode instance (user pas User) dans User.js qui va faire ca...
req.user.removeToken(req.token)
.then(data => {
res.status(200).send();
})
.catch(err => {
res.status(400).send();
});
});
///////////////////////////////////////////////////////////DELOGUER ROUTE EN ENLEVANT LE TOKEN
///////////////////////////////////////////////////////////SERVEUR LISTEN
app.listen(port, () => {
console.log(`ca roule sur ${port}`);
});
///////////////////////////////////////////////////////////SERVEUR LISTEN
module.exports = { app };