-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctionSet.php
299 lines (202 loc) · 9.51 KB
/
functionSet.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
<?php
//Delete one request in the queue by ID
function deleteQueueByID ($id, $operator, $db_database, $db_username, $db_password, $db_host) {
try {
$dsn = 'mysql:dbname='.$db_database.';host='.$db_host;
$pdo = new PDO($dsn,$db_username,$db_password);
$pdo->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION );
$stmt = $pdo->prepare("DELETE FROM Queue WHERE rID = :rID;");
$stmt->bindParam(':rID', $id);
$stmt->execute();
} catch (Exception $exception){
echo "<script type='text/javascript'> alert('Error queue deletion!') </script>";
if ($operator == 'student') {
echo "<meta http-equiv='Refresh' content='0;URL=student.php'>";
} else {
echo "<meta http-equiv='Refresh' content='0;URL=admin.php'>";
}
exit(0);
}
}
//Delete one request by querying the handling assistant
function deleteQueueByHandling_By ($handling_by, $operator, $db_database, $db_username, $db_password, $db_host) {
try {
$dsn = 'mysql:dbname='.$db_database.';host='.$db_host;
$pdo = new PDO($dsn,$db_username,$db_password);
$pdo->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION );
$stmt = $pdo->prepare("DELETE FROM Queue WHERE Handling_By = :handling_by;");
$stmt->bindParam(':handling_by', $handling_by);
$stmt->execute();
} catch (Exception $exception){
echo "<script type='text/javascript'> alert('Error queue deletion!') </script>";
if ($operator == 'student') {
echo "<meta http-equiv='Refresh' content='0;URL=student.php'>";
} else {
echo "<meta http-equiv='Refresh' content='0;URL=admin.php'>";
}
exit(0);
}
}
//Decrement all request IDs in queue
function decrementPosition($position, $operator, $db_database, $db_username, $db_password, $db_host) {
try {
$dsn = 'mysql:dbname='.$db_database.';host='.$db_host;
$pdo = new PDO($dsn,$db_username,$db_password);
$pdo->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION );
$stmt = $pdo->prepare("UPDATE Queue SET Position = Position - 1 WHERE Position > :position;");
$stmt->bindParam(':position', $position);
$stmt->execute();
} catch (Exception $exception){
echo "<script type='text/javascript'> alert('Error for position decrement!') </script>";
if ($operator == 'student') {
echo "<meta http-equiv='Refresh' content='0;URL=student.php'>";
} else {
echo "<meta http-equiv='Refresh' content='0;URL=admin.php'>";
}
exit(0);
}
}
//Finish one request by querying the handling assistant
function finishOneRequest ($id, $handled_by, $db_database, $db_username, $db_password, $db_host) {
$state = 'Finished';
try {
$dsn = 'mysql:dbname='.$db_database.';host='.$db_host;
$pdo = new PDO($dsn,$db_username,$db_password);
$pdo->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION );
$stmt = $pdo->prepare("UPDATE Requests SET Handled_By = :handled_by, Finished_Time = NOW(), State = :state WHERE ID = :id;");
$stmt->bindParam(':handled_by', $handled_by);
$stmt->bindParam(':state', $state);
$stmt->bindParam(':id', $id);
$stmt->execute();
} catch (Exception $exception){
echo "<script type='text/javascript'> alert('Error for request state change!') </script>";
echo "<meta http-equiv='Refresh' content='0;URL=admin.php'>";
exit(0);
}
}
//Check the lab is valid:
// 1.Is the current lab
// 2.Is the last lab within 15 minutes.
// 3.Is the next lab starting within 10 minutes.
function checkLabValidity ($code, $db_database, $db_username, $db_password, $db_host) {
date_default_timezone_set('Europe/London');
$dateAndTime = new DateTime('now');
$weekday = $dateAndTime->format('w');
$time = $dateAndTime->format("H:i:s");
//Query the current module code
try {
$dsn = 'mysql:dbname='.$db_database.';host='.$db_host;
$pdo = new PDO($dsn,$db_username,$db_password);
$pdo->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION );
$stmt = $pdo->prepare("SELECT * FROM Labs WHERE (:time BETWEEN Start_Time AND End_Time) AND Weekday = :weekday;");
$stmt->bindParam(':time', $time);
$stmt->bindParam(':weekday', $weekday);
$stmt->execute();
$rows = $stmt->fetchAll();
if (count($rows) > 1) {
echo "<script type='text/javascript'> alert('There are more than 1 labs in the room, please contact admin!') </script>";
echo "<meta http-equiv='Refresh' content='0;URL=student.php'>";
exit(0);
}
foreach ($rows as $row) {
if ($code == $row['mCode']) {
return true;
}
}
} catch (Exception $exception){
echo "<script type='text/javascript'> alert('Error when check the current module code!') </script>";
echo "<meta http-equiv='Refresh' content='0;URL=student.php'>";
exit(0);
}
date_add($dateAndTime, date_interval_create_from_date_string('10 minutes'));
$weekday = $dateAndTime->format('w');
$time = $dateAndTime->format("H:i:s");
//Check next 10 minutes lab
try {
$dsn = 'mysql:dbname='.$db_database.';host='.$db_host;
$pdo = new PDO($dsn,$db_username,$db_password);
$pdo->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION );
$stmt = $pdo->prepare("SELECT * FROM Labs WHERE (:time BETWEEN Start_Time AND End_Time) AND Weekday = :weekday;");
$stmt->bindParam(':time', $time);
$stmt->bindParam(':weekday', $weekday);
$stmt->execute();
$rows = $stmt->fetchAll();
if (count($rows) > 1) {
echo "<script type='text/javascript'> alert('There are more than 1 labs in the room 10 minutes later, please contact admin!') </script>";
echo "<meta http-equiv='Refresh' content='0;URL=student.php'>";
exit(0);
}
foreach ($rows as $row) {
if ($code == $row['mCode']) {
return true;
}
}
} catch (Exception $exception){
echo "<script type='text/javascript'> alert('Error when module code query after 10 minutes!') </script>";
echo "<meta http-equiv='Refresh' content='0;URL=student.php'>";
exit(0);
}
date_add($dateAndTime, date_interval_create_from_date_string('-25 minutes'));
$weekday = $dateAndTime->format('w');
$time = $dateAndTime->format("H:i:s");
//Query the module code before 15 minutes
try {
$dsn = 'mysql:dbname='.$db_database.';host='.$db_host;
$pdo = new PDO($dsn,$db_username,$db_password);
$pdo->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION );
$stmt = $pdo->prepare("SELECT * FROM Labs WHERE (:time BETWEEN Start_Time AND End_Time) AND Weekday = :weekday;");
$stmt->bindParam(':time', $time);
$stmt->bindParam(':weekday', $weekday);
$stmt->execute();
$rows = $stmt->fetchAll();
if (count($rows) > 1) {
echo "<script type='text/javascript'> alert('There are more than 1 labs in the room 15 minutes earlier, please contact admin!') </script>";
echo "<meta http-equiv='Refresh' content='0;URL=student.php'>";
exit(0);
}
foreach ($rows as $row) {
if ($code == $row['mCode']) {
return true;
}
}
} catch (Exception $exception){
echo "<script type='text/javascript'> alert('Error when module code query 15 minutes earlier!') </script>";
echo "<meta http-equiv='Refresh' content='0;URL=student.php'>";
exit(0);
}
return false;
}
//checking if the assistant is handling a request
function handlingRequest ($handling_by, $db_database, $db_username, $db_password, $db_host) {
try {
$dsn = 'mysql:dbname='.$db_database.';host='.$db_host;
$pdo = new PDO($dsn,$db_username,$db_password);
$pdo->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION );
$stmt = $pdo->prepare("SELECT * FROM Queue WHERE Handling_By = :handling_by;");
$stmt->bindParam(':handling_by', $handling_by);
$stmt->execute();
$rows = $stmt->fetchAll();
return $rows;
} catch (Exception $exception) {
echo "<script type='text/javascript'> alert('Error for checking if the assistant is handling a request!') </script>";
echo "<meta http-equiv='Refresh' content='0;URL=admin.php'>";
exit(0);
}
}
//Get the next available request in the queue which the assistant can handle.
function nextItemInQueue ($email, $db_database, $db_username, $db_password, $db_host) {
try {
$dsn = 'mysql:dbname='.$db_database.';host='.$db_host;
$pdo = new PDO($dsn,$db_username,$db_password);
$pdo->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION );
$stmt = $pdo->prepare("SELECT * FROM Queue INNER JOIN Requests ON Requests.ID = Queue.rID INNER JOIN AdminEnrollment ON AdminEnrollment.mCode = Requests.Made_In AND AdminEnrollment.aEmail = :email WHERE Queue.Handling_By IS NULL ORDER BY Queue.Position;");
$stmt->bindParam(':email', $email);
$stmt->execute();
$rows = $stmt->fetchAll();
return $rows;
} catch (Exception $exception) {
echo "<script type='text/javascript'> alert('Error for Find next item in queue!') </script>";
echo "<meta http-equiv='Refresh' content='0;URL=admin.php'>";
exit(0);
}
}