vendor/symfony/http-kernel/EventListener/ExceptionListener.php line 55

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.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 Symfony\Component\HttpKernel\EventListener;
  11. use Psr\Log\LoggerInterface;
  12. use Symfony\Component\Debug\Exception\FlattenException;
  13. use Symfony\Component\EventDispatcher\EventDispatcherInterface;
  14. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  15. use Symfony\Component\HttpFoundation\Request;
  16. use Symfony\Component\HttpKernel\Event\FilterResponseEvent;
  17. use Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent;
  18. use Symfony\Component\HttpKernel\Exception\HttpExceptionInterface;
  19. use Symfony\Component\HttpKernel\HttpKernelInterface;
  20. use Symfony\Component\HttpKernel\KernelEvents;
  21. use Symfony\Component\HttpKernel\Log\DebugLoggerInterface;
  22. /**
  23.  * ExceptionListener.
  24.  *
  25.  * @author Fabien Potencier <fabien@symfony.com>
  26.  */
  27. class ExceptionListener implements EventSubscriberInterface
  28. {
  29.     protected $controller;
  30.     protected $logger;
  31.     protected $debug;
  32.     public function __construct($controllerLoggerInterface $logger null$debug false)
  33.     {
  34.         $this->controller $controller;
  35.         $this->logger $logger;
  36.         $this->debug $debug;
  37.     }
  38.     public function onKernelException(GetResponseForExceptionEvent $event)
  39.     {
  40.         $exception $event->getException();
  41.         $request $event->getRequest();
  42.         $eventDispatcher = \func_num_args() > func_get_arg(2) : null;
  43.         $this->logException($exceptionsprintf('Uncaught PHP Exception %s: "%s" at %s line %s', \get_class($exception), $exception->getMessage(), $exception->getFile(), $exception->getLine()));
  44.         $request $this->duplicateRequest($exception$request);
  45.         try {
  46.             $response $event->getKernel()->handle($requestHttpKernelInterface::SUB_REQUESTfalse);
  47.         } catch (\Exception $e) {
  48.             $this->logException($esprintf('Exception thrown when handling an exception (%s: %s at %s line %s)', \get_class($e), $e->getMessage(), $e->getFile(), $e->getLine()));
  49.             $prev $e;
  50.             do {
  51.                 if ($exception === $wrapper $prev) {
  52.                     throw $e;
  53.                 }
  54.             } while ($prev $wrapper->getPrevious());
  55.             $prev = new \ReflectionProperty($wrapper instanceof \Exception ? \Exception::class : \Error::class, 'previous');
  56.             $prev->setAccessible(true);
  57.             $prev->setValue($wrapper$exception);
  58.             throw $e;
  59.         }
  60.         $event->setResponse($response);
  61.         if ($this->debug && $eventDispatcher instanceof EventDispatcherInterface) {
  62.             $cspRemovalListener = function (FilterResponseEvent $event) use (&$cspRemovalListener$eventDispatcher) {
  63.                 $event->getResponse()->headers->remove('Content-Security-Policy');
  64.                 $eventDispatcher->removeListener(KernelEvents::RESPONSE$cspRemovalListener);
  65.             };
  66.             $eventDispatcher->addListener(KernelEvents::RESPONSE$cspRemovalListener, -128);
  67.         }
  68.     }
  69.     public static function getSubscribedEvents()
  70.     {
  71.         return [
  72.             KernelEvents::EXCEPTION => ['onKernelException', -128],
  73.         ];
  74.     }
  75.     /**
  76.      * Logs an exception.
  77.      *
  78.      * @param \Exception $exception The \Exception instance
  79.      * @param string     $message   The error message to log
  80.      */
  81.     protected function logException(\Exception $exception$message)
  82.     {
  83.         if (null !== $this->logger) {
  84.             if (!$exception instanceof HttpExceptionInterface || $exception->getStatusCode() >= 500) {
  85.                 $this->logger->critical($message, ['exception' => $exception]);
  86.             } else {
  87.                 $this->logger->error($message, ['exception' => $exception]);
  88.             }
  89.         }
  90.     }
  91.     /**
  92.      * Clones the request for the exception.
  93.      *
  94.      * @param \Exception $exception The thrown exception
  95.      * @param Request    $request   The original request
  96.      *
  97.      * @return Request The cloned request
  98.      */
  99.     protected function duplicateRequest(\Exception $exceptionRequest $request)
  100.     {
  101.         $attributes = [
  102.             '_controller' => $this->controller,
  103.             'exception' => FlattenException::create($exception),
  104.             'logger' => $this->logger instanceof DebugLoggerInterface $this->logger null,
  105.         ];
  106.         $request $request->duplicate(nullnull$attributes);
  107.         $request->setMethod('GET');
  108.         return $request;
  109.     }
  110. }