vendor/netzmacht/contao-toolkit/src/View/Template/DelegatingTemplateRenderer.php line 47

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Netzmacht\Contao\Toolkit\View\Template;
  4. use Netzmacht\Contao\Toolkit\Exception\InvalidArgumentException;
  5. use Netzmacht\Contao\Toolkit\Exception\RuntimeException;
  6. use Twig\Environment;
  7. use function preg_match;
  8. use function sprintf;
  9. use function substr;
  10. /**
  11.  * Class DelegatingTemplateRenderer support Twig and Contao templates and delegates the rendering to the engines.
  12.  */
  13. final class DelegatingTemplateRenderer implements TemplateRenderer
  14. {
  15.     /**
  16.      * The Contao template factory.
  17.      *
  18.      * @var TemplateFactory
  19.      */
  20.     private $templateFactory;
  21.     /**
  22.      * The twig environment.
  23.      *
  24.      * @var Environment|null
  25.      */
  26.     private $twig;
  27.     /**
  28.      * @param TemplateFactory  $templateFactory The template factory.
  29.      * @param Environment|null $twig            The twig environment. If twig is not activated it's null.
  30.      */
  31.     public function __construct(TemplateFactory $templateFactory, ?Environment $twig null)
  32.     {
  33.         $this->templateFactory $templateFactory;
  34.         $this->twig            $twig;
  35.     }
  36.     /**
  37.      * {@inheritDoc}
  38.      */
  39.     public function render(string $name, array $parameters = []): string
  40.     {
  41.         if (substr($name, -5) === '.twig') {
  42.             return $this->renderTwigTemplate($name$parameters);
  43.         }
  44.         return $this->renderContaoTemplate($name$parameters);
  45.     }
  46.     /**
  47.      * Render a twig template.
  48.      *
  49.      * @param string              $name       The template name.
  50.      * @param array<string,mixed> $parameters The parameters.
  51.      *
  52.      * @throws RuntimeException When twig is not available.
  53.      */
  54.     private function renderTwigTemplate(string $name, array $parameters): string
  55.     {
  56.         if ($this->twig === null) {
  57.             throw new RuntimeException('Twig is not available');
  58.         }
  59.         return $this->twig->render($name$parameters);
  60.     }
  61.     /**
  62.      * Render a Contao template.
  63.      *
  64.      * @param string              $name       The template name.
  65.      * @param array<string,mixed> $parameters The parameters.
  66.      *
  67.      * @throws InvalidArgumentException When an unsupported template name is given.
  68.      */
  69.     private function renderContaoTemplate(string $name, array $parameters): string
  70.     {
  71.         [$scope$templateName] = $this->extractScopeAndTemplateName($name);
  72.         switch ($scope) {
  73.             case 'fe':
  74.                 return $this->templateFactory->createFrontendTemplate($templateName$parameters)->parse();
  75.             case 'be':
  76.                 return $this->templateFactory->createBackendTemplate($templateName$parameters)->parse();
  77.             default:
  78.                 throw new InvalidArgumentException(sprintf('Template scope "%s" is not supported'$scope));
  79.         }
  80.     }
  81.     /**
  82.      * Extract the scope and template name from the whole template reference.
  83.      *
  84.      * @param string $name The template reference.
  85.      *
  86.      * @return list<string>
  87.      *
  88.      * @throws InvalidArgumentException When an unsupported template name is given.
  89.      */
  90.     private function extractScopeAndTemplateName(string $name): array
  91.     {
  92.         if (! preg_match('/^(toolkit:)?(be|fe):([^.]+)(\.html5)?$/'$name$matches)) {
  93.             throw new InvalidArgumentException(sprintf('Template name "%s" is not supported'$name));
  94.         }
  95.         return [$matches[2], $matches[3]];
  96.     }
  97. }