X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/42d01534123ab54ae8d2ceee5fe9357605b5e637..HEAD:/page.php diff --git a/page.php b/page.php index 4944467..30f0e3c 100644 --- a/page.php +++ b/page.php @@ -2,80 +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 str_replace('[[debug]]', $error, ob_get_clean()); -} -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__ ])); + +include_once 'error.inc.php'; + +# setup requested page + +$request = preg_replace('/\?.*/', '', @$_SERVER['PATH_INFO'] ?: $_SERVER['REQUEST_URI']); +$request = urldecode(trim($request, '/')) ?: 'index'; - $up = strrpos($Page, '/'); - $Args = substr($Page, $up) . $Args; - $Page = substr($Page, 0, $up); - if ($up === FALSE) { - break; +$staticpage = "$request.html"; +if (file_exists($staticpage)) { + if (is_link($staticpage)) { + $target = preg_replace('/\.html$/', '', readlink($staticpage)); + abort($target, '307 Shorthand'); } } +elseif (file_exists("$request/index.html")) { + $staticpage = "$request/index.html"; +} -# load static contents - -ob_start(); # page body -ob_start(); # inner html -print '
'."\n\n"; +require_once('article.inc.php'); +$Page = new ArchiveArticle($staticpage); -$found = FALSE; -if (file_exists("$Page$Args/index.html")) { - $found = include "./$Page$Args/index.html"; +if (@$_SERVER['HTTP_ACCEPT'] === 'text/plain') { + $Page->api = TRUE; } -elseif (file_exists("$Page$Args.html")) { - $found = include "./$Page$Args.html"; + +# user login and control + +include_once 'auth.inc.php'; // sets global $User + +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'); + } } -print "
\n\n"; +# 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'); -# execute dynamic code +$Page->place += [ + 'user' => $User->login ?: '', + 'url' => htmlspecialchars($_SERVER['REQUEST_URI']), +]; -if ($Page) { - $found |= require "./$Page.php"; +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"; - $url = htmlspecialchars($_SERVER['REQUEST_URI']); - print str_replace('[[url]]', $url, ob_get_clean()); + @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(); +