vendor/friendsofsymfony/user-bundle/EventListener/FlashListener.php line 73

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the FOSUserBundle package.
  4.  *
  5.  * (c) FriendsOfSymfony <http://friendsofsymfony.github.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 FOS\UserBundle\EventListener;
  11. use FOS\UserBundle\FOSUserEvents;
  12. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  13. use Symfony\Component\HttpFoundation\RequestStack;
  14. use Symfony\Component\HttpFoundation\Session\Session;
  15. use Symfony\Contracts\EventDispatcher\Event;
  16. use Symfony\Contracts\Translation\TranslatorInterface;
  17. /**
  18.  * @internal
  19.  *
  20.  * @final
  21.  */
  22. class FlashListener implements EventSubscriberInterface
  23. {
  24.     /**
  25.      * @var string[]
  26.      */
  27.     private static $successMessages = [
  28.         FOSUserEvents::CHANGE_PASSWORD_COMPLETED => 'change_password.flash.success',
  29.         FOSUserEvents::PROFILE_EDIT_COMPLETED => 'profile.flash.updated',
  30.         FOSUserEvents::REGISTRATION_COMPLETED => 'registration.flash.user_created',
  31.         FOSUserEvents::RESETTING_RESET_COMPLETED => 'resetting.flash.success',
  32.     ];
  33.     /**
  34.      * @var RequestStack
  35.      */
  36.     private $requestStack;
  37.     /**
  38.      * @var TranslatorInterface
  39.      */
  40.     private $translator;
  41.     /**
  42.      * FlashListener constructor.
  43.      */
  44.     public function __construct(RequestStack $requestStackTranslatorInterface $translator)
  45.     {
  46.         $this->translator $translator;
  47.         $this->requestStack $requestStack;
  48.     }
  49.     /**
  50.      * {@inheritdoc}
  51.      */
  52.     public static function getSubscribedEvents(): array
  53.     {
  54.         return [
  55.             FOSUserEvents::CHANGE_PASSWORD_COMPLETED => 'addSuccessFlash',
  56.             FOSUserEvents::PROFILE_EDIT_COMPLETED => 'addSuccessFlash',
  57.             FOSUserEvents::REGISTRATION_COMPLETED => 'addSuccessFlash',
  58.             FOSUserEvents::RESETTING_RESET_COMPLETED => 'addSuccessFlash',
  59.         ];
  60.     }
  61.     /**
  62.      * @param string $eventName
  63.      */
  64.     public function addSuccessFlash(Event $event$eventName)
  65.     {
  66.         if (!isset(self::$successMessages[$eventName])) {
  67.             throw new \InvalidArgumentException('This event does not correspond to a known flash message');
  68.         }
  69.         $this->getSession()->getFlashBag()->add('success'$this->trans(self::$successMessages[$eventName]));
  70.     }
  71.     private function getSession(): Session
  72.     {
  73.         $request $this->requestStack->getCurrentRequest();
  74.         if (null === $request) {
  75.             throw new \LogicException('Cannot get the session without an active request.');
  76.         }
  77.         return $request->getSession();
  78.     }
  79.     /**
  80.      * @param string $message
  81.      */
  82.     private function trans($message, array $params = []): string
  83.     {
  84.         return $this->translator->trans($message$params'FOSUserBundle');
  85.     }
  86. }