X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/b49b76d0bd617a2d155540cd099515f48255b50c..HEAD:/page.php diff --git a/page.php b/page.php index 9e3388e..30f0e3c 100644 --- a/page.php +++ b/page.php @@ -2,88 +2,99 @@ error_reporting(E_ALL); ini_set('display_errors', TRUE); -function fail($error) -{ - http_response_code(500); - include_once 'page.inc.php'; - ob_start(); - require_once './500.html'; - print getoutput(['debug' => $error]); -} -set_exception_handler('fail'); -register_shutdown_function(function () { - # display failure page for fatal exceptions - $error = error_get_last(); - if (!($error['type'] & (E_ERROR | E_CORE_ERROR | E_COMPILE_ERROR | E_USER_ERROR))) return; - fail("Fatal: $error[message] in $error[file]:$error[line]"); -}); - -include_once 'auth.inc.php'; -$Edit = isset($_GET['edit']); - -# distinguish subpage Args from topmost Page script - -$Args = ''; -$Page = preg_replace('/\?.*/', '', $_SERVER['REQUEST_URI']); -$Page = urldecode(trim($Page, '/')) ?: 'index'; -while (TRUE) { - if (file_exists("$Page.php")) { - break; - } +define('DOCROOT', getcwd()); +set_include_path(implode(PATH_SEPARATOR, [ DOCROOT, __DIR__ ])); - $up = strrpos($Page, '/'); - $Args = substr($Page, $up) . $Args; - $Page = substr($Page, 0, $up); - if ($up === FALSE) { - break; - } -} +include_once 'error.inc.php'; -# load static contents +# setup requested page -ob_start(); # page body -ob_start(); # inner html -print '
'."\n\n"; +$request = preg_replace('/\?.*/', '', @$_SERVER['PATH_INFO'] ?: $_SERVER['REQUEST_URI']); +$request = urldecode(trim($request, '/')) ?: 'index'; -$found = FALSE; -if (file_exists("$Page$Args/index.html")) { - $found = include "./$Page$Args/index.html"; +$staticpage = "$request.html"; +if (file_exists($staticpage)) { + if (is_link($staticpage)) { + $target = preg_replace('/\.html$/', '', readlink($staticpage)); + abort($target, '307 Shorthand'); + } } -elseif (file_exists("$Page$Args.html")) { - $found = include "./$Page$Args.html"; +elseif (file_exists("$request/index.html")) { + $staticpage = "$request/index.html"; } -print "
\n\n"; +require_once('article.inc.php'); +$Page = new ArchiveArticle($staticpage); -# execute dynamic code +if (@$_SERVER['HTTP_ACCEPT'] === 'text/plain') { + $Page->api = TRUE; +} + +# user login and control + +include_once 'auth.inc.php'; // sets global $User -if ($Page) { - function getoutput($blocks = []) - { - $rep = []; - foreach ($blocks as $name => $html) { - $rep["[[$name]]"] = "$html"; - } - return str_replace(array_keys($rep), array_values($rep), ob_get_clean()); +if ($Page->restricted) { + # access restriction + if (!$User->login) { + $target = urlencode($Page->link); + abort("/login?goto=$target", '303 Eerst inloggen'); } + elseif ($check = file_get_contents("{$Page->restricted}/.private") + and !$User->admin(trim($check))) { + http_response_code(403); + $Page->raw('403.inc.html'); + } +} - $found |= require "./$Page.php"; +# prepare page contents + +header(sprintf('Content-Security-Policy: %s', implode('; ', [ + "default-src 'self' 'unsafe-inline' http://cdn.ckeditor.com", # some overrides remain + "img-src 'self' data: blob: http://cdn.ckeditor.com", # inline svg (in css) + "base-uri 'self'", # only local pages + "frame-ancestors 'none'", # prevent malicious embedding +]))); +header('Referrer-Policy: no-referrer-when-downgrade'); + +$Page->place += [ + 'user' => $User->login ?: '', + 'url' => htmlspecialchars($_SERVER['REQUEST_URI']), +]; + +if ($Page->editable = $User->admin("edit {$Page->link}")) { + include_once 'edit/head.inc.php'; } -# global html +if (isset($Page->raw) +and @$_SERVER['HTTP_ACCEPT'] !== 'application/xml') { + $Page->raw = '
'."\n\n".$Page->raw."
\n\n"; +} -include_once 'page.inc.php'; +# output dynamic and/or static html -if (!$found) { - # no resulting output - if (isset($User) and $User['admin']) { - require './template.html'; - } - else { +include_once 'format.inc.php'; + +ob_start(); +if ($Page->handler and !$Page->index($Page->api)) { + # replace contents by code output on false return + $Page->raw = ob_get_clean(); +} +else { + # keep article contents + if (!isset($Page->body)) { + # no resulting output http_response_code(404); - ob_start(); - require "./404.html"; - print getoutput([ 'url' => htmlspecialchars($_SERVER['REQUEST_URI']) ]); + @require '404.inc.html'; + $Page->raw = ob_get_clean() . $Page->raw; } } +if (@$_SERVER['HTTP_ACCEPT'] === 'application/xml') { + header('Access-Control-Allow-Origin: *'); +} +elseif (!$Page->api) { + include_once 'page.inc.php'; +} +print $Page->render(); +