vendor/symfony/http-kernel/EventListener/LocaleAwareListener.php line 46

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\HttpKernel\EventListener;
  11. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  12. use Symfony\Component\HttpFoundation\Request;
  13. use Symfony\Component\HttpFoundation\RequestStack;
  14. use Symfony\Component\HttpKernel\Event\FinishRequestEvent;
  15. use Symfony\Component\HttpKernel\Event\RequestEvent;
  16. use Symfony\Component\HttpKernel\KernelEvents;
  17. use Symfony\Contracts\Translation\LocaleAwareInterface;
  18. /**
  19.  * Pass the current locale to the provided services.
  20.  *
  21.  * @author Pierre Bobiet <pierrebobiet@gmail.com>
  22.  */
  23. class LocaleAwareListener implements EventSubscriberInterface
  24. {
  25.     private $localeAwareServices;
  26.     private $requestStack;
  27.     /**
  28.      * @param LocaleAwareInterface[] $localeAwareServices
  29.      */
  30.     public function __construct(iterable $localeAwareServicesRequestStack $requestStack)
  31.     {
  32.         $this->localeAwareServices $localeAwareServices;
  33.         $this->requestStack $requestStack;
  34.     }
  35.     public function onKernelRequest(RequestEvent $event): void
  36.     {
  37.         $this->setLocale($event->getRequest()->getLocale(), $event->getRequest()->getDefaultLocale());
  38.     }
  39.     public function onKernelFinishRequest(FinishRequestEvent $event): void
  40.     {
  41.         if (null === $parentRequest $this->requestStack->getParentRequest()) {
  42.             $this->setLocale($event->getRequest()->getDefaultLocale());
  43.             return;
  44.         }
  45.         $this->setLocale($parentRequest->getLocale(), $parentRequest->getDefaultLocale());
  46.     }
  47.     public static function getSubscribedEvents()
  48.     {
  49.         return [
  50.             // must be registered after the Locale listener
  51.             KernelEvents::REQUEST => [['onKernelRequest'15]],
  52.             KernelEvents::FINISH_REQUEST => [['onKernelFinishRequest', -15]],
  53.         ];
  54.     }
  55.     private function setLocale(string $localestring $defaultLocale null): void
  56.     {
  57.         foreach ($this->localeAwareServices as $service) {
  58.             try {
  59.                 $service->setLocale($locale);
  60.             } catch (\InvalidArgumentException $e) {
  61.                 $service->setLocale($defaultLocale);
  62.             }
  63.         }
  64.     }
  65. }