forked from arthurmauvezin/devops-lab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
793 lines (661 loc) · 21.2 KB
/
index.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
//require is used to get the modules
const express = require ( 'express' );
const mysql = require ( 'mysql' );
const bodyParser = require ( 'body-parser' );
const app = express();
app.use(bodyParser.urlencoded({ extended: true }));
//we connect to the database zoo
const db = mysql.createConnection({
host: process.env.MYSQL_HOST,
port: process.env.MYSQL_PASSWORD,
user: process.env.MYSQL_USER,
password: process.env.MYSQL_PASSWORD,
database: process.env.MYSQL_DATABASE
});
//the Firewall
//pp.use, this function is executed for every route
app.use( function (req, res, next) {
if ( "key" in req.query) {
//we get the filters
let apikey = req.query[ "key" ];
//we create the query
let query = "SELECT * FROM users WHERE apikey='" + apikey + "'" ;
// console.log(JSON.stringify(query));
// console.log(JSON.stringify(req.query));
db.query(query, function (err, result, fields) {
if (err) throw err;
//if there is at least one user corresponding to this apikey, we go to next function
if (result.length > 0 ) {
next();
}
//if there is no user with this apikay, we throw a 403 http error and deny the access
else {
res.status(403);
res.send( "Access denied" );
}
});
//is there is no apikay at tall, we also deny the access
} else {
res.status(403);
res.send( "Access denied" );
}
});
//function used to create animal
app.post( '/animals' , function (req, res) {
//we get all the parameters from the 'body' in order to insert an new row
let name = req.body.name;
let breed = req.body.breed;
let food_per_day = req.body.food_per_day;
let birthday = req.body.birthday;
let entry_date = req.body.entry_date;
let id_cage = req.body.id_cage;
let query = "INSERT INTO animals (name, breed, food_per_day, birthday, entry_date, id_cage) ";
//we add the parameters to the query
query += "VALUES ('" + name + "', '" + breed + "', '" + food_per_day + "', '" + birthday + "', '" + entry_date + "', '" + id_cage + "')" ;
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send( JSON .stringify( "Success" ));
//console.log(JSON.stringify(query));
});
});
app.post( '/cages' , function (req, res) {
let name = req.body.name;
let description = req.body.description;
let area = req.body.area;
let query = "INSERT INTO cages (name, description, area) ";
query += "VALUES ('" + name + "', '" + description + "', '" + area + "')" ;
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send( JSON .stringify( "Success" ));
//console.log(JSON.stringify(query));
});
});
app.post( '/food' , function (req, res) {
let name = req.body.name;
let quantity = req.body.quantity;
let id_animal = req.body.id_animal;
let query = "INSERT INTO food (name, quantity, id_animal) ";
query += "VALUES ('" + name + "', '" + quantity + "', '" + id_animal + "')" ;
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send( JSON .stringify( "Success" ));
//console.log(JSON.stringify(query));
});
});
app.post( '/staff' , function (req, res) {
let firstname = req.body.firstname;
let lastname = req.body.lastname;
let wage = req.body.wage;
let query = "INSERT INTO staff (firstname, lastname, wage) ";
query += "VALUES ('" + firstname + "', '" + lastname + "', '" + wage + "')" ;
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send( JSON .stringify( "Success" ));
//console.log(JSON.stringify(query));
});
});
//function used to print all the animals
app.get( '/animals' , function (req, res) {
//we create the query
let query = "SELECT * FROM animals"
//if the user specifies the fiels he wants, we replace the tables SELECTED in the query
if ( "fields" in req.query) {
query = query.replace( "*" , req.query[ "fields" ]);
}
//if the user specifies the limit of results
if ( "limit" in req.query) {
query += " LIMIT " + req.query[ "limit" ];
if ( "offset" in req.query) {
query += " OFFSET " + req.query[ "offset" ];
}
}
//if the user asks for a special order
if ( "sort" in req.query) {
var sort = req.query[ "sort" ].split( "," );
query += " ORDER BY" ;
for ( var index in sort) {
var direction = sort[index].substr( 0 , 1 );
var field = sort[index].substr( 1 );
query += " " + field;
if (direction == "-" )
query += " DESC," ;
else
query += " ASC," ;
}
query = query.slice( 0 , -1 );
}
//the possible columns for this table
let columns = [ "id" , "name", "breed", "food_per_day", "birthday", "entry_date", "id_cage" ];
//we check all the paremeter in the req.query and add them to the query we make
for ( let index in columns) {
if (columns[index] in req.query) {
if (query.indexOf( "WHERE" ) < 0 ) {
query += " WHERE" ;
} else {
query += " AND" ;
}
query += " " + columns[index] + "='" +
req.query[columns[index]] + "'" ;
}
}
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send( JSON .stringify(result));
});
});
//function used to print one particular animal using its id number
app.get( '/animals/:id' , function (req, res) {
//we get the id directly from the route
let id = req.params.id;
let query = "SELECT * FROM animals WHERE id=" + id;
if ( "fields" in req.query) {
query = query.replace( "*" , req.query[ "fields" ]);
}
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send( JSON .stringify(result));
});
});
//function used to print the relationship between animals and cages
app.get( '/cages/:id/animals' , function (req, res) {
var id = req.params.id;
var query = "SELECT animals.* FROM animals INNER JOIN cages ON animals.id_cage = cages.id WHERE cages.id=" + id;
if ( "fields" in req.query) {
query = query.replace( "*" , req.query[ "fields" ]);
}
if ( "limit" in req.query) {
query += " LIMIT " + req.query[ "limit" ];
if ( "offset" in req.query) {
query += " OFFSET " + req.query[ "offset" ];
}
}
let columns = [ "id" , "name", "breed", "food_per_day", "birthday", "entry_date", "id_cage" ];
for ( let index in columns) {
if (columns[index] in req.query) {
if (query.indexOf( "WHERE" ) < 0 ) {
query += " WHERE" ;
} else {
query += " AND" ;
}
query += " " + columns[index] + "='" +
req.query[columns[index]] + "'" ;
}
}
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send( JSON .stringify(result));
});
});
app.get( '/animals/:id/cages' , function (req, res) {
var id = req.params.id;
var query = "SELECT cages.* FROM animals INNER JOIN cages ON animals.id_cage = cages.id WHERE animals.id=" + id;
if ( "fields" in req.query) {
query = query.replace( "*" , req.query[ "fields" ]);
}
if ( "limit" in req.query) {
query += " LIMIT " + req.query[ "limit" ];
if ( "offset" in req.query) {
query += " OFFSET " + req.query[ "offset" ];
}
}
let columns = [ "id" , "name", "description", "area"];
for ( let index in columns) {
if (columns[index] in req.query) {
if (query.indexOf( "WHERE" ) < 0 ) {
query += " WHERE" ;
} else {
query += " AND" ;
}
query += " " + columns[index] + "='" +
req.query[columns[index]] + "'" ;
}
}
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send( JSON .stringify(result));
});
});
app.get( '/animals/:id_animals/cages/:id_cages' , function (req, res) {
var id_animals = req.params.id_animals;
var id_cages = req.params.id_cages;
var query = "SELECT cages.* FROM animals INNER JOIN cages ON animals.id_cage = cages.id WHERE animals.id=" + id_animals + " AND cages.id=" + id_cages;
if ( "fields" in req.query) {
query = query.replace( "*" , req.query[ "fields" ]);
}
if ( "limit" in req.query) {
query += " LIMIT " + req.query[ "limit" ];
if ( "offset" in req.query) {
query += " OFFSET " + req.query[ "offset" ];
}
}
let columns = [ "id" , "name", "description", "area"];
for ( let index in columns) {
if (columns[index] in req.query) {
if (query.indexOf( "WHERE" ) < 0 ) {
query += " WHERE" ;
} else {
query += " AND" ;
}
query += " " + columns[index] + "='" +
req.query[columns[index]] + "'" ;
}
}
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send( JSON .stringify(result));
});
});
app.get( '/cages' , function (req, res) {
let query = "SELECT * FROM cages"
if ( "fields" in req.query) {
query = query.replace( "*" , req.query[ "fields" ]);
}
if ( "limit" in req.query) {
query += " LIMIT " + req.query[ "limit" ];
if ( "offset" in req.query) {
query += " OFFSET " + req.query[ "offset" ];
}
}
if ( "sort" in req.query) {
var sort = req.query[ "sort" ].split( "," );
query += " ORDER BY" ;
for ( var index in sort) {
var direction = sort[index].substr( 0 , 1 );
var field = sort[index].substr( 1 );
query += " " + field;
if (direction == "-" )
query += " DESC," ;
else
query += " ASC," ;
}
query = query.slice( 0 , -1 );
}
let columns = [ "id" , "name", "description", "area"];
for ( let index in columns) {
if (columns[index] in req.query) {
if (query.indexOf( "WHERE" ) < 0 ) {
query += " WHERE" ;
} else {
query += " AND" ;
}
query += " " + columns[index] + "='" +
req.query[columns[index]] + "'" ;
}
}
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send( JSON .stringify(result));
});
});
app.get( '/cages/:id' , function (req, res) {
let id = req.params.id;
let query = "SELECT * FROM cages WHERE id=" + id;
if ( "fields" in req.query) {
query = query.replace( "*" , req.query[ "fields" ]);
}
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send( JSON .stringify(result));
});
});
app.get( '/food' , function (req, res) {
let query = "SELECT * FROM food";
if ( "fields" in req.query) {
query = query.replace( "*" , req.query[ "fields" ]);
}
if ( "limit" in req.query) {
query += " LIMIT " + req.query[ "limit" ];
if ( "offset" in req.query) {
query += " OFFSET " + req.query[ "offset" ];
}
}
if ( "sort" in req.query) {
var sort = req.query[ "sort" ].split( "," );
query += " ORDER BY" ;
for ( var index in sort) {
var direction = sort[index].substr( 0 , 1 );
var field = sort[index].substr( 1 );
query += " " + field;
if (direction == "-" )
query += " DESC," ;
else
query += " ASC," ;
}
query = query.slice( 0 , -1 );
}
let columns = [ "id" , "name", "quantity", "id_animal"];
for ( let index in columns) {
if (columns[index] in req.query) {
if (query.indexOf( "WHERE" ) < 0 ) {
query += " WHERE" ;
} else {
query += " AND" ;
}
query += " " + columns[index] + "='" +
req.query[columns[index]] + "'" ;
}
}
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send( JSON .stringify(result));
});
});
app.get( '/food/:id' , function (req, res) {
let id = req.params.id;
let query = "SELECT * FROM food WHERE id=" + id;
if ( "fields" in req.query) {
query = query.replace( "*" , req.query[ "fields" ]);
}
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send( JSON .stringify(result));
});
});
app.get( '/staff' , function (req, res) {
let query = "SELECT * FROM staff"
if ( "fields" in req.query) {
query = query.replace( "*" , req.query[ "fields" ]);
}
if ( "limit" in req.query) {
query += " LIMIT " + req.query[ "limit" ];
if ( "offset" in req.query) {
query += " OFFSET " + req.query[ "offset" ];
}
}
if ( "sort" in req.query) {
var sort = req.query[ "sort" ].split( "," );
query += " ORDER BY" ;
for ( var index in sort) {
var direction = sort[index].substr( 0 , 1 );
var field = sort[index].substr( 1 );
query += " " + field;
if (direction == "-" )
query += " DESC," ;
else
query += " ASC," ;
}
query = query.slice( 0 , -1 );
}
let columns = [ "id" , "firstname", "lastname", "wage"];
for ( let index in columns) {
if (columns[index] in req.query) {
if (query.indexOf( "WHERE" ) < 0 ) {
query += " WHERE" ;
} else {
query += " AND" ;
}
query += " " + columns[index] + "='" +
req.query[columns[index]] + "'" ;
}
}
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send( JSON .stringify(result));
});
});
app.get( '/food/:id/animals' , function (req, res) {
let id = req.params.id;
let query = "SELECT animals.* FROM animals INNER JOIN food ON animals.id = food.id_animal WHERE food.id=" + id;
if ( "fields" in req.query) {
query = query.replace( "*" , req.query[ "fields" ]);
}
if ( "limit" in req.query) {
query += " LIMIT " + req.query[ "limit" ];
if ( "offset" in req.query) {
query += " OFFSET " + req.query[ "offset" ];
}
}
let columns = [ "id" , "name", "breed", "food_per_day", "birthday", "entry_date", "id_cage" ];
for ( let index in columns) {
if (columns[index] in req.query) {
if (query.indexOf( "WHERE" ) < 0 ) {
query += " WHERE" ;
} else {
query += " AND" ;
}
query += " " + columns[index] + "='" +
req.query[columns[index]] + "'" ;
}
}
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send( JSON .stringify(result));
});
});
app.get( '/food/:id_food/animals/:id_animal' , function (req, res) {
let id_animal = req.params.id_animal;
let id_food = req.params.id_food;
let query = "SELECT animals.* FROM animals INNER JOIN food ON animals.id = food.id_animal WHERE food.id=" + id_food + " AND animals.id = " + id_animal;
if ( "fields" in req.query) {
query = query.replace( "*" , req.query[ "fields" ]);
}
if ( "limit" in req.query) {
query += " LIMIT " + req.query[ "limit" ];
if ( "offset" in req.query) {
query += " OFFSET " + req.query[ "offset" ];
}
}
let columns = [ "id" , "name", "breed", "food_per_day", "birthday", "entry_date", "id_cage" ];
for ( let index in columns) {
if (columns[index] in req.query) {
if (query.indexOf( "WHERE" ) < 0 ) {
query += " WHERE" ;
} else {
query += " AND" ;
}
query += " " + columns[index] + "='" +
req.query[columns[index]] + "'" ;
}
}
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send( JSON .stringify(result));
});
});
app.get( '/animals/:id/food' , function (req, res) {
let id = req.params.id;
let query = "SELECT food.* FROM animals INNER JOIN food ON animals.id = food.id_animal WHERE animals.id=" + id;
if ( "fields" in req.query) {
query = query.replace( "*" , req.query[ "fields" ]);
}
if ( "limit" in req.query) {
query += " LIMIT " + req.query[ "limit" ];
if ( "offset" in req.query) {
query += " OFFSET " + req.query[ "offset" ];
}
}
let columns = [ "id" , "name", "quantity", "id_animal"];
for ( let index in columns) {
if (columns[index] in req.query) {
if (query.indexOf( "WHERE" ) < 0 ) {
query += " WHERE" ;
} else {
query += " AND" ;
}
query += " " + columns[index] + "='" +
req.query[columns[index]] + "'" ;
}
}
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send( JSON .stringify(result));
});
});
app.get( '/staff/:id' , function (req, res) {
let id = req.params.id;
let query = "SELECT * FROM staff WHERE id=" + id;
if ( "fields" in req.query) {
query = query.replace( "*" , req.query[ "fields" ]);
}
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send( JSON .stringify(result));
});
});
//function used to update one particular animal using its id number as a parameter
app.put( '/animals/:id' , function (req, res) {
let id = req.params.id;
let index = 0;
let query = "UPDATE animals SET ";
//we update only the elements passed in the body
for(let element in req.body){
if(element !== undefined && req.body[element] !== undefined){
if(index === 0){
index++;
}else{
query += ", ";
}
query += element + " = '" + req.body[element] + "'";
}
}
query += " WHERE id = " + id;
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send( JSON .stringify( "Success" ));
//console.log(JSON.stringify(query));
});
});
app.put( '/cages/:id' , function (req, res) {
let id = req.params.id;
let index = 0;
let query = "UPDATE cages SET ";
for(let element in req.body){
if(element !== undefined && req.body[element] !== undefined){
if(index === 0){
index++;
}else{
query += ", ";
}
query += element + " = '" + req.body[element] + "'";
}
}
query += " WHERE id = " + id;
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send( JSON .stringify( "Success" ));
//console.log(JSON.stringify(query));
});
});
app.put( '/food/:id' , function (req, res) {
let id = req.params.id;
let index = 0;
let query = "UPDATE food SET ";
for(let element in req.body){
if(element !== undefined && req.body[element] !== undefined){
if(index === 0){
index++;
}else{
query += ", ";
}
query += element + " = '" + req.body[element] + "'";
}
}
query += " WHERE id = " + id;
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send( JSON .stringify( "Success" ));
//console.log(JSON.stringify(query));
});
});
app.put( '/staff/:id' , function (req, res) {
let id = req.params.id;
let index = 0;
let query = "UPDATE staff SET ";
for(let element in req.body){
if(element !== undefined && req.body[element] !== undefined){
if(index === 0){
index++;
}else{
query += ", ";
}
query += element + " = '" + req.body[element] + "'";
}
}
query += " WHERE id = " + id;
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send( JSON .stringify( "Success" ));
});
});
//function used to delete one particular animal using its id number as a parameter
app.delete( '/animals/:id' , function (req, res) {
let id = req.params.id;
let query = "DELETE FROM animals WHERE id=" + id;
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send(JSON .stringify( "Success" ));
//console.log(JSON.stringify(query));
});
});
//function used to delete ever animal of the table animals
app.delete( '/animals' , function (req, res) {
let query = "DELETE FROM animals";
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send(JSON .stringify( "Success" ));
//console.log(JSON.stringify(query));
});
});
app.delete( '/cages/:id' , function (req, res) {
let id = req.params.id;
let query = "DELETE FROM cages WHERE id=" + id;
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send(JSON .stringify( "Success" ));
//console.log(JSON.stringify(query));
});
});
app.delete( '/cages' , function (req, res) {
let query = "DELETE FROM cages";
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send(JSON .stringify( "Success" ));
//console.log(JSON.stringify(query));
});
});
app.delete( '/food/:id' , function (req, res) {
let id = req.params.id;
let query = "DELETE FROM food WHERE id=" + id;
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send(JSON .stringify( "Success" ));
//console.log(JSON.stringify(query));
});
});
app.delete( '/food' , function (req, res) {
let query = "DELETE FROM food";
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send(JSON .stringify( "Success" ));
});
});
app.delete( '/staff/:id' , function (req, res) {
let id = req.params.id;
let query = "DELETE FROM staff WHERE id=" + id;
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send(JSON .stringify( "Success" ));
//console.log(JSON.stringify(query));
});
});
app.delete( '/staff' , function (req, res) {
let query = "DELETE FROM staff";
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send(JSON .stringify( "Success" ));
//console.log(JSON.stringify(query));
});
});
//function used to print days left of food for every animal
app.get( '/food-stats' , function (req, res) {
let id = req.params.id;
let query = "SELECT a.id, if(f.quantity is null or a.food_per_day = 0, 0, (f.quantity / a.food_per_day)) as days_left FROM food as f right join animals as a on a.id = f.id_animal";
db.query(query, function (err, result, fields) {
if (err) throw err;
res.send( JSON .stringify(result));
//console.log(JSON.stringify(query));
});
});
app.listen( 3000 , function () {
console .log( 'Example app listening on port 3000!' );
});