Air-Quality-Web/api.php

90 lines
2.3 KiB
PHP
Raw Normal View History

<?php
$start_time = microtime(true);
define("ROOT_DIR", dirname(__FILE__) . "/");
2019-01-15 19:26:14 +00:00
// 1: Autoloaders
require("vendor/autoload.php");
$autoloader = new \Aura\Autoload\Loader();
$autoloader->addPrefix("AirQuality", "logic");
$autoloader->addPrefix("SBRL", "lib/SBRL");
$autoloader->register();
2019-06-20 23:02:26 +00:00
// 1.5: Performance counter
$perfcounter = new \SBRL\PerformanceCounter();
$perfcounter->start("total");
2019-01-15 19:26:14 +00:00
2019-01-15 19:19:17 +00:00
// 2: Settings
2019-06-20 23:02:26 +00:00
$perfcounter->start("settings");
2019-01-15 19:19:17 +00:00
$settings = new \SBRL\TomlConfig(
"data/settings.toml",
"settings.default.toml"
);
2019-06-20 23:02:26 +00:00
$perfcounter->end("settings");
2019-01-15 19:19:17 +00:00
2019-01-15 19:26:14 +00:00
// 3: Dependency injection
2019-06-20 23:02:26 +00:00
$perfcounter->start("di");
$di_builder = new DI\ContainerBuilder();
$di_builder->addDefinitions("di_config.php");
2019-01-15 19:19:17 +00:00
if($settings->get("env.mode") == "production") {
// http://php-di.org/doc/container-configuration.html
if(!file_exists(ROOT_DIR."data/cache/php_di"))
mkdir(ROOT_DIR."data/cache/php_di", 0700, true);
$di_builder->enableCompilation(ROOT_DIR."data/cache/php_di");
2019-01-15 19:19:17 +00:00
if(!file_exists(ROOT_DIR."data/cache/php_di_proxies"))
mkdir(ROOT_DIR."data/cache/php_di_proxies", 0700, true);
$di_builder->writeProxiesToFile(true, ROOT_DIR."data/cache/php_di_proxies");
2019-01-15 19:19:17 +00:00
}
$di_container = $di_builder->build();
2019-06-20 23:02:26 +00:00
$perfcounter->end("di");
// 4: Database
// Done automagically by PHP-DI.
// PHP-DI autowires it, and doesn't create more than 1 instance of it either
2019-01-15 19:26:14 +00:00
// 5: Action
2019-07-29 20:31:06 +00:00
header("access-control-allow-origin: http://[::1]:40482");
// 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.");
}
2020-05-21 18:16:30 +00:00
if($settings->get("http.cors") !== false) {
header("access-control-allow-origin: " . $settings->get("http.cors"));
}
$handler = $di_container->get($handler_name);
2019-06-20 23:02:26 +00:00
$perfcounter->start("handle");
// FUTURE: A PSR-7 request/response system would be rather nice here.
$handler->handle();