custom/plugins/CrehlerMetaRobots/src/Subscriber/StorefrontRenderSubscriber.php line 42

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. /**
  3.  * @copyright 2020 Crehler Sp. z o. o. <https://crehler.com>
  4.  *
  5.  * @author    Jakub MedyƄski <jme@crehler.com>
  6.  * @support   Crehler <support@crehler.com>
  7.  * @created   20 mar 2020
  8.  *
  9.  * For the full copyright and license information, please view the LICENSE
  10.  * file that was distributed with this source code.
  11.  */
  12. namespace Crehler\MetaRobots\Subscriber;
  13. use Shopware\Core\System\SystemConfig\SystemConfigService;
  14. use Shopware\Storefront\Event\StorefrontRenderEvent;
  15. use Shopware\Storefront\Page\Page;
  16. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  17. class StorefrontRenderSubscriber implements EventSubscriberInterface
  18. {
  19.     /** @var string  */
  20.     private const DAYS_STR ' days';
  21.     /** @var SystemConfigService */
  22.     private $systemConfigService;
  23.     public function __construct(SystemConfigService $systemConfigService)
  24.     {
  25.         $this->systemConfigService $systemConfigService;
  26.     }
  27.     public static function getSubscribedEvents(): array
  28.     {
  29.         return [
  30.             StorefrontRenderEvent::class => 'onStorefrontRender'
  31.         ];
  32.     }
  33.     public function onStorefrontRender(StorefrontRenderEvent $event): void
  34.     {
  35.         if (!array_key_exists('page'$event->getParameters())) {
  36.             return;
  37.         }
  38.         /** @var Page $page */
  39.         $page $event->getParameters()['page'];
  40.         if ($page === null || !method_exists($page'getMetaInformation') || $page->getMetaInformation() === null) {
  41.             return;
  42.         }
  43.         $robotsConfig $this->systemConfigService->get('CrehlerMetaRobots.config'$event->getSalesChannelContext()->getSalesChannel()->getId());
  44.         $robotsConfig['revisit'] = isset($robotsConfig['revisit']) ? $robotsConfig['revisit'] . self::DAYS_STR $page->getMetaInformation()->getRevisit();
  45.         $page->getMetaInformation()->setRobots($robotsConfig['robots'] ?? $page->getMetaInformation()->getRobots());
  46.         $page->getMetaInformation()->setRobots($robotsConfig['customRobots'] ?? $page->getMetaInformation()->getRobots());
  47.         $page->getMetaInformation()->setRevisit($robotsConfig['revisit']);
  48.     }
  49. }