aboutsummaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorwinter Sparkles2026-08-06 23:47:34 +0100
committerwinter Sparkles2026-08-06 23:47:34 +0100
commitef14ba500ff27dd2d1fe6e5debd99f7a5fc4db10 (patch)
tree1dd707be810472b13fe8ac60f204f74dfbecf9c6 /index.php
initial commit
Diffstat (limited to 'index.php')
-rw-r--r--index.php50
1 files changed, 50 insertions, 0 deletions
diff --git a/index.php b/index.php
new file mode 100644
index 0000000..3dee8eb
--- /dev/null
+++ b/index.php
@@ -0,0 +1,50 @@
+<?php
+
+spl_autoload_register(function ($class) {
+ $sep = DIRECTORY_SEPARATOR;
+ $cname = str_replace('\\', $sep, $class);
+ include __DIR__ . "$sep$cname.php";
+});
+
+$path = $_SERVER['PATH_INFO'] ?? $_SERVER['REQUEST_URI'] ?? null;
+
+if (!isset($path)) {
+ http_response_code(500);
+ echo "<p>Server misconfiguration! couldn't figure out the request path</p>";
+ exit;
+}
+
+$path = explode('?', $path, 2)[0];
+
+$config = parse_ini_file(__DIR__ . '/config.ini', true, INI_SCANNER_TYPED);
+
+App\XMLResponse::addStylesheet('templates/index.xsl');
+App\XMLResponse::addPreamble(function ($doc) use ($config) {
+ $doc->addAttribute('site-name', $config['site']['name']);
+ $doc->addAttribute('source', $config['site']['source-location']);
+});
+
+$router = new App\Router('routes', $config);
+
+$router->registerStatusHandler(404, function ($path) {
+ $resp = new App\XMLResponse;
+ $resp->doc->addAttribute('title', 'Not found');
+ $resp->doc->addChild(
+ 'error',
+ "The requested page ($path) does not exist."
+ );
+ $resp->send();
+});
+
+$router->registerStatusHandler(405, function ($path) {
+ $method = $_SERVER['REQUEST_METHOD'];
+ $resp = new App\XMLResponse;
+ $resp->doc->addAttribute('title', 'Wrong method');
+ $resp->doc->addChild(
+ 'error',
+ "Your request method ($method) is not valid for this path."
+ );
+ $resp->send();
+});
+
+$router->dispatch($path);