vendor/hofff/contao-consent-core/src/ConsentBridge/HofffConsentTool.php line 476

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Hofff\Contao\Consent\Core\ConsentBridge;
  4. use Contao\ArticleModel;
  5. use Contao\ContentModel;
  6. use Contao\Controller;
  7. use Contao\CoreBundle\Asset\ContaoContext;
  8. use Contao\CoreBundle\Framework\Adapter;
  9. use Contao\LayoutModel;
  10. use Contao\Model;
  11. use Contao\ModuleModel;
  12. use Contao\PageModel;
  13. use Contao\StringUtil;
  14. use Contao\Template;
  15. use Hofff\Contao\Consent\Bridge\ConsentId;
  16. use Hofff\Contao\Consent\Bridge\ConsentTool;
  17. use Hofff\Contao\Consent\Core\Event\DetermineConsentIdByNameEvent;
  18. use Hofff\Contao\Consent\Core\Exception\RuntimeException;
  19. use Hofff\Contao\Consent\Core\Model\TagModel;
  20. use Hofff\Contao\Consent\Core\Model\TagModelRepository;
  21. use Hofff\Contao\Consent\Core\RootTagFactory;
  22. use Hofff\Contao\Consent\Core\Tag;
  23. use Hofff\Contao\Consent\Core\Tag\AssetsTag;
  24. use Hofff\Contao\Consent\Core\Tag\Root;
  25. use Hofff\Contao\Consent\Core\Tag\TagTypeRegistry;
  26. use Netzmacht\Contao\Toolkit\Data\Model\RepositoryManager;
  27. use Netzmacht\Contao\Toolkit\View\Template\TemplateRenderer;
  28. use Netzmacht\Html\Attributes;
  29. use Symfony\Component\Asset\Packages;
  30. use Symfony\Component\HttpFoundation\RequestStack;
  31. use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
  32. use Symfony\Component\Routing\RouterInterface;
  33. use Symfony\Component\WebLink\GenericLinkProvider;
  34. use Symfony\Component\WebLink\Link;
  35. use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
  36. use Throwable;
  37. use function array_filter;
  38. use function assert;
  39. use function implode;
  40. use function ksort;
  41. use function sprintf;
  42. use function strpos;
  43. use function substr;
  44. use function trim;
  45. /** @internal */
  46. final class HofffConsentTool implements ConsentTool
  47. {
  48.     /** @var RootTagFactory */
  49.     private $tagFactory;
  50.     /** @var TagTypeRegistry */
  51.     private $tagTypeRegistry;
  52.     /** @var RepositoryManager */
  53.     private $repositoryManager;
  54.     /** @var TemplateRenderer */
  55.     private $templateRenderer;
  56.     /** @var RouterInterface */
  57.     private $router;
  58.     /** @var RequestStack */
  59.     private $requestStack;
  60.     /** @var Root|null */
  61.     private $root;
  62.     /** @var EventDispatcherInterface */
  63.     private $eventDispatcher;
  64.     /** @var Adapter<Controller> */
  65.     private $controllerAdapter;
  66.     /** @var ContaoContext */
  67.     private $assetContext;
  68.     /** @var Packages */
  69.     private $packages;
  70.     /** @param Adapter<Controller> $controllerAdapter */
  71.     public function __construct(
  72.         RootTagFactory $tagFactory,
  73.         TagTypeRegistry $tagTypeRegistry,
  74.         RepositoryManager $repositoryManager,
  75.         TemplateRenderer $templateRenderer,
  76.         RouterInterface $router,
  77.         RequestStack $requestStack,
  78.         EventDispatcherInterface $eventDispatcher,
  79.         Adapter $controllerAdapter,
  80.         ContaoContext $assetContext,
  81.         Packages $packages
  82.     ) {
  83.         $this->tagFactory        $tagFactory;
  84.         $this->tagTypeRegistry   $tagTypeRegistry;
  85.         $this->repositoryManager $repositoryManager;
  86.         $this->templateRenderer  $templateRenderer;
  87.         $this->router            $router;
  88.         $this->requestStack      $requestStack;
  89.         $this->eventDispatcher   $eventDispatcher;
  90.         $this->controllerAdapter $controllerAdapter;
  91.         $this->assetContext      $assetContext;
  92.         $this->packages          $packages;
  93.     }
  94.     public function name(): string
  95.     {
  96.         return 'hofff_consent';
  97.     }
  98.     public function rootTag(): ?Root
  99.     {
  100.         return $this->root;
  101.     }
  102.     public function activate(
  103.         PageModel $rootPageModel,
  104.         ?PageModel $pageModel null,
  105.         ?LayoutModel $layoutModel null
  106.     ): bool {
  107.         try {
  108.             $root $this->tagFactory->create((int) $rootPageModel->hofff_consent_tag$rootPageModel);
  109.         } catch (Throwable $e) {
  110.             return false;
  111.         }
  112.         $masterRequest $this->requestStack->getMasterRequest();
  113.         $request       $this->requestStack->getCurrentRequest();
  114.         if (
  115.             $masterRequest
  116.             && $masterRequest === $request
  117.             && strpos((string) $masterRequest->attributes->get('_route'), 'hofff_contao_consent') !== 0
  118.             && $pageModel
  119.         ) {
  120.             $assetsUrl    $this->assetContext->getStaticUrl()
  121.                 ? substr($this->assetContext->getStaticUrl(), 0, -1)
  122.                 : $request->getSchemeAndHttpHost();
  123.             $statusScript $this->router->generate(
  124.                 'hofff_contao_consent_status',
  125.                 [
  126.                     'banner' => empty($pageModel->hofff_consent_disable),
  127.                     'pageId' => $pageModel->id,
  128.                 ],
  129.                 UrlGeneratorInterface::ABSOLUTE_URL
  130.             );
  131.             $GLOBALS['TL_HEAD']['hofff_consent_head']    = $root->headTags();
  132.             $GLOBALS['TL_HEAD']['hofff_consent_status']  = Template::generateScriptTag($statusScript);
  133.             $GLOBALS['TL_HEAD']['hofff_consent_manager'] = Template::generateScriptTag(
  134.                 $assetsUrl $this->packages->getUrl(
  135.                     'consent-manager.js',
  136.                     'hofff_contao_consent_core'
  137.                 )
  138.             );
  139.             $this->addPreloadLink($statusScript);
  140.             $this->addPreloadLink(
  141.                 $assetsUrl $this->packages->getUrl(
  142.                     'consent-manager.js',
  143.                     'hofff_contao_consent_core'
  144.                 )
  145.             );
  146.         }
  147.         if (($pageModel && $pageModel->hofff_consent_disable === 'manager')) {
  148.             return false;
  149.         }
  150.         $this->root $root;
  151.         $this->root->each(
  152.             function (Tag $tag): void {
  153.                 if (! $tag instanceof AssetsTag) {
  154.                     return;
  155.                 }
  156.                 $html trim($tag->html());
  157.                 if ($html === '') {
  158.                     return;
  159.                 }
  160.                 switch ($tag->position()) {
  161.                     case AssetsTag::POSITION_HEAD:
  162.                         $GLOBALS['TL_HEAD'][] = $this->renderRaw($html$tag->tagId());
  163.                         break;
  164.                     case AssetsTag::POSITION_BODY:
  165.                         $GLOBALS['TL_BODY'][] = $this->renderRaw($html$tag->tagId());
  166.                         break;
  167.                 }
  168.             }
  169.         );
  170.         $theme $this->root->theme();
  171.         if ($theme) {
  172.             $GLOBALS['TL_CSS']['hofff_consent_manager'] = sprintf(
  173.                 '%s|all|static',
  174.                 $this->packages->getUrl(
  175.                     sprintf('theme-%s.css'$theme),
  176.                     'hofff_contao_consent_core'
  177.                 )
  178.             );
  179.         }
  180.         return true;
  181.     }
  182.     /** @inheritDoc */
  183.     public function consentIdOptions($context null): array
  184.     {
  185.         $repository $this->repositoryManager->getRepository(TagModel::class);
  186.         assert($repository instanceof TagModelRepository);
  187.         $collection $repository->findRootTags();
  188.         if (! $collection) {
  189.             return [];
  190.         }
  191.         $options = [];
  192.         foreach ($collection as $rootTagModel) {
  193.             $this->buildOptions($options$rootTagModel$rootTagModel->name);
  194.         }
  195.         $return = [];
  196.         foreach ($options as $option) {
  197.             $label          sprintf(
  198.                 '%s [%s]',
  199.                 $option['label'],
  200.                 implode(', '$option['rootLabels'])
  201.             );
  202.             $return[$label] = $option['consentId'];
  203.         }
  204.         ksort($return);
  205.         return $return;
  206.     }
  207.     public function determineConsentIdByName(string $serviceOrTemplateName): ?ConsentId
  208.     {
  209.         $event = new DetermineConsentIdByNameEvent($serviceOrTemplateName);
  210.         $this->eventDispatcher->dispatch($event);
  211.         return $event->consentId();
  212.     }
  213.     public function requiresConsent(ConsentId $consentId): bool
  214.     {
  215.         if ($this->root === null) {
  216.             return false;
  217.         }
  218.         return $this->root->affects($consentId);
  219.     }
  220.     public function renderContent(
  221.         string $buffer,
  222.         ConsentId $consentId,
  223.         ?Model $model null,
  224.         ?string $placeholderTemplate null
  225.     ): string {
  226.         if (! $this->requiresConsent($consentId)) {
  227.             return $buffer;
  228.         }
  229.         assert($this->root instanceof Root);
  230.         $tag         $this->root->match($consentId);
  231.         $placeholder null;
  232.         $buffer      $this->replaceInsertTags($buffer);
  233.         if ($placeholderTemplate) {
  234.             $placeholder $this->templateRenderer->render(
  235.                 'fe:hofff_consent_placeholder',
  236.                 [
  237.                     'template'    => $placeholderTemplate,
  238.                     'tag'         => $tag,
  239.                     'consentId'   => $consentId,
  240.                     'content'     => $buffer,
  241.                     'model'       => $model,
  242.                 ]
  243.             );
  244.         }
  245.         return $this->templateRenderer->render(
  246.             'fe:hofff_consent_content',
  247.             [
  248.                 'tag'         => $tag,
  249.                 'consentId'   => $consentId,
  250.                 'content'     => $buffer,
  251.                 'placeholder' => $placeholder,
  252.                 'model'       => $model,
  253.                 'class'       => $this->getCssClass($model),
  254.                 'cssId'       => $this->getCssId($model),
  255.             ]
  256.         );
  257.     }
  258.     public function renderPlaceholder(string $bufferConsentId $consentId): string
  259.     {
  260.         if ($this->root === null) {
  261.             return '';
  262.         }
  263.         $tag $this->root->match($consentId);
  264.         return $this->templateRenderer->render(
  265.             'fe:hofff_consent_placeholder',
  266.             [
  267.                 'tag'       => $tag,
  268.                 'consentId' => $consentId,
  269.                 'content'   => $buffer,
  270.             ]
  271.         );
  272.     }
  273.     public function renderRaw(string $bufferConsentId $consentId, ?Model $model null): string
  274.     {
  275.         if (! $this->requiresConsent($consentId)) {
  276.             return $buffer;
  277.         }
  278.         assert($this->root instanceof Root);
  279.         $tag    $this->root->match($consentId);
  280.         $buffer $this->replaceInsertTags($buffer);
  281.         return $this->templateRenderer->render(
  282.             'fe:hofff_consent_raw',
  283.             [
  284.                 'tag'       => $tag,
  285.                 'consentId' => $consentId,
  286.                 'content'   => $buffer,
  287.             ]
  288.         );
  289.     }
  290.     public function renderScript(Attributes $attributesConsentId $consentId): string
  291.     {
  292.         $script sprintf('<script %s></script>', (string) $attributes);
  293.         if (! $this->requiresConsent($consentId)) {
  294.             return $script;
  295.         }
  296.         assert($this->root instanceof Root);
  297.         $tag $this->root->match($consentId);
  298.         return $this->templateRenderer->render(
  299.             'fe:hofff_consent_raw',
  300.             [
  301.                 'tag'       => $tag,
  302.                 'consentId' => $consentId,
  303.                 'content'   => $script,
  304.             ]
  305.         );
  306.     }
  307.     public function renderStyle(Attributes $attributesConsentId $consentId): string
  308.     {
  309.         $html sprintf('<link %s>', (string) $attributes);
  310.         if (! $this->requiresConsent($consentId)) {
  311.             return $html;
  312.         }
  313.         assert($this->root instanceof Root);
  314.         $tag $this->root->match($consentId);
  315.         return $this->templateRenderer->render(
  316.             'fe:hofff_consent_raw',
  317.             [
  318.                 'tag'       => $tag,
  319.                 'consentId' => $consentId,
  320.                 'content'   => $html,
  321.             ]
  322.         );
  323.     }
  324.     /** @param mixed[][] $options */
  325.     private function buildOptions(array &$optionsTagModel $tagModelstring $rootLabel): void
  326.     {
  327.         $repository $this->repositoryManager->getRepository(TagModel::class);
  328.         assert($repository instanceof TagModelRepository);
  329.         $collection $repository->findByPid((int) $tagModel->getLanguageId()) ?: [];
  330.         foreach ($collection as $tag) {
  331.             assert($tag instanceof TagModel);
  332.             try {
  333.                 $tagType $this->tagTypeRegistry->get($tag->type);
  334.             } catch (RuntimeException $exception) {
  335.                 continue;
  336.             }
  337.             if ($tagType->supportsAssignment()) {
  338.                 $tagId $tagType->createTagId($tag);
  339.                 $key   $tagId->toString();
  340.                 $options[$key]['consentId']    = $tagId;
  341.                 $options[$key]['label']        = $tagType->renderLabel($tag->row());
  342.                 $options[$key]['rootLabels'][] = $rootLabel;
  343.             } elseif ($tagType->supportsChildren()) {
  344.                 $this->buildOptions($options$tag$rootLabel);
  345.             }
  346.         }
  347.     }
  348.     private function getCssClass(?Model $model): string
  349.     {
  350.         $classes = [];
  351.         switch (true) {
  352.             case $model instanceof ContentModel:
  353.                 $classes[] = 'ce_' $model->type ' block';
  354.                 break;
  355.             case $model instanceof ModuleModel:
  356.                 $classes[] = 'mod_' $model->type ' block';
  357.                 break;
  358.             case $model instanceof ArticleModel:
  359.                 $classes[] = 'mod_article';
  360.                 break;
  361.             default:
  362.                 return 'block';
  363.         }
  364.         $cssId StringUtil::deserialize($model->cssIDtrue);
  365.         if (! empty($cssId[1])) {
  366.             $classes[] = trim($cssId[1]);
  367.         }
  368.         $classes[] = 'block';
  369.         return implode(' 'array_filter($classes));
  370.     }
  371.     private function getCssId(?Model $model): string
  372.     {
  373.         switch (true) {
  374.             case $model instanceof ContentModel:
  375.             case $model instanceof ModuleModel:
  376.             case $model instanceof ArticleModel:
  377.                 $cssId StringUtil::deserialize($model->cssIDtrue);
  378.                 if (! empty($cssId[0])) {
  379.                     return sprintf(' id="%s"'$cssId[0]);
  380.                 }
  381.                 // No break return empty string by default
  382.             default:
  383.                 return '';
  384.         }
  385.     }
  386.     private function addPreloadLink(string $uri): void
  387.     {
  388.         $request $this->requestStack->getMasterRequest();
  389.         if ($request === null) {
  390.             return;
  391.         }
  392.         $linkProvider $request->attributes->get('_links', new GenericLinkProvider());
  393.         if (! $linkProvider instanceof GenericLinkProvider) {
  394.             return;
  395.         }
  396.         $link = new Link('preload'$uri);
  397.         $link $link->withAttribute('as''script');
  398.         $link $link->withAttribute('nopush'true);
  399.         $request->attributes->set('_links'$linkProvider->withLink($link));
  400.     }
  401.     private function replaceInsertTags(string $buffer): string
  402.     {
  403.         return $this->controllerAdapter->replaceInsertTags(
  404.             $this->controllerAdapter->replaceInsertTags($bufferfalse)
  405.         );
  406.     }
  407. }