vendor/netzmacht/contao-page-context/src/Request/ContaoPageContextInitializer.php line 114

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Netzmacht\Contao\PageContext\Request;
  4. use Contao\Config;
  5. use Contao\Controller;
  6. use Contao\CoreBundle\Exception\NoLayoutSpecifiedException;
  7. use Contao\CoreBundle\Framework\ContaoFramework;
  8. use Contao\CoreBundle\Image\PictureFactoryInterface;
  9. use Contao\CoreBundle\Monolog\ContaoContext;
  10. use Contao\LayoutModel;
  11. use Contao\PageModel;
  12. use Contao\PageRegular;
  13. use Contao\StringUtil;
  14. use Contao\System;
  15. use Contao\ThemeModel;
  16. use Netzmacht\Contao\Toolkit\Data\Model\RepositoryManager;
  17. use Psr\Log\LoggerInterface;
  18. use Psr\Log\LogLevel;
  19. use Symfony\Component\HttpFoundation\Request;
  20. use Symfony\Contracts\Translation\LocaleAwareInterface;
  21. use function array_merge;
  22. use function assert;
  23. use function define;
  24. use function defined;
  25. use function explode;
  26. use function is_array;
  27. use function is_string;
  28. use function str_replace;
  29. /**
  30.  * Class PageContextInitializer initialize the page context which is usually done by the Contao regular page.
  31.  */
  32. final class ContaoPageContextInitializer implements PageContextInitializer
  33. {
  34.     /**
  35.      * Default config.
  36.      *
  37.      * @var array<string,bool>
  38.      */
  39.     private $defaults = [
  40.         'BE_USER_LOGGED_IN' => false,
  41.         'FE_USER_LOGGED_IN' => false,
  42.     ];
  43.     /**
  44.      * Translator.
  45.      *
  46.      * @var LocaleAwareInterface
  47.      */
  48.     private $translator;
  49.     /**
  50.      * Contao framework.
  51.      *
  52.      * @var ContaoFramework
  53.      */
  54.     private $framework;
  55.     /**
  56.      * Picture factory.
  57.      *
  58.      * @var PictureFactoryInterface
  59.      */
  60.     private $pictureFactory;
  61.     /**
  62.      * Repository manager.
  63.      *
  64.      * @var RepositoryManager
  65.      */
  66.     private $repositoryManager;
  67.     /**
  68.      * Logger.
  69.      *
  70.      * @var LoggerInterface
  71.      */
  72.     private $logger;
  73.     /**
  74.      * @param LocaleAwareInterface    $translator        Translator.
  75.      * @param ContaoFramework         $framework         Contao framework.
  76.      * @param PictureFactoryInterface $pictureFactory    Picture factory.
  77.      * @param RepositoryManager       $repositoryManager Repository manager.
  78.      * @param LoggerInterface         $logger            Logger.
  79.      * @param array<string,bool>      $defaults          Default config to override default configs.
  80.      */
  81.     public function __construct(
  82.         LocaleAwareInterface $translator,
  83.         ContaoFramework $framework,
  84.         PictureFactoryInterface $pictureFactory,
  85.         RepositoryManager $repositoryManager,
  86.         LoggerInterface $logger,
  87.         array $defaults = []
  88.     ) {
  89.         $this->translator        $translator;
  90.         $this->framework         $framework;
  91.         $this->pictureFactory    $pictureFactory;
  92.         $this->repositoryManager $repositoryManager;
  93.         $this->logger            $logger;
  94.         $this->defaults          array_merge($this->defaults$defaults);
  95.     }
  96.     /**
  97.      * Initialize the page context.
  98.      *
  99.      * @param PageContext $context Page context.
  100.      * @param Request     $request Web request.
  101.      */
  102.     public function initialize(PageContext $contextRequest $request): void
  103.     {
  104.         $this->framework->initialize();
  105.         $this->initializeUserLoggedInConstants();
  106.         $this->initializeGlobals($context);
  107.         $this->initializeLocale($context$request);
  108.         $this->initializeStaticUrls();
  109.         $this->initializePageLayout($context);
  110.     }
  111.     /**
  112.      * Initialize user logged in constants set by default.
  113.      *
  114.      * You can't trust this constants, as only defaults values are set right now.
  115.      */
  116.     private function initializeUserLoggedInConstants(): void
  117.     {
  118.         if (! defined('BE_USER_LOGGED_IN')) {
  119.             define('BE_USER_LOGGED_IN'$this->defaults['BE_USER_LOGGED_IN']);
  120.         }
  121.         if (defined('FE_USER_LOGGED_IN')) {
  122.             return;
  123.         }
  124.         define('FE_USER_LOGGED_IN'$this->defaults['FE_USER_LOGGED_IN']);
  125.     }
  126.     /**
  127.      * Initialize globals set by Contao.
  128.      *
  129.      * @param PageContext $context The page context.
  130.      *
  131.      * @SuppressWarnings(PHPMD.Superglobals)
  132.      */
  133.     private function initializeGlobals(PageContext $context): void
  134.     {
  135.         $page $context->page();
  136.         if ($page->adminEmail !== '') {
  137.             $adminEmail $page->adminEmail;
  138.         } else {
  139.             $adminEmail $this->framework->getAdapter(Config::class)->get('adminEmail');
  140.         }
  141.         [$GLOBALS['TL_ADMIN_NAME'], $GLOBALS['TL_ADMIN_EMAIL']] = StringUtil::splitFriendlyEmail($adminEmail);
  142.         $GLOBALS['objPage']     = $page;
  143.         $GLOBALS['TL_KEYWORDS'] = '';
  144.         $GLOBALS['TL_LANGUAGE'] = $page->language;
  145.     }
  146.     /**
  147.      * Initialize the locale.
  148.      *
  149.      * @param PageContext $context Page context.
  150.      * @param Request     $request Web request.
  151.      */
  152.     private function initializeLocale(PageContext $contextRequest $request): void
  153.     {
  154.         $locale str_replace('-''_'$context->page()->language);
  155.         $request->setLocale($locale);
  156.         $this->translator->setLocale($locale);
  157.         $this->framework->getAdapter(System::class)->loadLanguageFile('default');
  158.     }
  159.     /**
  160.      * Initialize static urls.
  161.      */
  162.     private function initializeStaticUrls(): void
  163.     {
  164.         $this->framework->getAdapter(Controller::class)->setStaticUrls();
  165.     }
  166.     /**
  167.      * Initialize the page layout.
  168.      *
  169.      * @param PageContext $context Page context.
  170.      *
  171.      * @SuppressWarnings(PHPMD.Superglobals)
  172.      */
  173.     private function initializePageLayout(PageContext $context): void
  174.     {
  175.         $page        $context->page();
  176.         $layout      $this->getPageLayout($page);
  177.         $pageRegular = new PageRegular();
  178.         if (isset($GLOBALS['TL_HOOKS']['getPageLayout']) && is_array($GLOBALS['TL_HOOKS']['getPageLayout'])) {
  179.             $systemAdapter $this->framework->getAdapter(System::class);
  180.             foreach ($GLOBALS['TL_HOOKS']['getPageLayout'] as $callback) {
  181.                 $callback[0] = $systemAdapter->__call('importStatic', [$callback[0]]);
  182.                 $callback[0]->{$callback[1]}($page$layout$pageRegular);
  183.             }
  184.         }
  185.         $theme $this->repositoryManager->getRepository(ThemeModel::class)->find((int) $layout->pid);
  186.         assert($theme instanceof ThemeModel);
  187.         // Set the default image densities
  188.         $this->pictureFactory->setDefaultDensities($theme->defaultImageDensities);
  189.         // Store the layout ID
  190.         $page->layoutId $layout->id;
  191.         // Set the layout template and template group
  192.         $page->template      $layout->template ?: 'fe_page';
  193.         $page->templateGroup $theme->templates;
  194.         $doctype $layout->doctype;
  195.         if (! is_string($doctype)) {
  196.             return;
  197.         }
  198.         // Store the output format
  199.         [$strFormat$strVariant] = explode('_'$doctype);
  200.         $page->outputFormat  $strFormat;
  201.         $page->outputVariant $strVariant;
  202.     }
  203.     /**
  204.      * Get a page layout and return it as database result object
  205.      *
  206.      * @param PageModel $pageModel The page model.
  207.      *
  208.      * @throws NoLayoutSpecifiedException If no page layout could be found.
  209.      */
  210.     private function getPageLayout(PageModel $pageModel): LayoutModel
  211.     {
  212.         $layoutId    = (int) $pageModel->layout;
  213.         $layoutModel $this->repositoryManager->getRepository(LayoutModel::class)->find($layoutId);
  214.         // Die if there is no layout
  215.         if (! $layoutModel instanceof LayoutModel) {
  216.             $this->logger->log(
  217.                 LogLevel::ERROR,
  218.                 'Could not find layout ID "' $layoutId '"',
  219.                 ['contao' => new ContaoContext(__METHOD__LogLevel::ERROR)]
  220.             );
  221.             throw new NoLayoutSpecifiedException('No layout specified');
  222.         }
  223.         $pageModel->hasJQuery   $layoutModel->addJQuery;
  224.         $pageModel->hasMooTools $layoutModel->addMooTools;
  225.         return $layoutModel;
  226.     }
  227. }