1
0
www.mikescher.com/www/internals/website.php

215 lines
4.5 KiB
PHP
Raw Normal View History

2020-01-14 22:25:43 +01:00
<?php
2020-01-13 14:39:35 +01:00
require_once 'ruleengine.php';
require_once 'urlroute.php';
require_once 'pageframeoptions.php';
2020-01-15 02:50:23 +01:00
require_once 'modules.php';
require_once 'fragments.php';
2020-01-13 14:39:35 +01:00
2020-01-14 22:25:43 +01:00
require_once 'utils.php';
2020-01-13 14:39:35 +01:00
class Website
{
/** @var Website */
private static $instance;
/** @var array */
2020-01-15 00:01:20 +01:00
public $config;
2020-01-15 01:46:31 +01:00
/** @var bool|null */
2020-01-16 13:21:14 +01:00
private $isLoggedIn = null;
2020-01-15 01:46:31 +01:00
2020-01-15 02:50:23 +01:00
/** @var Modules */
public $modules;
/** @var Fragments */
public $fragments;
2020-01-13 14:39:35 +01:00
public function init()
{
set_error_handler("exception_error_handler"); // errors as exceptions for global catch
try
{
2020-01-15 00:57:11 +01:00
$this->config = require (__DIR__ . "/../config.php");
2020-01-13 14:39:35 +01:00
if (!$this->config['prod'])
{
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
}
2020-01-15 02:50:23 +01:00
$this->modules = new Modules($this);
$this->fragments = new Fragments();
2020-01-13 14:39:35 +01:00
self::$instance = $this;
}
catch (exception $e)
{
$this->serveServerError("Initialization failed", formatException($e), null);
}
}
2020-01-15 00:29:45 +01:00
public static function inst()
2020-01-13 14:39:35 +01:00
{
return self::$instance;
}
public function serve($rules)
{
try
{
$route = RuleEngine::findRoute($this, $rules);
$result = $route->get($this);
if ($result->force_redirect)
{
header('Location: ' . $result->force_redirect_url);
exit();
}
2020-01-13 14:39:35 +01:00
if ($result->force_404)
{
2020-01-16 10:50:18 +01:00
$this->serveCustom404($route->full_url, $result, $result->force_404_message);
2020-01-13 14:39:35 +01:00
exit();
}
$this->output($result, $route);
}
catch (Exception $e)
{
2020-01-15 02:50:23 +01:00
$this->serveServerError("Internal Server Error", formatException($e), null);
2020-01-13 14:39:35 +01:00
}
}
2020-01-16 10:50:18 +01:00
private function serveCustom404(string $uri, PageFrameOptions $frameOpt, string $message)
2020-01-13 14:39:35 +01:00
{
try
{
$frameOpt->statuscode = 404;
$frameOpt->title = 'Page not found';
$route = URLRoute::getNotFoundRoute($uri);
2020-01-16 10:50:18 +01:00
$route->parameter['message'] = $message;
2020-01-13 14:39:35 +01:00
$result = $route->getDirect($this, $frameOpt);
$this->output($result, $route);
}
catch (Exception $e)
{
2020-01-15 02:50:23 +01:00
$this->serveServerError("Internal Server Error", formatException($e), null);
2020-01-13 14:39:35 +01:00
}
exit();
}
/**
2020-01-15 02:50:23 +01:00
* @param string $message
2020-01-13 14:39:35 +01:00
* @param string|null $debugInfo
* @param PageFrameOptions|null $frameOpt
*/
2020-01-15 02:50:23 +01:00
private function serveServerError(string $message, $debugInfo, $frameOpt)
2020-01-13 14:39:35 +01:00
{
try
{
if ($frameOpt === null) $frameOpt = new PageFrameOptions();
$frameOpt->statuscode = 500;
$frameOpt->title = 'Internal Server Error';
$frameOpt->frame = 'error_frame.php';
$route = URLRoute::getServerErrorRoute($_SERVER['REQUEST_URI']);
$route->parameter['message'] = $message;
$route->parameter['debuginfo'] = $debugInfo;
$result = $route->getDirect($this, $frameOpt);
$this->output($result, $route);
}
catch (Exception $e)
{
http_response_code(500);
die('Internal Server Error');
}
exit();
}
private function output(PageFrameOptions $pfo, URLRoute $route)
{
if ($pfo->contentType !== null) header('Content-Type: ' . $pfo->contentType);
http_response_code($pfo->statuscode);
global $ROUTE;
global $FRAME_OPTIONS;
2020-01-15 01:46:31 +01:00
global $SITE;
2020-01-13 14:39:35 +01:00
$ROUTE = $route;
$FRAME_OPTIONS = $pfo;
2020-01-15 01:46:31 +01:00
$SITE = $this;
2020-01-13 14:39:35 +01:00
/** @noinspection PhpIncludeInspection */
2020-01-15 01:46:31 +01:00
require __DIR__ . '/../frames/' . $FRAME_OPTIONS->frame;
2020-01-13 14:39:35 +01:00
}
/**
* @return bool
*/
public function isProd()
{
if ($this->config == null) return true;
return $this->config['prod'];
}
2020-01-15 01:46:31 +01:00
public function isLoggedInByCookie()
{
if ($this->isLoggedIn !== null) return $this->isLoggedIn;
if (key_exists('mikescher_auth', $_COOKIE))
{
if (strlen($_COOKIE['mikescher_auth']) !== 64) return ($this->isLoggedIn = false);
$auth = hash('sha256', $this->config['admin_username'] . ';' . $this->config['admin_password'] . ';' . gmdate('Y-m-d'));
if ($auth === $_COOKIE['mikescher_auth']) return ($this->isLoggedIn = true);
}
return ($this->isLoggedIn = false);
}
function setLoginCookie($user, $pass)
{
$expires = time() + (24*60*60); // 24h
$hash = hash('sha256', $user . ';' . $pass . ';' . gmdate('Y-m-d'));
setcookie('mikescher_auth', $hash, $expires);
}
function clearLoginCookie()
{
setcookie("mikescher_auth", "", time()+30);
}
2020-01-16 10:50:18 +01:00
public function renderMarkdown(string $txt)
{
require_once 'parsedowncustom.php';
$pd = new ParsedownCustom();
return $pd->text($txt);
}
2020-01-13 14:39:35 +01:00
}
/**
* @param $severity
* @param $message
* @param $file
* @param $line
* @throws ErrorException
*/
function exception_error_handler($severity, $message, $file, $line) {
// This error code is not included in error_reporting
if (!(error_reporting() & $severity)) return;
throw new ErrorException($message, 0, $severity, $file, $line);
}