mirror of
https://github.com/ConnectedHumber/Air-Quality-Web
synced 2024-11-13 05:03:02 +00:00
60 lines
1.3 KiB
PHP
60 lines
1.3 KiB
PHP
<?php
|
|
$start_time = microtime(true);
|
|
|
|
define("ROOT_DIR", dirname(__FILE__) . "/");
|
|
|
|
// 1: Autoloaders
|
|
|
|
require("vendor/autoload.php");
|
|
|
|
$autoloader = new \Aura\Autoload\Loader();
|
|
$autoloader->addPrefix("AirQuality", "logic");
|
|
$autoloader->addPrefix("SBRL", "lib/SBRL");
|
|
$autoloader->register();
|
|
|
|
|
|
// 2: Dependency injection
|
|
|
|
$di_builder = new DI\ContainerBuilder();
|
|
$di_builder->addDefinitions("di_config.php");
|
|
|
|
$di_container = $di_builder->build();
|
|
|
|
|
|
// 3: Settings
|
|
|
|
$settings = $di_container->get(\SBRL\TomlConfig::class);
|
|
|
|
|
|
// 4: Database
|
|
|
|
// TODO: Setup the database here
|
|
|
|
|
|
// 5: Action
|
|
|
|
// Figure out the action name
|
|
$action = str_replace(
|
|
" ", "",
|
|
ucwords(str_replace(
|
|
"-", " ",
|
|
preg_replace("/[^a-z-]/i", "", $_GET["action"] ?? $settings->get("routing.default-action"))
|
|
))
|
|
);
|
|
|
|
$handler_name = "AirQuality\\Actions\\$action";
|
|
|
|
// if(!class_exists($handler_name))
|
|
// send_error(404, "Unknown action $handler_name.");
|
|
|
|
// Fetch it from the dependency injector and execute it, but only if it exists
|
|
|
|
if(!class_exists($handler_name)) {
|
|
http_response_code(404);
|
|
header("content-type: text/plain");
|
|
exit("Error: No action with the name '$action' could be found.");
|
|
}
|
|
|
|
// FUTURE: A PSR-7 request/response system would be rather nice here.
|
|
$handler = $di_container->get($handler_name);
|
|
$handler->handle();
|