-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.php
More file actions
546 lines (506 loc) · 15.7 KB
/
api.php
File metadata and controls
546 lines (506 loc) · 15.7 KB
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
<?php
error_reporting(E_ALL);
ini_set("display_errors", 1);
define("CODE_404","HTTP/1.1 404 Page Not Available");
define("CODE_400",'HTTP/1.1 400 Bad Request');
define("CODE_405","HTTP/1.1 405 Method Not Allowed");
define("CODE_409","HTTP/1.1 409 Conflict");
define("CODE_200","HTTP/1.1 200 OK");
define("CODE_201","HTTP/1.1 201 Created");
define("CODE_204","HTTP/1.1 204 No Content");
include('functions.php');
class Api{
var $uri;
var $mehod;
var $paths;
public function serve()
{
$this->uri = $_SERVER['REQUEST_URI'];
$this->method = $_SERVER['REQUEST_METHOD'];
$uris = parse_url($this->uri);
$this->paths = explode('/', $uris['path']);
array_shift($this->paths); // Hack; get rid of initials empty strin
if($this->paths[count($this->paths)-1]=="")
{
array_pop($this->paths);
}
//lets remove the first element as we dont need that, its the preamble to the system
array_shift($this->paths);
//make it all lowercase
for($i =0; $i< count($this->paths);++$i)
{
$this->paths[$i] = strtolower($this->paths[$i]);
}
switch($this->paths[0])
{
case "scripts":
//now we need to do something based on the number of things in uri
$this->ScriptUriHandler();
break;
case "reviews":
//do something
$this->ReviewUriHandler();
break;
case "versions":
$this->VersionUriHandler();
//do soemthing
break;
default:
$this->returnErrorHeader(CODE_404);
die;
break;
}
}
private function returnErrorHeader($code)
{
header($code);
die;
}
private function VersionUriHandler()
{
switch(count($this->paths))
{
//Example /api/Versions/
case 1:
//deal with the type
switch($this->method)
{
case "GET":
$data = getVersions();
header('Content-type: application/json');
echo json_encode($data);
break;
default:
$this->returnErrorHeader(CODE_405.' The Method '.$this->method.' is not allowed on '.$this->uri);
break;
}
break;
//example api/Versions/scriptname
case 2:
switch($this->method)
{
case "GET":
//return script if possible
$scriptName = urldecode($this->paths[1]);
$data = getVersionsOfScripts($scriptName);
if($data =='null')
{
$this->returnErrorHeader(CODE_404.' Script not found');
}
else
{
//header('Content-type: application/json');
echo json_encode($data);
}
break;
case "POST":
//add the script if possible
$data = json_decode(file_get_contents('php://input'));
//we need to do some sanity checks to make sure that the user has added the correct information.
//data check to make sure there is some....
if(is_null($data))
$this->ReturnErrorHeader(CODE_400.' Data missing');
//check for data, Name is grabbed from the url.
if(!isset($data->code) || !isset($data->versionNumber) || !isset($data->versionInfo))
$this->ReturnErrorHeader(CODE_400.' not all data passed');
$name = urldecode($this->paths[1]);
//now we know that it is set we can send the data to the function to add it to the database.
switch(addVersionToDatabase($data,$name))
{
case "no found":
$this->returnErrorHeader(CODE_404.' Script with name doesnt exist');
break;
case "invalid version number":
$this->returnErrorHeader(CODE_400.' version number invalid/not higher than current');
break;
case "success":
$this->returnErrorHeader(CODE_201);
break;
case "not inserted":
$this->returnErrorHeader(CODE_400.' Could not insert, check data types');
break;
default:
break;
}
break;
default:
$this->returnErrorHeader(CODE_405.' The Method '.$this->method.' is not allowed on '.$this->uri);
break;
}
break;
//example /api/versions/scriptname/versionNum
case 3:
switch($this->method)
{
case "GET":
//return script if possible
$name = urldecode($this->paths[1]);
$vno = urldecode($this->paths[2]);
$data = getScriptByVersions($name,$vno);
if($data =='null')
{
$this->returnErrorHeader(CODE_404.' Script not found');
}
else
{
header('Content-type: application/json');
echo json_encode($data);
}
break;
case "PUT":
//get the name and vno
$name = urldecode($this->paths[1]);
$vno = urldecode($this->paths[2]);
//get the data
$data = json_decode(file_get_contents('php://input'));
//we need to do some sanity checks to make sure that the user has added the correct information.
//data check to make sure there is some....
if(is_null($data))
$this->ReturnErrorHeader(CODE_400.' Data missing');
//check for data, Name is grabbed from the url.
if(!isset($data->code) || !isset($data->versionInfo))
$this->ReturnErrorHeader(CODE_400.' not all data passed');
$name = urldecode($this->paths[1]);
//now we know that it is set we can send the data to the function to add it to the database.
switch(updateVersionOfScript($data,$name,$vno))
{
case "no script id found":
$this->returnErrorHeader(CODE_404.' Script with name not found');
break;
case "no version id found":
$this->returnErrorHeader(CODE_404.' No versions found');
break;
case "error":
$this->returnErrorHeader(CODE_400.' Could not update, check data types');
break;
case "success":
$this->returnErrorHeader(CODE_200.' Updated');
break;
default:
break;
}
break;
case "DELETE":
//get name and version number
$name = urldecode($this->paths[1]);
$vno = urldecode($this->paths[2]);
switch(deleteVersion($name,$vno))
{
case "no version id found":
$this->returnErrorHeader(CODE_404.' No versions found');
break;
case "error":
$this->returnErrorHeader(CODE_400.' Could not delete');
break;
case "success":
$this->returnErrorHeader(CODE_204.' Deleted');
break;
case "not found":
$this->returnErrorHeader(CODE_404.' Script Not Found');
break;
default:
break;
}
break;
default:
$this->returnErrorHeader(CODE_405.' The Method '.$this->method.' is not allowed on '.$this->uri);
break;
}
break;
default:
break;
}
}
private function ReviewUriHandler()
{
switch(count($this->paths))
{
//Example /api/Reviews/
case 1:
//deal with the type
switch($this->method)
{
case "GET":
$data = getReviews();
header('Content-type: application/json');
echo json_encode($data);
break;
default:
$this->returnErrorHeader(CODE_405.' The Method '.$this->method.' is not allowed on '.$this->uri);
break;
}
break;
//example api/Reviews/scriptname
case 2:
switch($this->method)
{
case "GET":
//return script if possible
$scriptName = urldecode($this->paths[1]);
$data = getReviewsOfScript($scriptName);
if($data =='null')
{
$this->returnErrorHeader(CODE_404.' Script not found');
}
else
{
header('Content-type: application/json');
echo json_encode($data);
}
break;
case "POST":
//add the script if possible
$data = json_decode(file_get_contents('php://input'));
//we need to do some sanity checks to make sure that the user has added the correct information.
//data check to make sure there is some....
if(is_null($data))
$this->ReturnErrorHeader(CODE_400.' Data missing');
//check for data, Name is grabbed from the url.
if(!isset($data->review) || !isset($data->score) )
$this->ReturnErrorHeader(CODE_400.' not all data passed');
if($data->score > 5)
$this->returnErrorHeader(CODE_400.' score must be between 1 & 5');
//now we know that it is set we can send the data to the function to add it to the database.
switch(addReviewToDatabase($data,$name))
{
case "no found":
$this->returnErrorHeader(CODE_404.' Script with name doesnt exist');
break;
case "success":
$this->returnErrorHeader(CODE_201);
break;
case "not inserted":
$this->returnErrorHeader(CODE_400.' Could not insert, check data types');
break;
default:
break;
}
break;
default:
$this->returnErrorHeader(CODE_405.' The Method '.$this->method.' is not allowed on '.$this->uri);
break;
}
break;
//example /api/Reviews/scriptname/reviewid
case 3:
switch($this->method)
{
case "GET":
//return script if possible
$name = urldecode($this->paths[1]);
$reviewId = urldecode($this->paths[2]);
$data = getReviewById($name,$reviewId);
if($data =='null')
{
$this->returnErrorHeader(CODE_404.' Script not found');
}
else
{
header('Content-type: application/json');
echo json_encode($data);
}
break;
case "PUT":
//get the name and vno
$name = urldecode($this->paths[1]);
$reviewid = urldecode($this->paths[2]);
//get the data
$data = json_decode(file_get_contents('php://input'));
//we need to do some sanity checks to make sure that the user has added the correct information.
//data check to make sure there is some....
if(is_null($data))
$this->ReturnErrorHeader(CODE_400.' Data missing');
//check for data, Name is grabbed from the url.
if(!isset($data->review) || !isset($data->score))
$this->ReturnErrorHeader(CODE_400.' not all data passed');
if($data->score > 5)
$this->returnErrorHeader(CODE_400.' score must be between 1 & 5');
//now we know that it is set we can send the data to the function to add it to the database.
switch(updateReview($data,$reviewid))
{
case "error":
$this->returnErrorHeader(CODE_400.' Could not update, check data types');
break;
case "success":
$this->returnErrorHeader(CODE_200.' Updated');
break;
default:
break;
}
break;
case "DELETE":
//get name and version number
$name = urldecode($this->paths[1]);
$reviewid = urldecode($this->paths[2]);
switch(deleteReview($reviewid))
{
case "error":
$this->returnErrorHeader(CODE_400.' Could not delete');
break;
case "success":
$this->returnErrorHeader(CODE_204.' Deleted');
break;
default:
break;
}
break;
default:
$this->returnErrorHeader(CODE_405.' The Method '.$this->method.' is not allowed on '.$this->uri);
break;
}
break;
default:
break;
}
}
private function ScriptUriHandler()
{
switch(count($this->paths))
{
//Example /api/Scripts/
case 1:
//deal with the type
switch($this->method)
{
case "GET":
$data = getscripts();
header('Content-type: application/json');
echo json_encode($data);
break;
case "POST":
//put the script if possible
$data = json_decode(file_get_contents('php://input'));
//we need to do some sanity checks to make sure that the user has added the correct information.
//data check to make sure there is some....
if(is_null($data))
$this->returnErrorHeader(CODE_400.' Data not passed');
//check for name
if(!isset($data->name) || !isset($data->code) || !isset($data->versionNumber) || !isset($data->versionInfo))
$this->returnErrorHeader(CODE_400.' Not all data passed');
//check to make sure v
//now we know that it is set we can send the data to the function to add it to the database.
switch(AddScriptToDb($data))
{
case "error":
$this->returnErrorHeader(CODE_409.' Script with that name exists');
break;
case "success":
$this->returnErrorHeader(CODE_201);
break;
case "not inserted":
$this->returnErrorHeader(CODE_400.' Could not insert, check data types, version number must be double');
break;
default:
break;
}
break;
default:
$this->returnErrorHeader(CODE_405.' The Method '.$this->method.' is not allowed on '.$this->uri);
break;
}
break;
//example api/scripts/scriptname
case 2:
switch($this->method)
{
case "GET":
//return script if possible
$scriptName = urldecode($this->paths[1]);
$code = GetScriptByName($scriptName);
if($code =='null')
{
$this->returnErrorHeader(CODE_404.' Script not found');
}
else
{
header('Content-type: application/json');
echo json_encode($code);
}
break;
case "POST":
//add the script if possible
$data = json_decode(file_get_contents('php://input'));
//we need to do some sanity checks to make sure that the user has added the correct information.
//data check to make sure there is some....
if(is_null($data))
$this->ReturnErrorHeader(CODE_400.' Data missing');
//check for data, Name is grabbed from the url.
if(!isset($data->code) || !isset($data->versionNumber) || !isset($data->versionInfo))
$this->ReturnErrorHeader(CODE_400.' not all data passed');
$name = urldecode($this->paths[1]);
//now we know that it is set we can send the data to the function to add it to the database.
switch(addScriptToDbByName($data,$name))
{
case "error":
$this->returnErrorHeader(CODE_409.' Script with that name exists');
break;
case "success":
$this->returnErrorHeader(CODE_201);
break;
case "not inserted":
$this->returnErrorHeader(CODE_400.' Could not insert, check data types, version number must be double');
break;
default:
break;
}
break;
case "DELETE":
//delete the script
//lets get the name of the script
$name = urldecode($this->paths[1]);
switch(deleteScript($name))
{
case "error":
$this->returnErrorHeader(CODE_400.' Could not delete');
break;
case "success":
$this->returnErrorHeader(CODE_204.' Deleted');
break;
case "not found":
$this->returnErrorHeader(CODE_404.' Script Not Found');
break;
default:
break;
}
break;
case "PUT":
//update latest script
$data = json_decode(file_get_contents('php://input'));
$name = urldecode($this->paths[1]);
//sanity checks
if(is_null($data))
$this->ReturnErrorHeader(CODE_400.' No data passed');
//check the contents of the $data
if(!isset($data->code) || !isset($data->versionNumber) || !isset($data->versionInfo))
$this->ReturnErrorHeader(CODE_400.' not enough data passed');
switch(updateScript($data,$name))
{
case "no script id found":
$this->returnErrorHeader(CODE_404.' Script with name not found');
break;
case "no version id found":
$this->returnErrorHeader(CODE_404.' No versions found');
break;
case "error":
$this->returnErrorHeader(CODE_400.' Could not update, check data types');
break;
case "success":
$this->returnErrorHeader(CODE_200.' Updated');
break;
default:
break;
}
break;
default:
$this->returnErrorHeader(CODE_405.' The Method '.$this->method.' is not allowed on '.$this->uri);
break;
}
break;
default:
break;
}
}
}
$server = new Api;
$server->serve();
?>