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

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\HttpFoundation\Response;
  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.  * @author Fabien Potencier <fabien@symfony.com>
  24.  *
  25.  * @final since Symfony 4.3
  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 logKernelException(GetResponseForExceptionEvent $event)
  39.     {
  40.         $e FlattenException::create($event->getException());
  41.         $this->logException($event->getException(), sprintf('Uncaught PHP Exception %s: "%s" at %s line %s'$e->getClass(), $e->getMessage(), $e->getFile(), $e->getLine()));
  42.     }
  43.     public function onKernelException(GetResponseForExceptionEvent $event)
  44.     {
  45.         if (null === $this->controller) {
  46.             return;
  47.         }
  48.         $exception $event->getException();
  49.         $request $this->duplicateRequest($exception$event->getRequest());
  50.         $eventDispatcher = \func_num_args() > func_get_arg(2) : null;
  51.         try {
  52.             $response $event->getKernel()->handle($requestHttpKernelInterface::SUB_REQUESTfalse);
  53.         } catch (\Exception $e) {
  54.             $f FlattenException::create($e);
  55.             $this->logException($esprintf('Exception thrown when handling an exception (%s: %s at %s line %s)'$f->getClass(), $f->getMessage(), $e->getFile(), $e->getLine()));
  56.             $prev $e;
  57.             do {
  58.                 if ($exception === $wrapper $prev) {
  59.                     throw $e;
  60.                 }
  61.             } while ($prev $wrapper->getPrevious());
  62.             $prev = new \ReflectionProperty($wrapper instanceof \Exception ? \Exception::class : \Error::class, 'previous');
  63.             $prev->setAccessible(true);
  64.             $prev->setValue($wrapper$exception);
  65.             throw $e;
  66.         }
  67.         $event->setResponse($response);
  68.         if ($this->debug && $eventDispatcher instanceof EventDispatcherInterface) {
  69.             $cspRemovalListener = function ($event) use (&$cspRemovalListener$eventDispatcher) {
  70.                 $event->getResponse()->headers->remove('Content-Security-Policy');
  71.                 $eventDispatcher->removeListener(KernelEvents::RESPONSE$cspRemovalListener);
  72.             };
  73.             $eventDispatcher->addListener(KernelEvents::RESPONSE$cspRemovalListener, -128);
  74.         }
  75.     }
  76.     public static function getSubscribedEvents()
  77.     {
  78.         return [
  79.             KernelEvents::EXCEPTION => [
  80.                 ['logKernelException'0],
  81.                 ['onKernelException', -128],
  82.             ],
  83.         ];
  84.     }
  85.     /**
  86.      * Logs an exception.
  87.      *
  88.      * @param \Exception $exception The \Exception instance
  89.      * @param string     $message   The error message to log
  90.      */
  91.     protected function logException(\Exception $exception$message)
  92.     {
  93.         if (null !== $this->logger) {
  94.             if (!$exception instanceof HttpExceptionInterface || $exception->getStatusCode() >= 500) {
  95.                 $this->logger->critical($message, ['exception' => $exception]);
  96.             } else {
  97.                 $this->logger->error($message, ['exception' => $exception]);
  98.             }
  99.         }
  100.     }
  101.     /**
  102.      * Clones the request for the exception.
  103.      *
  104.      * @param \Exception $exception The thrown exception
  105.      * @param Request    $request   The original request
  106.      *
  107.      * @return Request The cloned request
  108.      */
  109.     protected function duplicateRequest(\Exception $exceptionRequest $request)
  110.     {
  111.         $attributes = [
  112.             '_controller' => $this->controller,
  113.             'exception' => FlattenException::create($exception),
  114.             'logger' => $this->logger instanceof DebugLoggerInterface $this->logger null,
  115.         ];
  116.         $request $request->duplicate(nullnull$attributes);
  117.         $request->setMethod('GET');
  118.         return $request;
  119.     }
  120. }