nieuws: hide text after cover image in overviews
[minimedit.git] / nieuws.inc.php
index c5dfa2331344503746cca81fbeebcd9128dacfb4..b58def7b7302bdad9ac4e41cc7e93c1155d6cbb2 100644 (file)
@@ -9,7 +9,7 @@ function showdate($parts)
 {
        global $monthname;
        return implode(' ', array_filter([
-               intval($parts[3]), $parts[2] > 0 ? $monthname[intval($parts[2])] : '', $parts[1],
+               intval(@$parts[3]), $parts[2] > 0 ? $monthname[intval($parts[2])] : '', $parts[1],
                count($parts) > 6 ? "$parts[4]:$parts[5]" : '',
        ]));
 }
@@ -19,7 +19,7 @@ class ArchiveArticle
        function __construct($path)
        {
                $this->page = $path;
-               $this->link = preg_replace('/\.html$/', '', $path);
+               $this->link = preg_replace('{(?:/index)?\.html$}', '', $path);
        }
 
        function __get($col)
@@ -29,6 +29,7 @@ class ArchiveArticle
 
        function file()
        {
+               if (!file_exists($this->page)) return;
                return fopen($this->page, 'r');
        }
 
@@ -39,7 +40,12 @@ class ArchiveArticle
 
        function safetitle()
        {
-               return strip_tags($this->title);
+               return trim(strip_tags($this->title));
+       }
+
+       function name()
+       {
+               return $this->safetitle ?: $this->link;
        }
 
        function last()
@@ -54,7 +60,7 @@ class ArchiveArticle
 
        function dateparts()
        {
-               preg_match('</(\d{4})/(\d{2})-(\d{2})->', $this->page, $ymd);
+               preg_match('< / (\d{4}) [/-] (\d{2}) (?:- (\d{2}) )? - >x', $this->page, $ymd);
                return $ymd;
        }
 
@@ -70,22 +76,33 @@ class ArchiveArticle
 
        function body()
        {
-               return fread($this->file, filesize($this->page));
+               $this->title;
+               $rest = fread($this->file, filesize($this->page));
+               if ( preg_match('{\n<p>(<img [^>]*>)</p>}', $rest, $img, PREG_OFFSET_CAPTURE) ) {
+                       $this->img = $img[1][0];
+                       return substr($rest, 0, $img[0][1]);
+               }
+               $this->img = NULL;
+               return $rest;
+       }
+
+       function img()
+       {
+               $this->body;
+               return $this->img;
        }
 
        function image()
        {
-               foreach (['jpg', 'png'] as $ext) {
-                       if (file_exists("{$this->link}.$ext")) {
-                               return "{$this->link}.$ext";
-                       }
+               if ( preg_match('/\bsrc="([^"]*)"/', $this->img, $src) ) {
+                       return $src[1];
                }
        }
 
        function thumb($size = '300x')
        {
-               if ($this->image)
-               return "thumb/$size/{$this->image}";
+               if (!$this->image or $this->image[0] !== '/') return;
+               return preg_replace('{^(?:/thumb/[^/]*)?}', "thumb/$size", $this->image);
        }
 }
 
@@ -97,7 +114,9 @@ function shownews($input, $limit = 1000)
                $article = new ArchiveArticle($filename);
                print '<li>';
                if ($article->thumb) {
-                       printf('<img src="/%s" class="left" />', $article->thumb);
+                       $img = preg_replace('{(?<= \b src="/) [^"]* }x', $article->thumb, $article->img);
+                       $img = preg_replace('{(?= />$)}', ' class="left"', $img);
+                       print $img;
                }
                print '<article>';
                printf(