X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/b04f76050d54c67844d5d4026993f6fab0edeae5..ee9702f9ff640f0108e52490d256c789acb09433:/article.inc.php diff --git a/article.inc.php b/article.inc.php index cff69ff..7f8e622 100644 --- a/article.inc.php +++ b/article.inc.php @@ -1,19 +1,4 @@ 0 ? $monthname[intval($parts[1])] : '', $parts[0], - count($parts) > 5 ? "$parts[3]:$parts[4]" : '', - ])); -} - class ArchiveArticle { public $raw, $title, $body; # file contents @@ -80,6 +65,18 @@ class ArchiveArticle return; } + function index() + { + $this->handler; + if (empty($this->handler)) { + return; + } + $User = NULL; + $Page = $this; + $res = include "./{$this->handler}/index.php"; + return $res; + } + function restricted() { $this->handler; @@ -114,10 +111,6 @@ class ArchiveArticle { return implode('-', $this->dateparts()) . 'T12:00:00+02:00'; } - function date() - { - return showdate($this->dateparts); - } function story() { @@ -168,6 +161,9 @@ class ArchiveArticle function thumb($size = '300x') { if (!$this->image or $this->image[0] !== '/') return; + if (preg_match('{^/thumb/\D}', $this->image)) { + return ltrim($this->image, '/'); + } return preg_replace( ['{^(?:/thumb/[^/]*)?}', '/\.groot(?=\.\w+$)/'], ["thumb/$size", ''], $this->image @@ -183,17 +179,20 @@ class ArchiveArticle ob_start(); $Page = clone $this; - $Page->handler = $Page->handler . $Page->path; // .= with explicit getter - $Page->path = ''; - foreach ($params as $param) { - if ($set = strpos($param, '=')) { - $Page->place[ substr($param, 0, $set) ] = substr($param, $set + 1); - } - elseif (!empty($param)) { - $Page->path .= '/'.$param; + if (is_array($params)) { + $Page->place += $params; + } + else { + foreach (explode(' ', $params) as $param) { + if ($set = strpos($param, '=')) { + $Page->place[ substr($param, 0, $set) ] = substr($param, $set + 1); + } + elseif (!empty($param)) { + $Page->place[] = $param; + } } } - $Page->link .= $Page->path; + try { include "widget/$name.php"; return ob_get_clean(); @@ -207,7 +206,7 @@ class ArchiveArticle function render() { - $doc = ob_get_clean(); + $doc = $this->raw; if (!empty($this->place['warn'])) { $warn = '

[[warn]]

'; @@ -229,7 +228,7 @@ class ArchiveArticle function ($sub) { list ($placeholder, $name, $params) = $sub; $html = $this->place[$name] ?? - $this->widget($name, explode(' ', $params)); + $this->widget($name, $params); if (empty($html) or $html[0] != '<') { $html = "$html"; } @@ -244,6 +243,8 @@ class ArchiveArticle class PageSearch { + public $handlers = []; + function __construct($path = '.') { $this->iterator = new RecursiveCallbackFilterIterator( @@ -253,6 +254,11 @@ class PageSearch # skip hidden files and directories return FALSE; } + if (file_exists($current->getFilename() . '/index.php')) { + # contents better provided by handler code + $this->handlers[ $current->getPathname() ] = $current; + return FALSE; + } if ($current->isLink()) { # ignore symlinks, original contents only return FALSE; @@ -270,12 +276,12 @@ class PageSearch function files() { # order alphabetically by link - $dir = iterator_to_array(new RecursiveIteratorIterator($this->iterator)); - array_walk($dir, function (&$row, $name) { - # prepare values for sorting (directory index first) - $row = preg_replace('{/index\.html$}', '', $name); - }); - asort($dir); + $dir = []; + foreach (new RecursiveIteratorIterator($this->iterator) as $name) { + $article = new ArchiveArticle($name); + $dir[$article->link] = $article; + } + ksort($dir); return $dir; } }