-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.php
528 lines (471 loc) · 14.1 KB
/
functions.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
<?php
//Define bus capacity
$buscapacity = 4;
///////////////////////////////////
//////// SANITIZE STRING //////////
///////////////////////////////////
function sanitizeString($string)
{
$conn = dbConnect();
$string = strip_tags($string); /*return a string with all NULL bytes, HTML and PHP tags stripped from the string*/
$string = htmlentities($string); /*all characters which have HTML character entity equivalents are translated into these entities.*/
$string = stripslashes($string); /*un-quotes a quoted string*/
return mysqli_real_escape_string($conn, $string); /*create a legal SQL string that you can use in an SQL statement*/
}
?>
<?php
///////////////////////////////////
//////CONNECT TO DATABASE /////////
///////////////////////////////////
function dbConnect() {
$conn = mysqli_connect("localhost", "root", "", "shuttle_database");
if(!$conn){
die('Errore nella connessione (' . mysqli_connect_errno() . '): ' . mysqli_connect_error());
}
if (!mysqli_set_charset($conn, "utf8")){
die('Errore nel caricamento del set di caratteri utf8: ' . mysqli_error($conn));
}
return $conn;
}
?>
<?php
///////////////////////////////////
////// CHECK IF VALID USER ////////
///////////////////////////////////
function validUser($user, $password) {
$conn = dbConnect();
$sql = "SELECT password
FROM members
WHERE user = '". $user ."'";
$ris = mysqli_query($conn, $sql);
if(!$ris){
die("Query non riuscita (" . mysqli_errno($conn) . "): " . mysqli_error($conn));
}
$rownum = mysqli_num_rows($ris);
if($rownum==0){
//no user with that username
mysqli_free_result($ris);
mysqli_close($conn);
return false;
}
$row = mysqli_fetch_array($ris, MYSQLI_NUM);
if($password == $row[0]){
//user inserted correct password
mysqli_free_result($ris);
mysqli_close($conn);
return true;
}else{
//user has inserted not correct password
mysqli_free_result($ris);
mysqli_close($conn);
return false;
}
}
?>
<?php
///////////////////////////////////
//////// FILTER EMAIL /////////////
///////////////////////////////////
function checkUsername($username){
if (!filter_var($username, FILTER_VALIDATE_EMAIL)) {
return false;
}
return true;
}
?>
<?php
///////////////////////////////////
//////// FILTER PASSWORD //////////
///////////////////////////////////
function checkPassword($pass){
if( preg_match( '~[a-z]~', $pass) &&
(preg_match( '~[A-Z]~', $pass) || preg_match( '~\d~', $pass) ) &&
(strlen($pass) > 1)){
return true;
} else {
return false;
}
}
?>
<?php
/////////////////////////////////////
//CHECK IF USER ALREADY REGISTERED //
/////////////////////////////////////
function alreadyRegistered($conn, $user){
$upper = strtoupper($user);
$lower = strtolower($user);
$sqlupper = "SELECT * FROM members WHERE user = '". $upper ."'";
$sqllower = "SELECT * FROM members WHERE user = '". $lower ."'";
$resupper = mysqli_query($conn, $sqlupper);
$reslower = mysqli_query($conn, $sqllower);
if(!$resupper || !$reslower){
throw new Exception("Query non riuscita (" . mysqli_errno($conn) . "): " . mysqli_error($conn));
}
$rownumupper = mysqli_num_rows($resupper);
$rownumlower = mysqli_num_rows($reslower);
if($rownumupper==0 && $rownumlower==0){
//user is not in the database
return false;
}else{
//user is in the database
return true;
}
}
?>
<?php
///////////////////////////////////
//////// RETURN ITINERARY//////////
///////////////////////////////////
function returnItinerary(){
$conn = dbConnect();
$sql = "SELECT *
FROM itinerary
ORDER BY source";
$ris = mysqli_query($conn, $sql);
if(!$ris){
die("Query non riuscita (" . mysqli_errno($conn) . "): " . mysqli_error($conn));
}
mysqli_close($conn);
return $ris;
}
?>
<?php
///////////////////////////////////
//////// RETURN ROUTES/////////////
///////////////////////////////////
function returnRoutes(){
$conn = dbConnect();
$sql = "SELECT *
FROM routes
ORDER BY route";
$ris = mysqli_query($conn, $sql);
if(!$ris){
die("Query non riuscita (" . mysqli_errno($conn) . "): " . mysqli_error($conn));
}
mysqli_close($conn);
return $ris;
}
?>
<?php
/////////////////////////////////////
/// CHECK IF LOGIN SESSION > 2MIN ///
/////////////////////////////////////
function isLoginSessionExpired() {
$login_session_duration = 120;
$current_time = time();
if(isset($_SESSION['logtime'])){
if(((time() - $_SESSION['logtime']) > $login_session_duration)){
unset($_SESSION['username']);
unset($_SESSION['logtime']);
return true;
}
}
return false;
}
?>
<?php
/////////////////////////////////////
///CHECK IF USER HAS A RESERVATION///
/////////////////////////////////////
function hasBooked($username){
$conn = dbConnect();
$sql = "SELECT booked
FROM members
WHERE user = '". $username ."'";
$ris = mysqli_query($conn, $sql);
if(!$ris){
die("Query non riuscita (" . mysqli_errno($conn) . "): " . mysqli_error($conn));
}
$row = mysqli_fetch_array($ris, MYSQLI_NUM);
if($row[0]==0){
//user has not booked
mysqli_free_result($ris);
mysqli_close($conn);
return false;
}else{
//user has booked
mysqli_free_result($ris);
mysqli_close($conn);
return true;
}
}
?>
<?php
///////////////////////////////////
///RETURN ITINERARY WITH PEOPLE ///
///////////////////////////////////
function returnItineraryPeople(){
$conn = dbConnect();
$sql1 = "SELECT booking.user, itinerary.source, itinerary.destination, itinerary.passengers , booking.numpeople
FROM itinerary
LEFT JOIN booking
ON booking.source = itinerary.source AND booking.destination = itinerary.destination
ORDER BY itinerary.source
";
$ris = mysqli_query($conn, $sql1);
if(!$ris){
die("Query non riuscita (" . mysqli_errno($conn) . "): " . mysqli_error($conn));
}
mysqli_close($conn);
return $ris;
}
?>
<?php
/////////////////////////////////
///// RETURN TRIP OF USER ///////
/////////////////////////////////
function returnUserTrip($user){
$conn = dbConnect();
$sql = "SELECT source, destination
FROM members
WHERE user = '". $user ."'";
$ris = mysqli_query($conn, $sql);
if(!$ris){
die("Query non riuscita (" . mysqli_errno($conn) . "): " . mysqli_error($conn));
}
mysqli_close($conn);
return $ris;
}
?>
<?php
////////////////////////////////////
///CHECK IF A ROUTE ALREADY EXIST //
////////////////////////////////////
function isInDatabase($conn, $str){
$sql = "SELECT route FROM routes";
$res = mysqli_query($conn, $sql);
if(!$res){
throw new Exception("Query non riuscita (" . mysqli_errno($conn) . "): " . mysqli_error($conn));
}
$row = mysqli_fetch_array($res);
while($row!=NULL){
if($str==mysqli_real_escape_string($conn, $row[0])){
mysqli_free_result($res);
return true;
}
$row = mysqli_fetch_array($res);
}
mysqli_free_result($res);
return false;
}
?>
<?php
////////////////////////////////////////////
///GET # OF BOOKED PASSENGER FOR THE USER //
////////////////////////////////////////////
function getPassengerNumber($conn, $user){
$sql = "SELECT numpeople
FROM booking
WHERE user = '". $user ."'
LIMIT 1";
$res = mysqli_query($conn, $sql);
if(!$res){
throw new Exception("Query non riuscita (" . mysqli_errno($conn) . "): " . mysqli_error($conn));
}
$row = mysqli_fetch_array($res, MYSQLI_NUM);
mysqli_free_result($res);
return $row[0];
}
?>
<?php
////////////////////////////////////
/////REMOVE BOOKING OF A USER///////
///FROM BOOKING AND MEMBERS TABLE///
////////////////////////////////////
function removeBooking($conn, $user){
$sql = "DELETE
FROM booking
WHERE user = '". $user ."'";
$res = mysqli_query($conn, $sql);
if(!$res){
return false;
}
$sql = "UPDATE members
SET booked = 0, source = '', destination = ''
WHERE user = '". $user ."'";
$res = mysqli_query($conn, $sql);
if(!$res){
mysqli_free_result($res);
return false;
}
mysqli_free_result($res);
return true;
}
?>
<?php
////////////////////////////////////
////////DELETE ROUTES TABLE/////////
////////////////////////////////////
function deleteRoutes($conn){
//this function is called when its remained only one route in the db
$sql = "DELETE
FROM routes
WHERE 1";
$res = mysqli_query($conn, $sql);
if(!$res){
throw new Exception("Rebuilt of routes 1 failed");
}
mysqli_free_result($res);
}
?>
<?php
///////////////////////////////////////
//////////REBUILT ITINERARY////////////
///////////////////////////////////////
function rebuiltDatabase($conn, $dep, $arr){
$sql = "SELECT source
FROM members
WHERE source<>'"."'
ORDER BY source";
$res = mysqli_query($conn, $sql);
if(!$res){
throw new Exception("select from memebers for rebuilt failed");
}
$rownum = mysqli_num_rows($res);
if($rownum==0){
//no booking, delete the remaining route
deleteRoutes($conn);
}else{
//select from members table all the route
//select from routes table all the route
//do the difference and we obtain the route to be deleted
//update booking and itinerary by deleting the no more useful route
$row=mysqli_fetch_array($res, MYSQLI_NUM);
$string1 ="";
while($row!=NULL){
$string1 = $string1 . " " . mysqli_real_escape_string($conn, $row[0]);
$row=mysqli_fetch_array($res, MYSQLI_NUM);
}
$sql = "SELECT destination
FROM members
WHERE destination<>'"."'
ORDER BY destination";
$res = mysqli_query($conn, $sql);
if(!$res){
throw new Exception("Rebuilt of routes 2 failed");
}
$row=mysqli_fetch_array($res, MYSQLI_NUM);
$string2 ="";
while($row!=NULL){
$string2 = $string2 . " " . mysqli_real_escape_string($conn, $row[0]);
$row=mysqli_fetch_array($res, MYSQLI_NUM);
}
$array1 = explode(" ", $string1);
$array2 = explode(" ", $string2);
$array = array_merge($array1, $array2);
//inside array i have all the routes taken from members table
$array = array_unique($array, SORT_REGULAR);
$sql = "SELECT route
FROM routes
ORDER BY route";
$res = mysqli_query($conn, $sql);
if(!$res){
throw new Exception("Rebuilt of routes 2 failed");
}
$row=mysqli_fetch_array($res, MYSQLI_NUM);
$string ="";
while($row!=NULL){
$string = $string . " " . mysqli_real_escape_string($conn,$row[0]);
$row=mysqli_fetch_array($res, MYSQLI_NUM);
}
//inside array1 i have all the route taken from routes table
$array1 = explode(" ", $string);
//do the diff
$diff = array_diff($array1, $array);
if(count($diff)>0){
//if there are a no mor euseful route do this
foreach ($diff as $value) {
//take the station that is before and after the no more useful route ($value) and do substitution into itinerary and booking table
$key = array_search($value, $array1);
$previouskey = intval($key)-1;
$nextkey = intval($key)+1;
$previous = $array1[$previouskey];
$next = $array1[$nextkey];
$value = $value;
//search all the booking that have $value as destination and substitute this with $next
//search all the booking that have $value as source substitute this with $previous
$sql = "UPDATE booking
SET destination = '" . $next . "'
WHERE destination = '". $value ."'";
$res = mysqli_query($conn, $sql);
if(!$res){
throw new Exception("Failed first update booking rebuilting database");
}
$sql = "UPDATE booking
SET source = '" . $previous . "'
WHERE source = '". $value ."'";
$res = mysqli_query($conn, $sql);
if(!$res){
throw new Exception("Failed second update booking rebuilting database");
}
$sql = "UPDATE itinerary
SET source = '" . $previous . "'
WHERE source = '". $value ."'";
$res = mysqli_query($conn, $sql);
if(!$res){
throw new Exception("Failed first update itinerary rebuilting database");
}
$sql = "UPDATE itinerary
SET destination = '" . $next . "'
WHERE destination = '". $value ."'";
$res = mysqli_query($conn, $sql);
if(!$res){
throw new Exception("Failed second update itinerary rebuilting database");
}
//delete diff from routes
$sql = "DELETE
FROM routes
WHERE route = '". $value ."'";
$res = mysqli_query($conn, $sql);
if(!$res){
throw new Exception("Failed delete from routes");
}
//delete duplicate booking
$sql = "SELECT COUNT(*)
FROM booking
GROUP BY user, source, destination
HAVING COUNT(*)>1";
$res = mysqli_query($conn, $sql);
if(!$res){
throw new Exception("Failed deleting duplicates 1 from booking");
}
$row=mysqli_fetch_array($res, MYSQLI_NUM);
$limit = intval($row[0]);
$limit = $limit - 1;
$sql = "SELECT user
FROM booking
GROUP BY user, source, destination
HAVING COUNT(*)>1";
$res = mysqli_query($conn, $sql);
if(!$res){
throw new Exception("Failed deleting duplicates 1 from booking");
}
$row=mysqli_fetch_array($res, MYSQLI_NUM);
while($row!=NULL){
$sql = "DELETE
FROM booking
WHERE source = '" . $previous . "'
AND destination = '" . $next . "'
AND user = '" . $row[0] . "'
LIMIT " . $limit . "";
$res1 = mysqli_query($conn, $sql);
if(!$res1){
throw new Exception("Failed deleting duplicates 2 from booking");
}
$row=mysqli_fetch_array($res, MYSQLI_NUM);
}
//deleting duplicates from itinerary
$sql = "DELETE
FROM itinerary
WHERE source = '" . $previous . "'
AND destination = '" . $next . "'
LIMIT 1";
$res = mysqli_query($conn, $sql);
if(!$res){
throw new Exception("Failed deleting duplicates 2 from itinerary");
}
}
}
}
}
?>