src/Domain/User/Symfony/EventSubscriber/Kernel/ExceptionSubscriber.php line 49

Open in your IDE?
  1. <?php
  2. /**
  3.  * This file is part of the MADIS - RGPD Management application.
  4.  *
  5.  * @copyright Copyright (c) 2018-2019 Soluris - Solutions Numériques Territoriales Innovantes
  6.  * @author ANODE <contact@agence-anode.fr>
  7.  *
  8.  * This program is free software: you can redistribute it and/or modify
  9.  * it under the terms of the GNU Affero General Public License as published by
  10.  * the Free Software Foundation, either version 3 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU Affero General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU Affero General Public License
  19.  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  20.  */
  21. declare(strict_types=1);
  22. namespace App\Domain\User\Symfony\EventSubscriber\Kernel;
  23. use App\Application\Controller\ControllerHelper;
  24. use App\Domain\User\Exception\ExceededLoginAttemptsException;
  25. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  26. use Symfony\Component\HttpKernel\Event\ExceptionEvent;
  27. use Symfony\Component\HttpKernel\KernelEvents;
  28. class ExceptionSubscriber implements EventSubscriberInterface
  29. {
  30.     private ControllerHelper $helper;
  31.     public function __construct(ControllerHelper $helper)
  32.     {
  33.         $this->helper $helper;
  34.     }
  35.     public static function getSubscribedEvents(): array
  36.     {
  37.         return [
  38.             KernelEvents::EXCEPTION => 'onException',
  39.         ];
  40.     }
  41.     public function onException(ExceptionEvent $event)
  42.     {
  43.         if ($event->getThrowable() instanceof ExceededLoginAttemptsException) {
  44.             $view $this->helper->render('User/Security/locked.html.twig');
  45.             $event->setResponse($view);
  46.         }
  47.     }
  48. }