src/EventListener/AuthenticationFailureListener.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\EventListener;
  3. use Lexik\Bundle\JWTAuthenticationBundle\Event\AuthenticationFailureEvent;
  4. use Lexik\Bundle\JWTAuthenticationBundle\Response\JWTAuthenticationFailureResponse;
  5. use Symfony\Component\HttpFoundation\JsonResponse;
  6. class AuthenticationFailureListener
  7. {
  8.     /**
  9.      * @param AuthenticationFailureEvent $event
  10.      */
  11.     public function onAuthenticationFailureResponse(AuthenticationFailureEvent $event)
  12.     {
  13.         if ($event->getException()->getMessage() == "Bad credentials."){
  14.             // Custom status code & error message
  15.             $code    JsonResponse::HTTP_UNAUTHORIZED;
  16.             $message "Informations d'identification incorrectes, veuillez vĂ©rifier que votre nom d'utilisateur / mot de passe est correctement saisi";
  17.     
  18.             $response = new JWTAuthenticationFailureResponse($message$code);
  19.     
  20.             $event->setResponse($response);
  21.         }
  22.     }
  23. }