From 1abb286e88defee799e43cdd296914f74f722bde Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Mon, 24 Jun 2019 16:49:26 +0200 Subject: [PATCH] page: retrieve static contents from article object --- article.inc.php | 31 ++++++++++++++++++------------- page.php | 5 +++-- 2 files changed, 21 insertions(+), 15 deletions(-) diff --git a/article.inc.php b/article.inc.php index 5de1492..bc8dbff 100644 --- a/article.inc.php +++ b/article.inc.php @@ -33,16 +33,18 @@ class ArchiveArticle return fopen($this->page, 'r'); } + function rawtitle() + { + return fgets($this->file); + } function title() { - return preg_replace('{

(.*)

\s*}', '\1', fgets($this->file)); + return preg_replace('{

(.*)

\s*}', '\1', $this->rawtitle); } - function safetitle() { return trim(strip_tags($this->title)); } - function name() { return $this->safetitle ?: $this->link; @@ -52,7 +54,6 @@ class ArchiveArticle { return filemtime($this->page); } - function lastiso() { return date(DATE_ATOM, $this->last); @@ -64,33 +65,39 @@ class ArchiveArticle array_shift($ymd); return $ymd; } - function dateiso() { return implode('-', $this->dateparts()) . 'T12:00:00+02:00'; } - function date() { return showdate($this->dateparts); } + function body() + { + if (!$this->file) return; + $this->rawtitle; + return fread($this->file, filesize($this->page) ?: 1); + } function story() { - $this->title; - $rest = fread($this->file, filesize($this->page)); if ( preg_match('{ \n (?: < (?: p | figure [^>]* ) >\s* )+ (]*>) | \n - }x', $rest, $img, PREG_OFFSET_CAPTURE) ) { + }x', $this->body, $img, PREG_OFFSET_CAPTURE) ) { # strip part after matching divider (image) if (isset($img[1])) { $this->img = $img[1][0]; } - return substr($rest, 0, $img[0][1]); + return substr($this->body, 0, $img[0][1]); } - return $rest; + return $this->body; } + function raw() + { + return $this->rawtitle . $this->body; + } function teaser() { if (preg_match('{

(.*?)

}s', $this->story, $bodyp)) { @@ -104,14 +111,12 @@ class ArchiveArticle $this->story; return $this->img; } - function image() { if ( preg_match('/\bsrc="([^"]*)"/', $this->img, $src) ) { return $src[1]; } } - function thumb($size = '300x') { if (!$this->image or $this->image[0] !== '/') return; diff --git a/page.php b/page.php index fb39f51..a05e158 100644 --- a/page.php +++ b/page.php @@ -173,8 +173,9 @@ ob_start(); # inner html print '
'."\n\n"; $found = FALSE; -if (isset($staticpage)) { - $found = include "./$staticpage"; +if ($Article->file) { + print $Article->raw; + $found = 1; } print "
\n\n"; -- 2.30.0