-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdispatch.php
36 lines (25 loc) · 918 Bytes
/
dispatch.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
<?php
require './serverSide/librairies/Tonic/Autoloader.php';
require './serverSide/init.php';
$app = new Tonic\Application(array(
'load' => './serverSide/resources/*.php'
));
//$request = new Tonic\Request(array("uri"=>"/tinyDailyTaskManager/dispatch.php"));
$request = new \Tonic\Request(array(
'uri' => $_SERVER["PATH_INFO"],
'method' => $_SERVER["REQUEST_METHOD"],
'contentType' => 'application/json',
));
try {
$resource = $app->getResource($request);
#echo $resource; die;
$response = $resource->exec();
} catch (Tonic\NotFoundException $e) {
$response = new Tonic\Response(404, $e->getMessage());
} catch (Tonic\UnauthorizedException $e) {
$response = new Tonic\Response(401, $e->getMessage());
$response->wwwAuthenticate = 'Basic realm="My Realm"';
} catch (Tonic\Exception $e) {
$response = new Tonic\Response($e->getCode(), $e->getMessage());
}
$response->output();