]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Renderer.php
Merge remote-tracking branch 'upstream/develop' into post-thread-user
[friendica.git] / src / Core / Renderer.php
index 4dab3184c77eb956c8e20830b25b85aad56746d6..1ccad740bdecedcb3807cc454747413727a7256f 100644 (file)
@@ -23,6 +23,7 @@ namespace Friendica\Core;
 
 use Exception;
 use Friendica\DI;
+use Friendica\Network\HTTPException\InternalServerErrorException;
 use Friendica\Render\TemplateEngine;
 
 /**
@@ -50,7 +51,6 @@ class Renderer
                'sourcename' => '',
                'videowidth' => 425,
                'videoheight' => 350,
-               'force_max_items' => 0,
                'stylesheet' => '',
                'template_engine' => 'smarty3',
        ];
@@ -70,8 +70,9 @@ class Renderer
         * @param string $template
         * @param array  $vars
         * @return string
+        * @throws InternalServerErrorException
         */
-       public static function replaceMacros(string $template, array $vars)
+       public static function replaceMacros(string $template, array $vars = [])
        {
                $stamp1 = microtime(true);
 
@@ -83,11 +84,14 @@ class Renderer
                try {
                        $output = $t->replaceMacros($template, $vars);
                } catch (Exception $e) {
-                       echo "<pre><b>" . __FUNCTION__ . "</b>: " . $e->getMessage() . "</pre>";
-                       exit();
+                       DI::logger()->critical($e->getMessage(), ['template' => $template, 'vars' => $vars]);
+                       $message = is_site_admin() ?
+                               $e->getMessage() :
+                               DI::l10n()->t('Friendica can\'t display this page at the moment, please contact the administrator.');
+                       throw new InternalServerErrorException($message);
                }
 
-               DI::profiler()->saveTimestamp($stamp1, "rendering", System::callstack());
+               DI::profiler()->saveTimestamp($stamp1, "rendering");
 
                return $output;
        }
@@ -99,7 +103,7 @@ class Renderer
         * @param string $subDir Subdirectory (Optional)
         *
         * @return string template.
-        * @throws Exception
+        * @throws InternalServerErrorException
         */
        public static function getMarkupTemplate($file, $subDir = '')
        {
@@ -109,11 +113,14 @@ class Renderer
                try {
                        $template = $t->getTemplateFile($file, $subDir);
                } catch (Exception $e) {
-                       echo "<pre><b>" . __FUNCTION__ . "</b>: " . $e->getMessage() . "</pre>";
-                       exit();
+                       DI::logger()->critical($e->getMessage(), ['file' => $file, 'subDir' => $subDir]);
+                       $message = is_site_admin() ?
+                               $e->getMessage() :
+                               DI::l10n()->t('Friendica can\'t display this page at the moment, please contact the administrator.');
+                       throw new InternalServerErrorException($message);
                }
 
-               DI::profiler()->saveTimestamp($stamp1, "file", System::callstack());
+               DI::profiler()->saveTimestamp($stamp1, "file");
 
                return $template;
        }
@@ -122,6 +129,7 @@ class Renderer
         * Register template engine class
         *
         * @param string $class
+        * @throws InternalServerErrorException
         */
        public static function registerTemplateEngine($class)
        {
@@ -131,8 +139,12 @@ class Renderer
                        $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 = is_site_admin() ?
+                               $admin_message :
+                               DI::l10n()->t('Friendica can\'t display this page at the moment, please contact the administrator.');
+                       throw new InternalServerErrorException($message);
                }
        }
 
@@ -143,6 +155,7 @@ class Renderer
         * or default
         *
         * @return TemplateEngine Template Engine instance
+        * @throws InternalServerErrorException
         */
        public static function getTemplateEngine()
        {
@@ -160,8 +173,12 @@ class Renderer
                        }
                }
 
-               echo "template engine <tt>$template_engine</tt> is not registered!\n";
-               exit();
+               $admin_message = DI::l10n()->t('template engine is not registered!');
+               DI::logger()->critical($admin_message, ['template_engine' => $template_engine]);
+               $message = is_site_admin() ?
+                       $admin_message :
+                       DI::l10n()->t('Friendica can\'t display this page at the moment, please contact the administrator.');
+               throw new InternalServerErrorException($message);
        }
 
        /**