48 lines
1.4 KiB
PHP
48 lines
1.4 KiB
PHP
|
<?php
|
||
|
|
||
|
// Autoload files using the Composer autoloader.
|
||
|
require_once __DIR__ . '/vendor/autoload.php';
|
||
|
|
||
|
// First Party
|
||
|
use GeNF\Dispatcher;
|
||
|
|
||
|
use SeriousJSON\JsonDatabase;
|
||
|
|
||
|
// Third Party Routing Library
|
||
|
use Gac\Routing\Exceptions\CallbackNotFound;
|
||
|
use Gac\Routing\Exceptions\RouteNotFoundException;
|
||
|
use Gac\Routing\Request;
|
||
|
use Gac\Routing\Routes;
|
||
|
|
||
|
// Initialize an instance of the routing library
|
||
|
$routes = new Routes();
|
||
|
|
||
|
// Initialize Twig
|
||
|
$loader = new \Twig\Loader\FilesystemLoader(__DIR__ . DIRECTORY_SEPARATOR . 'templates');
|
||
|
$twig = new \Twig\Environment($loader, [
|
||
|
'cache' => __DIR__ . DIRECTORY_SEPARATOR . 'compilation_cache',
|
||
|
]);
|
||
|
|
||
|
$data = new JsonDatabase(__DIR__ . DIRECTORY_SEPARATOR . 'data');
|
||
|
$dispatcher = new Dispatcher();
|
||
|
|
||
|
try {
|
||
|
// Initialize Database
|
||
|
$data->init();
|
||
|
|
||
|
// Initialize ge.nf Dispatcher in order to register routes
|
||
|
$dispatcher->init();
|
||
|
|
||
|
// Handle routes
|
||
|
$routes->handle();
|
||
|
} catch (RouteNotFoundException $ex) {
|
||
|
$routes->request->status(404, "Route not found")->send(["error" => ["message" => $ex->getMessage()]]);
|
||
|
} catch (CallbackNotFound $ex) {
|
||
|
$routes->request->status(404, "Callback method not found")->send(["error" => ["message" => $ex->getMessage()]]);
|
||
|
} catch (Exception $ex) {
|
||
|
$code = $ex->getCode() ?? 500;
|
||
|
$routes->request->status($code)->send(["error" => ["message" => $ex->getMessage()]]);
|
||
|
}
|
||
|
|
||
|
?>
|