]> git.mxchange.org Git - friendica.git/blobdiff - src/Render/FriendicaSmartyEngine.php
Merge remote-tracking branch 'upstream/develop' into conversation-receivers
[friendica.git] / src / Render / FriendicaSmartyEngine.php
index 6984daa15871e41c4b4079f1eddc3989fec95a61..6fc8f4480676eb892583c7f113968ff2bd4fc243 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -23,56 +23,84 @@ namespace Friendica\Render;
 
 use Friendica\Core\Hook;
 use Friendica\DI;
+use Friendica\Network\HTTPException\ServiceUnavailableException;
+use Friendica\Util\Strings;
 
 /**
- * Smarty implementation of the Friendica template engine interface
+ * Smarty implementation of the Friendica template abstraction
  */
-class FriendicaSmartyEngine implements ITemplateEngine
+final class FriendicaSmartyEngine extends TemplateEngine
 {
        static $name = "smarty3";
 
-       public function __construct()
+       const FILE_PREFIX = 'file:';
+       const STRING_PREFIX = 'string:';
+
+       /** @var FriendicaSmarty */
+       private $smarty;
+
+       /**
+        * @inheritDoc
+        */
+       public function __construct(string $theme, array $theme_info)
        {
-               if (!is_writable(__DIR__ . '/../../view/smarty3/')) {
-                       echo "<b>ERROR:</b> folder <tt>view/smarty3/</tt> must be writable by webserver.";
-                       exit();
+               $this->theme = $theme;
+               $this->theme_info = $theme_info;
+               $this->smarty = new FriendicaSmarty($this->theme, $this->theme_info);
+
+               if (!is_writable(DI::basePath() . '/view/smarty3')) {
+                       $admin_message = DI::l10n()->t('The folder view/smarty3/ must be writable by webserver.');
+                       DI::logger()->critical($admin_message);
+                       $message = DI::app()->isSiteAdmin() ?
+                               $admin_message :
+                               DI::l10n()->t('Friendica can\'t display this page at the moment, please contact the administrator.');
+                       throw new ServiceUnavailableException($message);
                }
        }
 
-       // ITemplateEngine interface
-       public function replaceMacros($s, $r)
+       /**
+        * @inheritDoc
+        */
+       public function testInstall(array &$errors = null)
        {
-               $template = '';
-               if (gettype($s) === 'string') {
-                       $template = $s;
-                       $s = new FriendicaSmarty();
-               }
+               $this->smarty->testInstall($errors);
+       }
 
-               $r['$APP'] = DI::app();
+       /**
+        * @inheritDoc
+        */
+       public function replaceMacros(string $template, array $vars)
+       {
+               if (!Strings::startsWith($template, self::FILE_PREFIX)) {
+                       $template = self::STRING_PREFIX . $template;
+               }
 
                // "middleware": inject variables into templates
                $arr = [
-                       "template" => basename($s->filename),
-                       "vars" => $r
+                       'template' => basename($this->smarty->filename),
+                       'vars' => $vars
                ];
-               Hook::callAll("template_vars", $arr);
-               $r = $arr['vars'];
+               Hook::callAll('template_vars', $arr);
+               $vars = $arr['vars'];
+
+               $this->smarty->clearAllAssign();
 
-               foreach ($r as $key => $value) {
+               foreach ($vars as $key => $value) {
                        if ($key[0] === '$') {
                                $key = substr($key, 1);
                        }
 
-                       $s->assign($key, $value);
+                       $this->smarty->assign($key, $value);
                }
-               return $s->parsed($template);
+
+               return $this->smarty->fetch($template);
        }
 
-       public function getTemplateFile($file, $subDir = '')
+       /**
+        * @inheritDoc
+        */
+       public function getTemplateFile(string $file, string $subDir = '')
        {
-               $a = DI::app();
-               $template = new FriendicaSmarty();
-
                // Make sure $root ends with a slash /
                if ($subDir !== '' && substr($subDir, -1, 1) !== '/') {
                        $subDir = $subDir . '/';
@@ -80,21 +108,20 @@ class FriendicaSmartyEngine implements ITemplateEngine
 
                $root = DI::basePath() . '/' . $subDir;
 
-               $theme = $a->getCurrentTheme();
-               $filename = $template::SMARTY3_TEMPLATE_FOLDER . '/' . $file;
+               $filename = $this->smarty::SMARTY3_TEMPLATE_FOLDER . '/' . $file;
 
-               if (file_exists("{$root}view/theme/$theme/$filename")) {
-                       $template_file = "{$root}view/theme/$theme/$filename";
-               } elseif (!empty($a->theme_info['extends']) && file_exists(sprintf('%sview/theme/%s}/%s', $root, $a->theme_info['extends'], $filename))) {
-                       $template_file = sprintf('%sview/theme/%s}/%s', $root, $a->theme_info['extends'], $filename);
+               if (file_exists("{$root}view/theme/$this->theme/$filename")) {
+                       $template_file = "{$root}view/theme/$this->theme/$filename";
+               } elseif (!empty($this->theme_info['extends']) && file_exists(sprintf('%sview/theme/%s}/%s', $root, $this->theme_info['extends'], $filename))) {
+                       $template_file = sprintf('%sview/theme/%s}/%s', $root, $this->theme_info['extends'], $filename);
                } elseif (file_exists("{$root}/$filename")) {
                        $template_file = "{$root}/$filename";
                } else {
                        $template_file = "{$root}view/$filename";
                }
 
-               $template->filename = $template_file;
+               $this->smarty->filename = $template_file;
 
-               return $template;
+               return self::FILE_PREFIX . $template_file;
        }
 }