src/EventSubscriber/RedirectToPreferredLocaleSubscriber.php line 64

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 App\EventSubscriber;
  11. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  12. use Symfony\Component\HttpFoundation\RedirectResponse;
  13. use Symfony\Component\HttpKernel\Event\RequestEvent;
  14. use Symfony\Component\HttpKernel\KernelEvents;
  15. use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
  16. use function Symfony\Component\String\u;
  17. /**
  18.  * When visiting the homepage, this listener redirects the user to the most
  19.  * appropriate localized version according to the browser settings.
  20.  *
  21.  * See https://symfony.com/doc/current/components/http_kernel.html#the-kernel-request-event
  22.  *
  23.  * @author Oleg Voronkovich <oleg-voronkovich@yandex.ru>
  24.  */
  25. class RedirectToPreferredLocaleSubscriber implements EventSubscriberInterface
  26. {
  27.     private array $locales;
  28.     private string $defaultLocale;
  29.     public function __construct(
  30.         private UrlGeneratorInterface $urlGenerator,
  31.         string $locales,
  32.         ?string $defaultLocale null
  33.     ) {
  34.         $this->locales explode('|'trim($locales));
  35.         if (empty($this->locales)) {
  36.             throw new \UnexpectedValueException('The list of supported locales must not be empty.');
  37.         }
  38.         $this->defaultLocale $defaultLocale ?: $this->locales[0];
  39.         if (!\in_array($this->defaultLocale$this->localestrue)) {
  40.             throw new \UnexpectedValueException(sprintf('The default locale ("%s") must be one of "%s".'$this->defaultLocale$locales));
  41.         }
  42.         // Add the default locale at the first position of the array,
  43.         // because Symfony\HttpFoundation\Request::getPreferredLanguage
  44.         // returns the first element when no an appropriate language is found
  45.         array_unshift($this->locales$this->defaultLocale);
  46.         $this->locales array_unique($this->locales);
  47.     }
  48.     public static function getSubscribedEvents(): array
  49.     {
  50.         return [
  51.             KernelEvents::REQUEST => 'onKernelRequest',
  52.         ];
  53.     }
  54.     public function onKernelRequest(RequestEvent $event): void
  55.     {
  56.         $request $event->getRequest();
  57.         // Ignore sub-requests and all URLs but the homepage
  58.         if (!$event->isMainRequest() || '/' !== $request->getPathInfo()) {
  59.             return;
  60.         }
  61.         // Ignore requests from referrers with the same HTTP host in order to prevent
  62.         // changing language for users who possibly already selected it for this application.
  63.         $referrer $request->headers->get('referer');
  64.         if (null !== $referrer && u($referrer)->ignoreCase()->startsWith($request->getSchemeAndHttpHost())) {
  65.             return;
  66.         }
  67.         $preferredLanguage $request->getPreferredLanguage($this->locales);
  68.         if ($preferredLanguage !== $this->defaultLocale) {
  69.             $response = new RedirectResponse($this->urlGenerator->generate('homepage', ['_locale' => $preferredLanguage]));
  70.             $event->setResponse($response);
  71.         }
  72.     }
  73. }