src/EventSubscriber/ApiExceptionSubscriber.php line 41

Open in your IDE?
  1. <?php
  2. // src/EventSubscriber/ExceptionSubscriber.php
  3. namespace App\EventSubscriber;
  4. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  5. use Symfony\Component\HttpFoundation\JsonResponse;
  6. use Symfony\Component\HttpKernel\Event\ExceptionEvent;
  7. use Symfony\Component\HttpKernel\KernelEvents;
  8. class ApiExceptionSubscriber implements EventSubscriberInterface
  9. {
  10.     public static function getSubscribedEvents()
  11.     {
  12.         // return the subscribed events, their methods and priorities
  13.         return [
  14.             KernelEvents::EXCEPTION => [
  15.                 ['processApiException'10],
  16.                 ['logException'0],
  17.                 ['notifyException', -10],
  18.             ],
  19.         ];
  20.     }
  21.     public function processApiException(ExceptionEvent $event)
  22.     {
  23.         $request $event->getRequest();
  24.         $route $request->getPathInfo();
  25.         $exception $event->getThrowable();
  26.         if(str_starts_with($route'/api/') && false === str_starts_with($route'/api/doc') && $exception->getMessage()) {
  27.             $response = new JsonResponse([
  28.               'error' => $exception->getMessage(),
  29.             ]);
  30.             $event->setResponse($response);
  31.         }
  32.     }
  33.     public function logException(ExceptionEvent $event)
  34.     {
  35.         // ...
  36.     }
  37.     public function notifyException(ExceptionEvent $event)
  38.     {
  39.         // ...
  40.     }
  41. }