vendor/symfony/http-kernel/EventListener/LocaleListener.php line 52

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\GetResponseEvent;
  16. use Symfony\Component\HttpKernel\KernelEvents;
  17. use Symfony\Component\Routing\RequestContextAwareInterface;
  18. /**
  19.  * Initializes the locale based on the current request.
  20.  *
  21.  * @author Fabien Potencier <fabien@symfony.com>
  22.  */
  23. class LocaleListener implements EventSubscriberInterface {
  24.     private $router;
  25.     private $defaultLocale;
  26.     private $requestStack;
  27.     /**
  28.      * @param RequestStack                      $requestStack  A RequestStack instance
  29.      * @param string                            $defaultLocale The default locale
  30.      * @param RequestContextAwareInterface|null $router        The router
  31.      */
  32.     public function __construct(RequestStack $requestStackstring $defaultLocale 'en'RequestContextAwareInterface $router null) {
  33.         $this->defaultLocale $defaultLocale;
  34.         $this->requestStack $requestStack;
  35.         $this->router $router;
  36.     }
  37.     public function onKernelRequest(GetResponseEvent $event) {
  38.         $request $event->getRequest();
  39.         $request->setDefaultLocale($this->defaultLocale);
  40.         $this->setLocale($request);
  41.         $this->setRouterContext($request);
  42.     }
  43.     public function onKernelFinishRequest(FinishRequestEvent $event) {
  44.         if (null !== $parentRequest $this->requestStack->getParentRequest()) {
  45.             $this->setRouterContext($parentRequest);
  46.         }
  47.     }
  48.     private function setLocale(Request $request) {
  49.         if ($locale $request->attributes->get('_locale')) {
  50.             $request->setLocale($locale);
  51.         }
  52.     }
  53.     private function setRouterContext(Request $request) {
  54.         if (null !== $this->router) {
  55.             $this->router->getContext()->setParameter('_locale'$request->getLocale());
  56.         }
  57.     }
  58.     public static function getSubscribedEvents() {
  59.         return [
  60.             // must be registered after the Router to have access to the _locale
  61.             KernelEvents::REQUEST => [['onKernelRequest'16]],
  62.             KernelEvents::FINISH_REQUEST => [['onKernelFinishRequest'0]],
  63.         ];
  64.     }
  65. }