X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/effb5f39f873af6e83f65ec3bce4c6d6b3a0fac3..b88d21d03da5f43a5c6177a3e12d10ef2b326be2:/page.php diff --git a/page.php b/page.php index 35a810a..0c101f8 100644 --- a/page.php +++ b/page.php @@ -16,9 +16,7 @@ $staticpage = "$request.html"; if (file_exists($staticpage)) { if (is_link($staticpage)) { $target = preg_replace('/\.html$/', '', readlink($staticpage)); - header("HTTP/1.1 302 Shorthand"); - header("Location: $target"); - exit; + abort($target, '302 Shorthand'); } } elseif (file_exists("$request/index.html")) { @@ -28,6 +26,10 @@ elseif (file_exists("$request/index.html")) { require_once('article.inc.php'); $Page = new ArchiveArticle($staticpage); +if ($_SERVER['HTTP_ACCEPT'] === 'text/plain') { + $Page->api = TRUE; +} + # user login and control include_once 'auth.inc.php'; // sets global $User @@ -35,10 +37,8 @@ include_once 'auth.inc.php'; // sets global $User if ($Page->restricted) { # access restriction if (!$User->login) { - http_response_code(303); $target = urlencode($Page->link); - header("Location: /login?goto=$target"); - exit; + abort("/login?goto=$target", '303 Eerst inloggen'); } } @@ -69,7 +69,7 @@ if (isset($Page->raw)) { include_once 'format.inc.php'; ob_start(); -if ($Page->handler and !require("./{$Page->handler}/index.php")) { +if ($Page->handler and !$Page->index($Page->api)) { # replace contents by code output on false return $Page->raw = ob_get_clean(); } @@ -83,5 +83,8 @@ else { } } -include_once 'page.inc.php'; +if (!$Page->api and $_SERVER['HTTP_ACCEPT'] !== 'application/xml') { + include_once 'page.inc.php'; +} +print $Page->render();