]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Renderer.php
Merge pull request #11520 from annando/display-polls
[friendica.git] / src / Core / Renderer.php
index 67bc5e3babc515a6377d9b013a6e20d018d349b5..29bbb2b89491f83fdd63bfd554108bf5f7eeb65b 100644 (file)
 <?php
 /**
- * @file src/Core/Renderer.php
+ * @copyright Copyright (C) 2010-2022, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
  */
 
 namespace Friendica\Core;
 
 use Exception;
-use Friendica\BaseObject;
-use Friendica\Render\FriendicaSmarty;
-use Friendica\Render\ITemplateEngine;
+use Friendica\DI;
+use Friendica\Network\HTTPException\ServiceUnavailableException;
+use Friendica\Render\TemplateEngine;
 
 /**
- * @brief This class handles Renderer related functions.
+ * This class handles Renderer related functions.
  */
-class Renderer extends BaseObject
+class Renderer
 {
-    /**
-        * @brief An array of registered template engines ('name'=>'class name')
+       /**
+        * An array of registered template engines ('name'=>'class name')
         */
-    public static $template_engines = [];
+       public static $template_engines = [];
 
-    /**
-        * @brief An array of instanced template engines ('name'=>'instance')
+       /**
+        * An array of instanced template engines ('name'=>'instance')
         */
        public static $template_engine_instance = [];
 
-    /**
-        * @brief An array for all theme-controllable parameters
+       /**
+        * An array for all theme-controllable parameters
         *
         * Mostly unimplemented yet. Only options 'template_engine' and
         * beyond are used.
         */
        public static $theme = [
-               'sourcename' => '',
                'videowidth' => 425,
                'videoheight' => 350,
-               'force_max_items' => 0,
                'stylesheet' => '',
                'template_engine' => 'smarty3',
        ];
-    
-    private static $ldelim = [
+
+       private static $ldelim = [
                'internal' => '',
                'smarty3' => '{{'
        ];
        private static $rdelim = [
                'internal' => '',
                'smarty3' => '}}'
-    ];
+       ];
 
        /**
-        * @brief This is our template processor
-        *
-        * @param string|FriendicaSmarty $s    The string requiring macro substitution or an instance of FriendicaSmarty
-        * @param array                  $vars key value pairs (search => replace)
+        * Returns the rendered template output from the template string and variables
         *
-        * @return string substituted string
-        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        * @param string $template
+        * @param array  $vars
+        * @return string
+        * @throws ServiceUnavailableException
         */
-    public static function replaceMacros($s, $vars)
-    {
-        $stamp1 = microtime(true);
-        $a = self::getApp();
+       public static function replaceMacros(string $template, array $vars = [])
+       {
+               DI::profiler()->startRecording('rendering');
 
-        // pass $baseurl to all templates
-        $vars['$baseurl'] = System::baseUrl();
-        $t = self::getTemplateEngine();
+               // pass $baseurl to all templates if it isn't set
+               $vars = array_merge(['$baseurl' => DI::baseUrl()->get(), '$APP' => DI::app()], $vars);
 
-        try {
-            $output = $t->replaceMacros($s, $vars);
-        } catch (Exception $e) {
-            echo "<pre><b>" . __FUNCTION__ . "</b>: " . $e->getMessage() . "</pre>";
-            exit();
-        }
+               $t = self::getTemplateEngine();
 
-        $a->saveTimestamp($stamp1, "rendering");
+               try {
+                       $output = $t->replaceMacros($template, $vars);
+               } catch (Exception $e) {
+                       DI::logger()->critical($e->getMessage(), ['template' => $template, 'vars' => $vars]);
+                       $message = DI::app()->isSiteAdmin() ?
+                               $e->getMessage() :
+                               DI::l10n()->t('Friendica can\'t display this page at the moment, please contact the administrator.');
+                       throw new ServiceUnavailableException($message);
+               }
 
-        return $output;
-    }
+               DI::profiler()->stopRecording();
+
+               return $output;
+       }
 
        /**
-        * @brief Load a given template $s
+        * Load a given template $s
         *
-        * @param string $   Template to load.
-        * @param string $root Optional.
+        * @param string $file   Template to load.
+        * @param string $subDir Subdirectory (Optional)
         *
         * @return string template.
-        * @throws Exception
+        * @throws ServiceUnavailableException
         */
-    public static function getMarkupTemplate($s, $root = '')
-    {
-        $stamp1 = microtime(true);
-        $a = self::getApp();
-        $t = self::getTemplateEngine();
-
-        try {
-            $template = $t->getTemplateFile($s, $root);
-        } catch (Exception $e) {
-            echo "<pre><b>" . __FUNCTION__ . "</b>: " . $e->getMessage() . "</pre>";
-            exit();
-        }
-
-        $a->saveTimestamp($stamp1, "file");
-
-        return $template;
-    }
-
-    /**
-        * @brief Register template engine class
+       public static function getMarkupTemplate($file, $subDir = '')
+       {
+               DI::profiler()->startRecording('file');
+               $t = self::getTemplateEngine();
+
+               try {
+                       $template = $t->getTemplateFile($file, $subDir);
+               } catch (Exception $e) {
+                       DI::logger()->critical($e->getMessage(), ['file' => $file, 'subDir' => $subDir]);
+                       $message = DI::app()->isSiteAdmin() ?
+                               $e->getMessage() :
+                               DI::l10n()->t('Friendica can\'t display this page at the moment, please contact the administrator.');
+                       throw new ServiceUnavailableException($message);
+               }
+
+               DI::profiler()->stopRecording();
+
+               return $template;
+       }
+
+       /**
+        * Register template engine class
         *
         * @param string $class
+        * @throws ServiceUnavailableException
         */
        public static function registerTemplateEngine($class)
        {
-        $v = get_class_vars($class);
-        
-        if (!empty($v['name']))
-        {
+               $v = get_class_vars($class);
+
+               if (!empty($v['name'])) {
                        $name = $v['name'];
                        self::$template_engines[$name] = $class;
                } else {
-                       echo "template engine <tt>$class</tt> cannot be registered without a name.\n";
-                       die();
+                       $admin_message = DI::l10n()->t('template engine cannot be registered without a name.');
+                       DI::logger()->critical($admin_message, ['class' => $class]);
+                       $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);
                }
        }
 
        /**
-        * @brief Return template engine instance.
+        * Return template engine instance.
         *
         * If $name is not defined, return engine defined by theme,
         * or default
         *
-        * @return ITemplateEngine Template Engine instance
+        * @return TemplateEngine Template Engine instance
+        * @throws ServiceUnavailableException
         */
        public static function getTemplateEngine()
        {
-               $template_engine = defaults(self::$theme, 'template_engine', 'smarty3');
+               $template_engine = (self::$theme['template_engine'] ?? '') ?: 'smarty3';
 
                if (isset(self::$template_engines[$template_engine])) {
                        if (isset(self::$template_engine_instance[$template_engine])) {
                                return self::$template_engine_instance[$template_engine];
                        } else {
+                               $a = DI::app();
                                $class = self::$template_engines[$template_engine];
-                               $obj = new $class;
+                               $obj = new $class($a->getCurrentTheme(), $a->getThemeInfo());
                                self::$template_engine_instance[$template_engine] = $obj;
                                return $obj;
                        }
                }
 
-               echo "template engine <tt>$template_engine</tt> is not registered!\n";
-               exit();
-    }
-    
-    /**
-        * @brief Returns the active template engine.
+               $admin_message = DI::l10n()->t('template engine is not registered!');
+               DI::logger()->critical($admin_message, ['template_engine' => $template_engine]);
+               $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);
+       }
+
+       /**
+        * Returns the active template engine.
         *
         * @return string the active template engine
         */
@@ -172,7 +200,7 @@ class Renderer extends BaseObject
                self::$theme['template_engine'] = $engine;
        }
 
-    /**
+       /**
         * Gets the right delimiter for a template engine
         *
         * Currently: