-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
850 lines (622 loc) · 20.3 KB
/
index.php
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
<?php
require '../Slim/Slim.php';
\Slim\Slim::registerAutoloader();
$app = new \Slim\Slim();
//GET Route -- Default screen
$app->get('/', function () {
$template = <<<EOT
<!DOCTYPE html>
<html><head></head>
<title>Phoenix Slim App</title>
<body><h1>Welcome to Phoenix Slim Web Service!</h1>
<p>Panjapol Chiemsombat 100547314</p>
</body></html>
EOT;
echo $template;
});
//COMMON FUNCTION
/**
* @return PDO
* When called this function returns a reference to a PDO database connection object.
* change the configuration to access the server
*/
function getConnection()
{
//Connection details
$dbhost = "127.0.0.1";
$dbUser = "root";
$dbpass = "root";
$dbName = "phoenix";
try {
$dbh = new PDO("mysql:host=$dbhost;dbname=$dbName", $dbUser, $dbpass);
$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
return $dbh;
} catch (PDOException $e) {
echo "Error PDO Exception";
}
}//End getConnection()
function getCustomerId($Auth)
{
try {
//get connection to server
$dbh = getConnection();
//SQL statement
$sql = "SELECT * FROM Customer WHERE Auth =:Auth";
//Assign value and execute SQL statement
$stmt = $dbh->prepare($sql);
$stmt->bindParam("Auth",$Auth);
$stmt->execute();
//fetch records into array of objects
$row = $stmt->fetch(PDO::FETCH_OBJ);
//close connections
$dbh = null;
//return customer id
return $row->Customer_Id;
} catch (PDOException $e) {
echo $e->getMessage();
}
}
function getIdFromAuth($auth){
try {
//get connection to server
$dbh = getConnection();
//SQL statement
$sql = "SELECT * FROM Customer WHERE Auth =:Auth";
//Assign value and execute SQL statement
$stmt = $dbh->prepare($sql);
$stmt->bindParam("Auth",$auth);
$stmt->execute();
//fetch records into array of objects
$row = $stmt->fetchALL(PDO::FETCH_OBJ);
//close connections
$dbh = null;
//return array of objects in JSON
return $row->Customer_Id;
// echo '{"Email":"'.$row->Email.'"}';
}catch(PDOException $e){
echo $e->getMessage();
}
}
$app->post('/customer/getAuth','getAuth');
function getAuth()
{
$request = \Slim\Slim::getInstance()->request();
//decode JSON
$q = json_decode($request->getBody());
$q->Auth = generateAuthKey($q->Email,$q->Password);
echo '{"Auth":"'.$q->Auth.'"}';
}
function generateAuthKey($Email,$Password){
$auth= md5(strtolower($Email).$Password);
return $auth;
}
//GET Single customer data from table
$app->get('/customer/:Auth','getCustomer');
function getCustomer($Auth)
{
try {
//get connection to server
$dbh = getConnection();
//SQL statement
$sql = "SELECT * FROM Customer WHERE Auth =:Auth";
//Assign value and execute SQL statement
$stmt = $dbh->prepare($sql);
$stmt->bindParam("Auth",$Auth);
$stmt->execute();
//fetch records into array of objects
$row = $stmt->fetch(PDO::FETCH_OBJ);
//close connections
$dbh = null;
//return array of objects in JSON
echo json_encode($row);
return $row->Customer_Id;
// echo '{"Email":"'.$row->Email.'"}';
} catch (PDOException $e) {
echo $e->getMessage();
}
}
//GET Methods
//GET all from tour table
//returns JSON
$app->get('/tour/all/', 'getAllTour');
/**
* @return JSON of tour table
* Get all tour in the database
*/
function getAllTour()
{
try {
//get connection to server
$dbh = getConnection();
//SQL statement
$sql = "SELECT * FROM Tour";
//Assign value and execute SQL statement
$stmt = $dbh->prepare($sql);
$stmt->execute();
//fetch records into array of objects
$row = $stmt->fetchALL(PDO::FETCH_OBJ);
//close connections
$dbh = null;
//return array of objects in JSON
echo json_encode($row);
// return json_encode($row);
} catch (PDOException $e) {
echo $e - getMessage();
}
}
//GET all available trip of a tour
//returns JSON
$app->get('/tour/open/:id','getAvailableTrip');
function getAvailableTrip($id){
try{
$dbh = getConnection();
$sql = "SELECT trip.*, (booking.Num_Adults + booking.Num_Concessions) as 'Seats_Taken'
FROM trip left outer join booking
on trip.Trip_Id = Booking.Trip_Id
where trip.Tour_No = :id
group by trip.Trip_Id;";
$stmt = $dbh->prepare($sql);
$stmt->bindParam("id",$id);
$stmt->execute();
$row = $stmt->fetchALL(PDO::FETCH_OBJ);
$dbh = null;
echo json_encode($row);
}catch (PDOException $e){
echo $e->getMessage();
}
}
//GET all specific details of the tour and its itinerary
//returns JSON
$app->get('/tour/:id/itinerary/','getItinerary');
function getItinerary($id){
try {
//get connection to server
$dbh = getConnection();
//SQL statement
$sql = "SELECT Itinerary.*,Tour.* FROM itinerary join Tour WHERE itinerary.tour_no = :id AND Tour.Tour_No = Itinerary.Tour_No";
//Assign value and execute SQL statement
$stmt = $dbh->prepare($sql);
$stmt->bindParam("id", $id);
$stmt->execute();
//fetch records into array of objects
$row = $stmt->fetchALL(PDO::FETCH_OBJ);
//close connections
$dbh = null;
//return array of objects in JSON
echo json_encode($row);
} catch (PDOException $e) {
echo $e->getMessage();
}
}
//accept cust_id
//returns JSON
$app->get('/booking/:id', 'getPendingBooking');
/**
* @return JSON of trip(s)
* @param $id
* Get all pending booking of a customer
* logic : any booking with 0 amount of deposit is considered pending booking
*/
function getPendingBooking($id)
{
try {
//get connection to server
$dbh = getConnection();
//SQL statement
$sql = "SELECT *
FROM Booking
WHERE Customer_Id = :id";
//Assign value and execute SQL statement
$stmt = $dbh->prepare($sql);
$stmt->bindParam("id", $id);
$stmt->execute();
//fetch records into array of objects
$row = $stmt->fetchALL(PDO::FETCH_OBJ);
//close connections
$dbh = null;
//return array of objects in JSON
echo json_encode($row);
} catch (PDOException $e) {
echo $e->getMessage();
}
}
//accept auth
//returns JSON
$app->get('/booking/getbookingfromauth/', 'getBookingFromAuth');
/**
* @return JSON of trip(s)
* @param $id
* Get all pending booking of a customer
* logic : any booking with 0 amount of deposit is considered pending booking
*/
function getBookingFromAuth()
{
$request = \Slim\Slim::getInstance()->request();
//decode header
$Auth = $request->headers->get('Auth');
//pass header value into customer method and have it returned a customer Id
$id = getCustomerId($Auth);
try {
//get connection to server
$dbh = getConnection();
//SQL statement
$sql = "SELECT booking.*,tour.Tour_No,tour.Tour_Name,trip.Departure_Date,
((booking.Num_Adults*trip.Standard_Amount) + (booking.Num_Concessions*trip.Concession_Amount)) AS Amount_Due
FROM booking join trip join tour
WHERE booking.Customer_Id = :id
AND booking.Trip_id = trip.Trip_id
AND trip.Tour_No = tour.Tour_No;";
//Assign value and execute SQL statement
$stmt = $dbh->prepare($sql);
$stmt->bindParam("id", $id);
$stmt->execute();
//fetch records into array of objects
$row = $stmt->fetchALL(PDO::FETCH_OBJ);
//close connections
$dbh = null;
//return array of objects in JSON
echo json_encode($row);
} catch (PDOException $e) {
echo $e->getMessage();
}
}
//get details of specific trip
$app->get('/trip/:id','getTripFromId');
function getTripFromId($id){
$request = \Slim\Slim::getInstance()->request();
//decode header
$Auth = $request->headers->get('Auth');
try {
//get connection to server
$dbh = getConnection();
//SQL statement
$sql = "SELECT trip.*,tour.Tour_Name , Sum(booking.Num_Adults + booking.Num_Concessions) as 'Seats_Taken'
FROM tour join trip left outer join booking
on trip.Trip_Id = booking.Trip_Id and trip.Tour_No = tour.Tour_No
where trip.Trip_Id = :id group by trip.Trip_Id";
//Assign value and execute SQL statement
$stmt = $dbh->prepare($sql);
$stmt->bindParam("id", $id);
$stmt->execute();
//fetch records into array of objects
$row = $stmt->fetch(PDO::FETCH_OBJ);
if($row->Seats_Taken == null)
{
$row->Seats_Taken = 0;
}
//close connections
$dbh = null;
//return array of objects in JSON
echo json_encode($row);
} catch (PDOException $e) {
echo $e->getMessage();
}
}
//POST Methods
//Register a customer into database
//Accepts JSON as a detail of created account
//returns status
$app->post('/customer/add/', 'addNewCustomer');
/**
* @return Status
* Get JSON of customer details and INSERT them into databases
*/
function addNewCustomer()
{
//Use slim to get HTTP POST contents
$request = \Slim\Slim::getInstance()->request();
//decode JSON
$q = json_decode($request->getBody());
$q->Auth = generateAuthKey($q->Email,$q->Password);
$sql = "INSERT INTO Customer SET
First_Name = :First_Name,
Middle_Initial = :Middle_Initial,
Last_Name = :Last_Name,
Street_No = :Street_No,
Street_Name = :Street_Name,
Suburb = :Suburb,
Postcode = :Postcode,
Email = :Email,
Phone = :Phone,
Auth = :Auth,
Enabled=0;";
try {
$dbh = getConnection();
$stmt = $dbh->prepare($sql);
//bind parameters to prevent sql injections
$stmt->bindParam('First_Name', $q->First_Name);
$stmt->bindParam('Middle_Initial', $q->Middle_Initial);
$stmt->bindParam('Last_Name', $q->Last_Name);
$stmt->bindParam('Street_No', $q->Street_No);
$stmt->bindParam('Street_Name', $q->Street_Name);
$stmt->bindParam('Suburb', $q->Suburb);
$stmt->bindParam('Postcode', $q->Postcode);
$stmt->bindParam('Email', $q->Email);
$stmt->bindParam('Phone', $q->Phone);
$stmt->bindParam('Auth', $q->Auth);
$stmt->execute();
$dbh = null;
echo '{"Auth":"'.$q->Auth.'"}';
} catch(PDOException $e){
echo $e->getMessage();
}
}//End function addNewCustomer()
//Add a new review entry into a trip
//Accepts JSON as a detail of the review
//returns status
$app->post('/customer/review/','addNewReview');
function addNewReview(){
//Use slim to get HTTP POST contents
$request = \Slim\Slim::getInstance()->request();
//decode header
$Auth = $request->headers->get('Auth');
//pass header value into customer method and have it returned a customer Id
$id = getCustomerId($Auth);
//decode JSON
$q = json_decode($request->getBody());
//PDO
$sql = "INSERT INTO Customer_Review SET
Trip_Id = :Trip_Id,
Customer_Id = :Customer_Id,
Rating = :Rating,
General_Feedback = :General_Feedback,
Likes = :Likes,
Dislikes = :Dislikes";
try {
$dbh = getConnection();
$stmt = $dbh->prepare($sql);
//bind parameters to prevent sql injections
$stmt->bindParam("Trip_Id", $q->Trip_Id);
$stmt->bindParam("Customer_Id",$id);
$stmt->bindParam("Rating",$q->Rating);
$stmt->bindParam("General_Feedback",$q->General_Feedback);
$stmt->bindParam("Likes",$q->Likes);
$stmt->bindParam("Dislikes",$q->Dislikes);
$stmt->execute();
$dbh = null;
} catch(PDOException $e){
echo $e->getMessage();
}
// echo json_encode($q);
echo '{"Status":"Completed"}';
return json_encode($q);
}//End function addNewReview()
$app->post('/customer/review/edit/:trip','editCustomerReview');
function editCustomerReview($trip){
//Use slim to get HTTP POST contents
$request = \Slim\Slim::getInstance()->request();
//decode header
$Auth = $request->headers->get('Auth');
//pass header value into customer method and have it returned a customer Id
$id = getCustomerId($Auth);
//decode JSON
$q = json_decode($request->getBody());
//PDO
$sql = "UPDATE customer_review SET
Rating = :Rating,
General_Feedback = :General_Feedback,
Likes = :Likes,
Dislikes = :Dislikes
WHERE Customer_Id = :id
AND Trip_Id = :trip";
try {
$dbh = getConnection();
$stmt = $dbh->prepare($sql);
//bind parameters to prevent sql injections
$stmt->bindParam('trip',$trip);
$stmt->bindParam('id',$id);
$stmt->bindParam('Rating',$q->Rating);
$stmt->bindParam('General_Feedback',$q->General_Feedback);
$stmt->bindParam('Likes',$q->Likes);
$stmt->bindParam('Dislikes',$q->Dislikes);
$stmt->execute();
$dbh = null;
echo '{"Status":"Completed"}';
} catch(PDOException $e){
echo $e->getMessage();
}
// return json_encode($q);
}
$app->get('/review/','getCustomerReview');
function getCustomerReview(){
$request = \Slim\Slim::getInstance()->request();
//decode header
$Auth = $request->headers->get('Auth');
//pass header value into customer method and have it returned a customer Id
$id = getCustomerId($Auth);
try {
//get connection to server
$dbh = getConnection();
//SQL statement
$sql = "SELECT * FROM Customer_Review WHERE Customer_Id =:id";
//Assign value and execute SQL statement
$stmt = $dbh->prepare($sql);
$stmt->bindParam("id",$id);
$stmt->execute();
//fetch records into array of objects
$row = $stmt->fetch(PDO::FETCH_OBJ);
//close connections
$dbh = null;
//return array of objects in JSON
echo '{"General_Feedback":"'.$row->General_Feedback.'",
"Likes":"'.$row->Likes.'",
"Dislikes":"'.$row->Dislikes.'"}';
// echo json_encode($row);
return $row->Customer_Id;
// echo '{"Email":"'.$row->Email.'"}';
} catch (PDOException $e) {
echo $e->getMessage();
}
}
$app->get('/review/all/','getAllReviewFromCustomer');
function getAllReviewFromCustomer(){
$request = \Slim\Slim::getInstance()->request();
//decode header
$Auth = $request->headers->get('Auth');
//pass header value into customer method and have it returned a customer Id
$id = getCustomerId($Auth);
try {
//get connection to server
$dbh = getConnection();
//SQL statement
$sql = "SELECT customer_review.*,trip.Departure_Date,tour.Tour_Name
FROM Customer_Review join trip join tour
WHERE customer_review.Customer_Id =:id
AND trip.Trip_Id = customer_review.Trip_Id
AND trip.Tour_No = tour.Tour_No";
//Assign value and execute SQL statement
$stmt = $dbh->prepare($sql);
$stmt->bindParam("id",$id);
$stmt->execute();
//fetch records into array of objects
$row = $stmt->fetchAll(PDO::FETCH_OBJ);
//close connections
$dbh = null;
//return array of objects in JSON
echo json_encode($row);
// echo '{"Email":"'.$row->Email.'"}';
} catch (PDOException $e) {
echo $e->getMessage();
}
}
//TODO Finish the function later
//Book a trip
//Accepts JSON as Trip Booking details
$app->post('/customer/book/','bookNewTrip');
function bookNewTrip() {
//Use slim to get HTTP POST contents
$request = \Slim\Slim::getInstance()->request();
//decode header
$Auth = $request->headers->get('Auth');
//pass header value into customer method and have it returned a customer Id
$id = getCustomerId($Auth);
//decode JSON
$q = json_decode($request->getBody());
$sql = "INSERT INTO Booking SET
Customer_Id = :Customer_Id,
Trip_Id = :Trip_Id,
Booking_Date= CURDATE(),
Num_Concessions = :Num_Concessions,
Num_Adults = :Num_Adults,
Deposit_Amount= 0";
try {
$dbh = getConnection();
$stmt = $dbh->prepare($sql);
//bind parameters to prevent sql injections
$stmt->bindParam("Customer_Id",$id);
$stmt->bindParam("Trip_Id", $q->Trip_Id);
$stmt->bindParam("Num_Concessions",$q->Num_Concessions);
$stmt->bindParam("Num_Adults",$q->Num_Adults);
$stmt->execute();
$dbh = null;
// echo json_encode($q);
// echo "Successfully booked!";
echo '{"Status":"Completed"}';
} catch(PDOException $e){
echo $e->getMessage();
}
}
//PUT Methods
//Edit Account Info
//accepts JSON as a detail of edited account
//returns a status
$app->post('/customer/edit/:Email', 'editAccountInfo');
/**
* @param $id
* @return Status
* GET JSON of customer details and UPDATE them according to their field
*
*/
function editAccountInfo($Email)
{
//Use slim to get HTTP POST contents
$request = \Slim\Slim::getInstance()->request();
//decode JSON
$q = json_decode($request->getBody());
//PDO
$sql = "UPDATE customer SET
First_Name=:First_Name,Middle_Initial=:Middle_Initial,Last_Name=:Last_Name,Street_No=:Street_No,Street_Name=:Street_Name,Suburb=:Suburb,Postcode=:Postcode,Phone=:Phone WHERE Email=:Email";
try {
$dbh = getConnection();
$stmt = $dbh->prepare($sql);
//bind parameters to prevent sql injections
$stmt->bindParam('Email',$Email);
$stmt->bindParam('First_Name', $q->First_Name);
$stmt->bindParam('Middle_Initial', $q->Middle_Initial);
$stmt->bindParam('Last_Name', $q->Last_Name);
$stmt->bindParam('Street_No', $q->Street_No);
$stmt->bindParam('Street_Name', $q->Street_Name);
$stmt->bindParam('Suburb', $q->Suburb);
$stmt->bindParam('Postcode', $q->Postcode);
$stmt->bindParam('Phone', $q->Phone);
$stmt->execute();
$dbh = null;
} catch(PDOException $e){
echo $e->getMessage();
}
echo json_encode($q);
}
//Change customer password
//Accepts JSON as old & new password
//Compare each of them to see if it fits the auth
//if correct generate new authkey with salt and send it back as a new authkey
$app->post('/customer/changepassword/','changePassword');
function changePassword(){
//generate auth = 'Customer_Id','Email','Password_new'
//update auth
//Use slim to get HTTP POST contents
$request = \Slim\Slim::getInstance()->request();
//decode JSON
$q = json_decode($request->getBody());
$newAuth = generateAuthKey($q->Email,$q->Password);
$q->Auth = $newAuth;
//PDO
$sql = "UPDATE Customer SET
Auth = :Auth
WHERE Email = :Email";
try {
$dbh = getConnection();
$stmt = $dbh->prepare($sql);
//bind parameters to prevent sql injections
$stmt->bindParam('Email',$q->Email);
$stmt->bindParam('Auth',$newAuth);
$stmt->execute();
$dbh = null;
} catch(PDOException $e){
echo $e->getMessage();
}
echo json_encode($q);
// echo "new auth ".$q->Customer_Id." Updated";
}
//DELETE Methods
//Cancel booking
//Accept trip booking no
//returns a status
$app->delete('/booking/delete/', 'deleteBooking');
/**
* JSON for (Trip_Booking_No)
* @return Status
* GET booking_no of a customer then DELETE them from the system
*/
function deleteBooking()
{
//Use slim to get HTTP POST contents
$request = \Slim\Slim::getInstance()->request();
//decode JSON
$q = json_decode($request->getBody());
//PDO
$sql = "DELETE FROM Booking WHERE Booking_No = :Booking_No";
try {
$dbh = getConnection();
$stmt = $dbh->prepare($sql);
//bind parameters to prevent sql injections
$stmt->bindParam("Booking_No",$q->Booking_No);
$stmt->execute();
$dbh = null;
} catch(PDOException $e){
echo $e->getMessage();
}
echo json_encode($q);
echo "Booking deleted";
}
$app->run(); //end app