adlerka.top/index.php

40 lines
982 B
PHP
Raw Normal View History

2024-01-11 09:27:03 +01:00
<?php
2024-01-16 20:43:57 +01:00
/** @noinspection PhpIncludeInspection */
require_once "secrets/config.php";
2024-01-16 20:54:09 +01:00
require_once "lib/config.php";
2024-01-18 11:49:38 +01:00
require_once "lib/navigation.php";
require_once "lib/router.php";
require_once "lib/page.php";
require_once "lib/endpoint.php";
2024-02-01 09:38:16 +01:00
require_once "lib/account.php";
2024-01-11 09:27:03 +01:00
2024-01-16 20:43:57 +01:00
$routerConfig = array();
$routerRequest = array();
2024-01-11 09:27:03 +01:00
2024-01-16 20:43:57 +01:00
loadRouterConfig();
2024-02-02 16:37:15 +01:00
$canRender = initRouter();
if($canRender) {
2024-01-16 20:43:57 +01:00
/** @noinspection PhpArrayIsAlwaysEmptyInspection */
session_set_cookie_params(0, '/', "." . $routerRequest["domain"] . "." . $routerRequest["tld"], true, true);
session_start();
2024-02-01 09:38:16 +01:00
if(!isLoggedIn()){
setDefaultSessionData();
}
2024-01-18 11:49:38 +01:00
if($routerRequest["type"] == "api") {
echo getEndpoint($routerRequest["page_name"]);
2024-01-18 11:49:38 +01:00
}elseif ($routerRequest["type"] == "page") {
/** @noinspection PhpArrayIsAlwaysEmptyInspection */
echo getPage($routerRequest["page_name"]);
}
else{
echo "Unknown request";
}
2024-01-16 20:43:57 +01:00
}
else{
exit();
}
2024-01-11 09:27:03 +01:00