page: move getoutput() to render method
authorMischa POSLAWSKY <perl@shiar.org>
Thu, 3 Dec 2020 20:22:27 +0000 (21:22 +0100)
committerMischa POSLAWSKY <perl@shiar.org>
Sat, 19 Dec 2020 02:01:43 +0000 (03:01 +0100)
article.inc.php
page.inc.php
page.php
widget/nieuws.php

index b676dd0c5e34537bb17732e13dd5a6b5f35628ff..c63089843c5d89f3da48fbb165683a2cda47491b 100644 (file)
@@ -46,6 +46,8 @@ class ArchiveArticle
                if (preg_match('{<h2>(.*?)</h2>\s*(.*)}s', $this->body, $titlematch)) {
                        list (, $this->title, $this->body) = $titlematch;
                }
+
+               return $this->raw;
        }
 
        function __get($col)
@@ -202,6 +204,42 @@ class ArchiveArticle
                        );
                }
        }
+
+       function render($blocks = [])
+       {
+               $doc = ob_get_clean();
+
+               if (!empty($blocks['warn'])) {
+                       $warn = '<p class="warn">[[warn]]</p>';
+                       if ($offset = strpos($doc, '</h2>')) {
+                               $doc = substr_replace($doc, "\n\n".$warn, $offset + 5, 0);
+                       }
+                       else {
+                               $doc = $warn . "\n\n" . $doc;
+                       }
+               }
+
+               # keep either login or logout parts depending on user level
+               global $User;
+               $hideclass = $User && property_exists($User, 'login') && $User->login ? 'logout' : 'login';
+               $doc = preg_replace('{\s*<([a-z]+) class="'.$hideclass.'">.*?</\1>}s', '', $doc);
+
+               return preg_replace_callback(
+                       '{ \[\[ ([^] ]+) ([^]]*) \]\] }x',
+                       function ($sub) use ($blocks) {
+                               list ($placeholder, $name, $params) = $sub;
+                               $html = $blocks[$name] ??
+                                       $this->widget($name, explode(' ', $params));
+                               if (empty($html) or $html[0] != '<') {
+                                       $html = "<span>$html</span>";
+                               }
+                               $attr = sprintf(' data-dyn="%s"', is_numeric($name) ? '' : $name.$params);
+                               # contents with identifier in first tag
+                               return preg_replace( '/(?=>)/', $attr, $html, 1);
+                       },
+                       $doc
+               );
+       }
 }
 
 class PageSearch
index 137d266267fab1905b74492b3e556e3b77722684..78cca99f070bcd61e1e4c06e0ed1972680fab489 100644 (file)
@@ -1,11 +1,12 @@
 <?php
-$body = getoutput(@$Place);
+$body = $Page->render(@$Place);
 
 include_once 'head.inc.php';
 
 print "<header>\n";
 ob_start();
-include 'menu.inc.html';
+$menu = new ArchiveArticle('menu.inc.html');
+print $menu->raw;
 ob_start();
 if ($User and property_exists($User, 'login') and $User->login) {
        print '<div class="login"><p>';
@@ -29,7 +30,7 @@ if ($User and property_exists($User, 'login') and $User->login) {
        }
        print "</p></div>\n";
 }
-$nav = getoutput(['login' => ob_get_clean()]);
+$nav = $menu->render(['login' => ob_get_clean()]);
 
 $nav = preg_replace_callback('{<a href="([^"]+)">(.*?)</a>}', function ($m) {
        $request = $_SERVER['REQUEST_URI'];
index d5c78cdecc9005285a2df589197c6cd087c4453a..214f9d284804e89a7d4cb0949e177b22c9db775b 100644 (file)
--- a/page.php
+++ b/page.php
@@ -8,42 +8,6 @@ function abort($body, $status = NULL) {
        exit;
 }
 
-function getoutput($blocks = [])
-{
-       $doc = ob_get_clean();
-
-       if (!empty($blocks['warn'])) {
-               $warn = '<p class="warn">[[warn]]</p>';
-               if ($offset = strpos($doc, '</h2>')) {
-                       $doc = substr_replace($doc, "\n\n".$warn, $offset + 5, 0);
-               }
-               else {
-                       $doc = $warn . "\n\n" . $doc;
-               }
-       }
-
-       # keep either login or logout parts depending on user level
-       global $User;
-       $hideclass = $User && property_exists($User, 'login') && $User->login ? 'logout' : 'login';
-       $doc = preg_replace('{\s*<([a-z]+) class="'.$hideclass.'">.*?</\1>}s', '', $doc);
-
-       return preg_replace_callback(
-               '{ \[\[ ([^] ]+) ([^]]*) \]\] }x',
-               function ($sub) use ($blocks) {
-                       list ($placeholder, $name, $params) = $sub;
-                       $html = $blocks[$name] ??
-                               placeholder_include($name, explode(' ', $params));
-                       if (empty($html) or $html[0] != '<') {
-                               $html = "<span>$html</span>";
-                       }
-                       $attr = sprintf(' data-dyn="%s"', is_numeric($name) ? '' : $name.$params);
-                       # contents with identifier in first tag
-                       return preg_replace( '/(?=>)/', $attr, $html, 1);
-               },
-               $doc
-       );
-}
-
 # custom error handling
 
 define('DOCROOT', getcwd());
@@ -61,7 +25,7 @@ function fail($error)
        include_once 'page.inc.php';
        ob_start();
        require '500.inc.html';
-       print getoutput(['debug' => htmlspecialchars($error)]);
+       print $Page->render(['debug' => htmlspecialchars($error)]);
 }
 
 set_exception_handler('fail');
index 977357e5e572d4afff1d43b863f44caa0837c309..4f4fd454d1adada0fb8c081a892c27cdf2cba510 100644 (file)
@@ -74,4 +74,4 @@ if (@$Place['view'] === 'toc') {
 }
 ob_start();
 shownews($articles, @$Place['n'] ?: 5);
-print getoutput();
+print $Page->render();