page: text/plain request triggers api mode
[minimedit.git] / article.inc.php
index f56b2bedd27439e40e001e2141fbbdf2e9d5ca80..1dbda25e0dc1b3c70186114979605e71a8a9acfa 100644 (file)
@@ -4,6 +4,7 @@ class ArchiveArticle
        public $raw, $title, $body; # file contents
        public $meta = [];  # head metadata properties
        public $place = []; # template variables replaced in render()
+       public $api = FALSE; # requested programming interface
 
        function __construct($path)
        {
@@ -71,7 +72,7 @@ class ArchiveArticle
                if (empty($this->handler)) {
                        return;
                }
-               $User = NULL;
+               $this->api = TRUE;
                $Page = $this;
                $res = include "./{$this->handler}/index.php";
                return $res;
@@ -165,8 +166,9 @@ class ArchiveArticle
                        return ltrim($this->image, '/');
                }
                return preg_replace(
-                       ['{^(?:/thumb/[^/]*)?}', '/\.groot(?=\.\w+$)/'], ["thumb/$size", ''],
-                       $this->image
+                       ['{^(?:/thumb/[^/]*)?}', '/\.groot(?=\.\w+$)/', '/(?:\.jpg)?$/'],
+                       [      "thumb/$size",    '',                         '.jpg'    ],
+                       $this->image, 1
                );
        }