src/EventListener/AuthenticationSuccessEventListener.php line 41

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the API Platform project.
  4.  *
  5.  * (c) Kévin Dunglas <dunglas@gmail.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. declare(strict_types=1);
  11. namespace App\EventListener;
  12. use ReflectionClass;
  13. use App\Entity\Compteur;
  14. use App\Entity\Utilisateur;
  15. use App\Annotation\ReferencedAttribute;
  16. use Symfony\Component\Security\Core\Security;
  17. use Doctrine\Persistence\Event\LifecycleEventArgs;
  18. use Symfony\Component\HttpFoundation\RequestStack;
  19. use Symfony\Component\PropertyAccess\PropertyAccess;
  20. use Symfony\Component\Security\Core\User\UserInterface;
  21. use Lexik\Bundle\JWTAuthenticationBundle\Event\AuthenticationSuccessEvent;
  22. /**
  23.  * Listerner for referenced the collection by range.
  24.  *
  25.  * @author Lee Siong Chan <ahlee2326@me.com>
  26.  */
  27. class AuthenticationSuccessEventListener
  28. {
  29.     /**
  30.      * @param RequestStack $requestStack
  31.      */
  32.     public function __construct(private RequestStack $requestStack, private Security $security)
  33.     {
  34.     }
  35.     public function onAuthenticationSuccessResponse(AuthenticationSuccessEvent $event)
  36.     {
  37.         $data $event->getData();
  38.         $user Utilisateur::cast($event->getUser());
  39.         if (!$user instanceof UserInterface) {
  40.             return;
  41.         }
  42.         $data['data'] = array(
  43.             'roles' => $user->getRoles(),
  44.             'noms' => $user->getNoms(),
  45.             'compte' => $user->getCompte()
  46.         );
  47.         $event->setData($data);
  48.     }
  49. }