-
Notifications
You must be signed in to change notification settings - Fork 0
/
notesMongoose.js
3260 lines (2417 loc) · 101 KB
/
notesMongoose.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
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
PART II ligne 800 GENRE...
*************************************************************************************************************************************************************MONGOOSE************************************************************ ****************************************************************************************************************
//connect :
VA AVEC LE FICHIER CONFIG.JSON POUR CACHER LES VARIABLES, MOT DE PASSE ET ADRESSE.
const mongoose = require('mongoose');
mongoose.Promise = global.Promise; //ES6 faut dire quel type de promise.
pas besoin de DB comme en bas,
// mongoose.connect('mongodb://localhost/TodoApp', {
mongoose.connect(process.env.MONGODB_URI, { //"mongodb://axe-z:0123456@ds155631.mlab.com:55631/todoapp"
useMongoClient: true,
})
.then(con => {
console.log('connection reussi...')
})
.catch(err => {
console.log(err)
});
module.exports = {mongoose}
IMPORTANT!!
QUAND ON FAIT UN MODEL, DISONT TODO, MONGOOSE VA LE CREER DANS MONGO, MAIS L APPELER : todos EN MINUSCULE AU PLURIELS !!!! USER DEVIENT users. DANS LES QUERIES ON PREND LE MODEL, TODO OU USER, MAIS CA AFFECTERA USERS ET TODOS EN MINUSCULE.
const Todo = mongoose.model('Todo', {
text: {
type: String
},
completed: {
type: Boolean
},
completedAt: {
type: Number
}
});
//.save() retourne une promesse
newTodo.save()
.then(data => {
console.log(data)
})
.catch(err => {
console.log(err)
});
///////////////////////////////////////////////////////////////////////////////////////////////
/// //////// comment fonctione mongoose : ////
///////////////////////////////////////////////////////////////////////////////////////////////
important!!!!!!
POUR TESTER LE COUR A MIS EN PLACE UN DROP POUR PAS CROWDER LA DB POUR RIEN ,
MONGOOSE FONCTIONNE AVEC UN MODELE CONSTRUCTEUR, ON FAIT UN SCHEMA, TSE STRING NUMBER BOOL=>
ENSUITE ON FAIT UN MODEL POUR CETTE SCHEMA,
ON ASSOSIE LE SCHEMA AU MODEL ET ON EXPORTE SI AILLEUR LE MODEL=>
il est possible aussi de juste faire un model et tout mettre dedans, en skipant la schema.
POUR UTILISER MONGOOSE ENSUITE, IL S AGIT DE FAIRE NEW NOMDUMODEL . ET AVEC CA ON TRAVAILLE.
///////////////////////////////////////////////////////////////////////////////////////////////
/// //////// comment fonctione mongoose : ////
///////////////////////////////////////////////////////////////////////////////////////////////
model sans schema :
const Todo = mongoose.model('Todo', {
text: {
type: String,
required: true,
minlenght: 3
},
completed: {
type: Boolean
},
completedAt: {
type: Number
}
});
ensuite ....
let newTodo = new Todo({
text: 'Marcher avec mongoose4',
completed: false,
completedAt: Date.now()
})
.save()
.then ....
MEME CHOSE EN FONCTION =
const createUser = (emailAd, nom) => {
return new User({
email: emailAd,
name: nom
}).save()
.then(data => {
console.log(data)
})
.catch(err => {
console.log(err)
});
}
createUser('ben@axe-z.com', 'Benoit2');
////////////////////////////////////POST AVEC POSTMAN (on a pas rien d autre en ce moemeny)
////////////////////postman test de l api.
const express = require('express');
const bodyParser = require('body-parser');
//importe le serveur mogoose qui connect a 27107 et nos 2 models sans schema.
const { mongoose, db } = require('./db/mongoose'); //pas besoin de DB vraiment
const { Todo } = require('./models/todo');
const { User, createUser } = require('./models/user');
const port = process.env.PORT || 3000;
//partir express
const app = express();
//middleware body parser
SANS BODYPARSER ON NE POURRA PAS LIRE REQ.BODY CORRECTEMENT. DONC ON DOIT L UTILISER.
app.use(bodyParser.json());
DANS POSTMAN POUR TESTER L API. HTTP://LOCALHOST:3000/TODOS FAIRE UN POST, et dans le body mettre json:
{
"text":"reponse viendra dans la console"
}
app.post('/todos', (req,res) => {
console.log(req.body); //{ text: 'reponse viendra dans la console' } revient das le terminal
});
app.listen(port, () => {
console.log(`ca roule sur ${port}`);
});
utiliser donc ceci et faire des post avec postman :
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);
res.send(data); //ce qui retourne dans postman dans la boite response
})
.catch(err => {
res.status(400).send(err);
});
});
utiliser donc ceci et faire des post avec postman et envoyer sur un site ! :
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: ${data.text} </h1>` ); //Test mongoose: ceci vient d ailleurs (postman)
});
})
.catch(err => {
res.status(400).send(err);
});
});
////////////des asti de test
const expect = require('expect');
const request = require('supertest');
const mongoose = require('mongoose');
const {app} = require('./../serveur');
const { Todo } = require('./../models/todo');
///tout deleter avant
beforeEach((done) => {
Todo.remove({}).then(() => done());
});
describe("POST /todos", () => {
it("should create a new todo", done => {
let text = "test todo text";
request(app)
.post("/todos")
.send({ text: text })
.expect(200) //status
.expect(res => {
expect(res.body.text).toBe(text); //la reponse qui revient
})
.end((err, res) => {
if (err) {
return done(err);
}
//ensuite on regarde dans la db si ca y est , find retourne tout ici
Todo.find().then(todos => {
expect(todos.length).toBe(1);
expect(todos[0].text).toBe(text);
done();
}).catch(err => {
return done(err);
});
});
});
});
///////////////////////////////////////////////////////////GET
GET
FIND RETOURNE TOUT SI ON NE MET PAS DE PARAM.
///action se produit en allant sur http://localhost:3000/todos
const { Todo } = require('./models/todo');
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);
});
});
//TEST DE GET
////POUR TEST DE GET, ON VEUT GARDER CA CLEAN DONC ON VA METTRE DU STOCK PAR DEFAUT
const todos = [
{
text: 'premier test',
completed: false
},
{
text: 'deuxieme test',
completed: false
},
];
beforeEach((done) => {
Todo.remove({}).then(() => { //efface tout
return Todo.insertMany(todos); //insert le todos et retourne une promise.
}).then(() => done());
});
it("test de GET", done => {
request(app)
.get("/todos")
.expect(200)
.expect(res => {
console.log(res.body.todos.length);
expect(res.body.todos.length).toBe(2);
})
.end(done());
});
///////////////////////////////////QUERIES
const { mongoose, db } = require('./db/mongoose');
//const {app} = require('./../serveur');
const { Todo } = require('./models/todo');
const id = '599100ab170cdc199ba831c8';
LE TRUC IMPORTANT DE COMPRENDRE ICI EST QUE MEM SI ON A PAS LE BON ID, PAR EXEMPLE, MONGOOSE NE RETOURENRA PAS UNE ERREUR MAIS NULL, DONC LA PROMISE VA ETRE RESOLVER A NULL, DONC IL FAUT METTRE UN if(!data) , SI ON VEUT TRAITER LE TROUBLE, LE CATCH NE SERA JAMAIS APPELÉ=> CECI DIT MIEUX VAUT LE METTRE , IL AURA UNE ERREUR SI JAMAIS LE ID N A ACUN CRISIT DE BON SENS , GENRE 'LAPIN', IL NE SERA PAS VALID, ET CREERA UN PROBLEME.
////find, , retourne un array de doc,
Todo.find({
completed: false //pas besoin de new ObjectId
})
.limit(3)
.then(todos => {
console.log(todos)
})
//findOne ici retourne qu une seul truc, obj, pas d array
Todo.findOne({
_id: id
})
.then(todo => {
if(!todo){
console.log('rien de retouné')
}
console.log(todo)
});
///best pour un id.
Todo.findById(id)
.then(todo => {
if(!todo){
console.log('rien de retouné')
}
console.log(todo)
});
voir les docs
http://mongoosejs.com/docs/queries.html
ET
https://docs.mongodb.com/manual/tutorial/query-documents/
EXEMPLE :
Person.
find({
occupation: /host/,
'name.last': 'Ghost',
age: { $gt: 17, $lt: 66 },
likes: { $in: ['vaporizing', 'talking'] }
}).
limit(10).
sort({ occupation: -1 }).
select({ name: 1, occupation: 1 }).
exec(callback);
IMPORTANT!!
QUAND ON FAIT UN MODEL, DISONT TODO, MONGOOSE VA LE CREER DANS MONGO, MAIS L APPELER : todos EN MINUSCULE AU PLURIELS !!!! USER DEVIENT users. DANS LES QUERIES ON PREND LE MODEL, TODO OU USER, MAIS CA AFFECTERA USERS ET TODOS EN MINUSCULE.
///AVEC USER
const { User } = require('./models/user');
const idUser = '598fa32586a4460dd493cf64';
if(ObjectID.isValid(idUser)){
console.log('oui User!!!')
User.findById(idUser)
.then(user => {
if(!user){
console.log('rien de retouné')
}
console.log(user)
});
}
////////////////////GET req.params.id et mongoDB
app.get("/todos/:id", (req, res) => {
res.send(req.params) ///http://localhost:3000/todos/1562 ==== {"id":"1562"}
});
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("<h1>oups</h1>");
}
res.send(`<h1>Bravo: ${todo.text}, id: ${todo.id}</h1>`);
//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
******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************** le grand moment, connecter heroku a mlabs, et faire de la db a distance. ***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************
//////////////////////////////////////////MLABS/////ET HEROKU////////////////////////
DANS SON COUR IL CONFIGURE MLABS A PARTIR D HEROKU, MAIS CE N EST PLUS POSSIBLE, IL FAUT METTRE NOTRE CARTE DE CREDIT, MEME SI GRATUIT. PAS VRAIMENT DE BESOIN, SI ON A NOTRE MLABS D ACTIF, IL S AGIT JUSTE DE METTRE LE LIEN DANS LA CONFIG, C EST TOUT=>
MAIS DANS LE PACKAGE, ON DOIT DANS LE SCRIPT START DIRE A HEROKU QUOI FAIRE
ET QUEL ENGINE UTILISER :
"scripts": {
"start": "node serveur.js",
},
"engines": {
"node": "8.1.3" //notre version
},
///HEROKU VA ROULER DE MLABS.
POUR AJOUTER MLABS DANS NOTRE SERVEUR..
ON DOIT ALLER SUR MLABS ET CREER NOTRE TODOAPP , ET CREER UN USER : axe-z et mp 0123456
il va nous donner le link:
'mongodb://axe-z:0123456@ds155631.mlab.com:55631/todoapp'
heroku addons:create mongolab:sandbox ne fonctionne pas sans carte de credit.
/////////////////////////////////POUR CONNECTION:
MLABS DONC TERMINAL MONGOD A PAS BESOIN DE ROULER ICI :
DANS LE FICHIER DE CONNECTION
const mongoose = require('mongoose');
mongoose.Promise = global.Promise;
const db = mongoose.connect('mongodb://axe-z:0123456@ds155631.mlab.com:55631/todoapp', {
useMongoClient: true,
})
.then(con => {
console.log('connection reussi...')
})
.catch(err => {
console.log(err)
});
///////////////////////////////// LE SERVEUR A CES ROUTES,
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 => {
res.send(data) //ce qui retourne dans postman dans la boite response
app.get('/' , (req, res) => { // envoi a / le ti text.
res.send(` <h1>Test mongoose - postman ${data.text} </h1>` );
});
})
.catch(err => {
res.status(400).send(err);
});
});
///DANS POSTMAN
POST http://localhost:3000/todos
{
"text":"ceci vient dmlabs3",
"completed": false
}
///DANS COMPASS
COMME D HAB=>
///HEROKU apres avoir fait l app
git push heroku master
heroku open
https://radiant-eyrie-32601.herokuapp.com ensuite /todos va nous montrer ceux de MLABS ! GREAT
DONC HEROKU ROULE EXPRESS, ET MLABS MONGO.
// {"data":[{"_id":"599454c89037f52b8ba6f788","text":"ceci vient dmlabs2","completed":false,"completedAt":1502893256143,"__v":0},{"_id":"5994554d09f1552bb5931821","text":"ceci vient dmlabs3","completed":false,"completedAt":1502893389954,"__v":0}]}
DONC MAINTENANT DANS POSTMAN :
POST https://radiant-eyrie-32601.herokuapp.com/todos
envoie
{
"text":"ceci vient d heroku et de postman",
"completed": false
}
retourne 200, ok !
retour
{
"__v": 0,
"text": "ceci vient d heroku et de postman",
"completed": false,
"completedAt": 1502896483690,
"_id": "59946163bd968300111c3f84"
}
/////si maintenant on essais un GET
https://radiant-eyrie-32601.herokuapp.com/todos/5994554d09f1552bb5931821
//routes du serveur
app.get("/todos/:id", (req, res) => {
const id = req.params.id;
if (!ObjectID.isValid(id)) {
return res.status(404).send();
}
Todo.findById(id)
.then(todo => {
if (!todo) {
res.status(404).send();
}
res.send({todo}); // send renvois le todo
})
.catch(e => {
res.status(400).send();
});
});
retour 200 et le send renvois le todo
{
"todo": {
"_id": "5994554d09f1552bb5931821",
"text": "ceci vient dmlabs3",
"completed": false,
"completedAt": 1502893389954,
"__v": 0
}
}
******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************** le grand moment, connecter heroku a mlabs, et faire de la db a distance. ***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************
*********************** REMOVE comment deleter avec mongose
const { mongoose, db } = require('./db/mongoose'); //on connecte avec mlabs
const { Todo } = require('./models/todo');
///delete tout, si y a pas de param.
Todo.remove({}).then(res => {
console.log(res)
});
RETOURNE L INFO SUR COMBIEN A ETE DETRUIT.
//va retourner lui qui est parti
Todo.findOneAndRemove({_id: '599454c89037f52b8ba6f788'})
.then(todo => {
console.log(todo)
})
.catch(err => {
console.log(err)
});
//va retourner l item
//By ID
Todo.findByIdAndRemove('5994554d09f1552bb5931821')
.then(todo => {
console.log(todo)
})
.catch(err => {
console.log(err)
});
//retourne l item aussi
{ _id: 5994554d09f1552bb5931821,
text: 'ceci vient dmlabs3',
completed: false,
completedAt: 1502893389954,
__v: 0 }
DANS LE SERVEUR.JS MAINTENANT ON VA FAIRE UN ROUTE POUR DELETE BY ID.
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();
});
});
LANCE LE SERVEUR ON VA UTILISER LES ROUTES, SI JAMAIS ... ET DANS POSTMAN LANCE UN DELETE AVEC UN ID VALID COPIER DE LA DB. http://localhost:3000/todos/599460eb2ad0a72c9b8505ff
CELA DELETE AVEC UN STATUS DE 200 ET RETOURNE COMME PREVU CELUI QUI EST MOURU
{
"_id": "599460eb2ad0a72c9b8505ff",
"text": "ceci vient dmlabs last",
"completed": false,
"completedAt": 1502896363427,
"__v": 0
}
*********************** Update comment modifier une fiche avec mongose
on va s aider. dans serveur.js
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
if (!ObjectID.isValid(id)) {
return res.status(404).send();
}
if (._isBoolean(body.completed) && body.completed) {
body.completedAt = new Date().getTime();
} else {
body.completed = false;
body.completedAt = null;
}
// le id , ensuite $set ce qu on change , ensuite si on retourne ou pas le data.
Todo.findByIdAndUpdate(id, { $set: body }, { new: true })
.then(todo => {
if (!todo) {
res.status(404).send();
}
res.send({todo});
})
.catch(err => {
res.status(400).send();
});
});
ENSUITE DANS POSTMAN
patch https://radiant-eyrie-32601.herokuapp.com/todos/59947bf8026cb2001137a2f4
envoie
{
"text":"ceci vient de se faire updater (postman) ",
"completed": true
}
va retourner :
{
"todo": {
"_id": "59947bf8026cb2001137a2f4",
"text": "ceci vient de se faire updater (postman) ",
"completed": true,
"__v": 0,
"completedAt": 1502929294880
}
}
MEME CHOSE SI VENANT DU LOCALHOST, BIEN SUR.
*************************************TEST de update / patch*************************************
const expect = require('expect');
const request = require('supertest');
const mongoose = require('mongoose');
const {ObjectID} = require('mongodb');
const _ = require('lodash');
const {app} = require('./../serveur');
const { Todo } = require('./../models/todo');
ON VA SE FAIRE DU DATA PROPRE ET PREVISIBLE , DONC TORCHER CE QU ON A
const todos = [
{
_id: new ObjectID(),
text: 'premier test todo',
},
{
_id: new ObjectID(),
text: 'deuxieme test todo',
completed: true,
completedAt: Date.now()
},
];
beforeEach((done) => {
Todo.remove({}).then(() => { //efface tout
return Todo.insertMany(todos); //insert le todos et retourne une promise.
}).then(() => done());
});
BON ... ici on mimique ce qu on fait dans postman. y a pas de $set ... ou rien de complex.
describe("Test de Patch", () => {
it("Ca Devrait updater cibole", (done) => {
const hexId = todos[0]._id.toHexString();
const text = 'Ceci devrait etre le text updater';
request(app)
.patch(`/todos/${hexId}`)
.send({
text,
completed: true
})
.expect(200)
.expect((res) => {
expect(res.body.todo.text).toBe(text);
expect(res.body.todo.completed).toBe(true);
expect(res.body.todo.completedAt).toBeA('number');
})
.end(done);
});
it('Ca Devrait updater cibole2', (done) => {
const hexId2 = todos[1]._id.toHexString();
const text = 'Ceci devrait etre le text updater pour deuxieme test';
.patch(`/todos/${hexId}`)
.send({
text,
completed: false
})
.expect(200)
.expect((res) => {
expect(res.body.todo.text).toBe(todos[1].text);
expect(res.body.todo.completed).toBe(false);
expect(res.body.todo.completedAt).toNotExist();
})
.end(done);
});
});
************************************FIN *TEST de update / patch*************************************
************************************Separer la DB dev et test *************************************
par default sur Heroku,
environement process.env.NODE_ENV est a === 'production'
CE QU ON VEUT C EST QUE QUAND L ENV EST A DEV, CE SOIT MLBS, ET QUAND ON FAIT DES TEST, ON RESTE SUR LOCALHOST=>
IL Y AURA UN DB TODOAPP, SUR MLABS ET TODOAPPTEST, SUR NOTRE MACHINE.
Dans le package.json:
"test": "export NODE_ENV=test || SET \"NODE_ENV=test\" && mocha tests/*.test.js",
"test2watch": "nodemon --exec \"npm test\"",
DANS CONFIG.JS
///////ENV
DONC QUAND ON ROULE UN TEST, process.env.NODE_ENV SERA MIS EN TEST, SINON C EST DEV.
const env = process.env.NODE_ENV || 'development'; //soit test ou dev
console.log('env-*******', env)
if(env === 'development'){
process.env.PORT = 3000;
process.env.MONGODB_URI = 'mongodb://axe-z:0123456@ds155631.mlab.com:55631/todoapp';
} else if (env === 'test') {
process.env.PORT = 3000;
process.env.MONGODB_URI = 'mongodb://localhost:27017/TodoAppTest';
}
AINSI ON SCRAPP PAS LE DATA DANS NOS TEST.
ON A JUSTE A FAIRE UN TEST ET TODOAPPTEST VA SE CREER, J AI ROBOMONGO POUR LES TEST ET COMPASS POUR LA VRAIE DB.
************************************Separer la DB dev et test *************************************
************************************ USER et options avancees d autenthification *********************
ON VA FAIRE UN USER DE FACON SECURE AVEC ENCRYPTION :
http://mongoosejs.com/docs/validation.html
npm install validator --save
const validator = require('validator');
validator.isEmail('foo@bar.com'); //true ou false
npm install validator --save
User pimper
const mongoose = require('mongoose');
const validator = require('validator');
const User = mongoose.model('User', {
email: {
type: String,
required: true,
minlenght: 3,
trim: true, //va laisser au max 1 espace entre les mots. enleve le trop au debut et fin.
unique: true //,
validate: {
validator: validator.isEmail, ///va retourner vrai ou faux
message: '{VALUE} n\'est pas un email valide'
}
}, //email
password: {
type: String,
required: true,
minlenght: 6,
}, //password
tokens: [{
access: {
type: String,
required: true
},
token: {
type: String,
required: true
}
}]
});
Dans serveur ...
Post
*************************************
///////////////////////////////////////////////////////////POST USER *************************************
//const _ = require('lodash');
app.post("/users", (req, res) => {
const body = _.pick(req.body, ["email", "password"]); ///creer body.email ..
const user = new User({ //ou const user = new User(body) DIRECTEMENT, C EST QUE BODY EST JUSTEMENT CA..
email: body.email,
password: body.password
})
.save()
.then(user => {
//console.log(user); //dans le terminal.
res.send(user) //ce qui retourne dans postman dans la boite response
})
.catch(err => {
res.status(400).send(err);
});
});
test dans postman de POST http://localhost:3000/users:
{
"__v": 0,
"email": "benoit@axe-z.com",
"password": "0123456",
"_id": "5996307d87f37b437c03fd34",
"tokens": []
}
SI ON TENTE DE RENVOYER LE MEME EMAIL, LE MEME POST EN FAIT , UNE DEUXIEME FOIS. ON AURA UN MESSGE 400:
"errmsg": "E11000 duplicate key error index: todoapp.users.$email_1 dup key: { : \"benoit@axe-z.com\" }",
PUISQUE DANS LE MODEL ON A DIT QU ON LE VOULAIT UNIQUE... LA SECONDE FICHE NE SE FERA DONC PAS , PARFAIT !
EMAIL PAS BON RETOURNE :
"message": "benoit@axe m n'est pas un email valide",
LA SECONDE FICHE NE SE FERA DONC PAS , PARFAIT !
*************************************
///////////////////////////////////////////////////////////POST USER *************************************
************************************ Autentification USER TOKEN et HASHING *******************************
faire un token system, pour donner permissions.
hashing.js avec crypto.js
npm i crypto-js --save
const {SHA256} = require('crypto-js')
SHA256 est un de plusieurs mode de compression, en 256-bits.
simple hashing, donnera toujours la meme chose pour ce string:
let message = 'Je suis user num 3';
const hash = SHA256(message) //.toString(); lui met ca , mais ca change rien
console.log(`Message: ${message}`);
console.log(`Hash: ${hash}`);
DONNE :
Message: Je suis user num 3
Hash: 7f601a5c5a9072f3fb731c54dd7d940ce3006f788858c6962f052e5065ab9d81
SALT ET HASH
SOURCEFORGE, EUX HASH LEUR DOWNLOADS, ON PEUT VERIFIER SI ON A BIEN TELECHARGER LA BONNE CHOSE SI ON PREND LEUR NUMERO ET QU ON HASH LE DOWNLOAD, ILS SERA EXACTEMENT LE MEME NUMERO . ILS NE SALT PAS LE DOWNLOAD.
AVEC SALT ON AJOUTE UN PTIT BOUT RENDANT LE DECRYPTAGE IMPOSSIBLE. NON SEULEMENT IL DOIT AVOIR LE BON DATA MAIS AUSSI NOTRE MOTSECRET.
const data = {
id: 4
}
PUISQUE C EST UN OBJECT, ON DOIT LE STRINGIFIER.
const token = {
data,
hash: SHA256(JSON.stringify(data) + 'somesecret').toString()
}
const resultHash = SHA256(JSON.stringify(token.data) + 'somesecret').toString();
if(resultHash === token.hash) {
console.log('data a pas ete changé')
} else {
console.log('ne trust pas ca')
}
COMMENT CA MARCHE : !!!IMPORTANT
Donc un hacker qui a le id4 en veut a lui qui a le id5 et veut detruire le contenu :
il va prendre son token.data.id = 4 et le changer pour token.data.id = 5
ensuite il va tenter de hasher :
hash: SHA256(JSON.stringify(data)).toString()
il va essayer le hash , mais il ne fonctionnera pas, il lui manque le motsecret... qui modifie le hash.
CECI SE NOMME LE JSON WEB TOKEN (JWT) - C\'EST VIEUX COMME LE PAPE.
MAIS CECI N\'EST PAS VRAIMENT LA MANIERE AVEC CRYPTO, IL EXISTE UN LIBRAIRIE QUI FAIT TOUT CA POUR NOUS ( LE (JWT))
'
************************************ JSON WEB TOKEN
1 MILLION DE FOIS PLUS SIMPLE QU AVEC CRYPTO :
npm i jsonwebtoken --save
const jwt = require('jsonwebtoken');
EN GROS C EST SEULEMENT 2 FUNCTIONS, UNE QUI FAIT LE HASH ET SALT ET LAUTRE QUI LA VALIDE !
jwt.sign()
jwt.verify()
const data = {
id: 10
}