vendor/symfony/twig-bundle/Controller/ExceptionController.php line 54

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\Bundle\TwigBundle\Controller;
  11. use Symfony\Component\Debug\Exception\FlattenException;
  12. use Symfony\Component\HttpFoundation\Request;
  13. use Symfony\Component\HttpFoundation\Response;
  14. use Symfony\Component\HttpKernel\Log\DebugLoggerInterface;
  15. use Twig\Environment;
  16. use Twig\Error\LoaderError;
  17. use Twig\Loader\ExistsLoaderInterface;
  18. /**
  19.  * ExceptionController renders error or exception pages for a given
  20.  * FlattenException.
  21.  *
  22.  * @author Fabien Potencier <fabien@symfony.com>
  23.  * @author Matthias Pigulla <mp@webfactory.de>
  24.  */
  25. class ExceptionController
  26. {
  27.     protected $twig;
  28.     protected $debug;
  29.     /**
  30.      * @param bool $debug Show error (false) or exception (true) pages by default
  31.      */
  32.     public function __construct(Environment $twigbool $debug)
  33.     {
  34.         $this->twig $twig;
  35.         $this->debug $debug;
  36.     }
  37.     /**
  38.      * Converts an Exception to a Response.
  39.      *
  40.      * A "showException" request parameter can be used to force display of an error page (when set to false) or
  41.      * the exception page (when true). If it is not present, the "debug" value passed into the constructor will
  42.      * be used.
  43.      *
  44.      * @return Response
  45.      *
  46.      * @throws \InvalidArgumentException When the exception template does not exist
  47.      */
  48.     public function showAction(Request $requestFlattenException $exceptionDebugLoggerInterface $logger null)
  49.     {
  50.         $currentContent $this->getAndCleanOutputBuffering($request->headers->get('X-Php-Ob-Level', -1));
  51.         $showException $request->attributes->get('showException'$this->debug); // As opposed to an additional parameter, this maintains BC
  52.         $code $exception->getStatusCode();
  53.         return new Response($this->twig->render(
  54.             (string) $this->findTemplate($request$request->getRequestFormat(), $code$showException),
  55.             [
  56.                 'status_code' => $code,
  57.                 'status_text' => isset(Response::$statusTexts[$code]) ? Response::$statusTexts[$code] : '',
  58.                 'exception' => $exception,
  59.                 'logger' => $logger,
  60.                 'currentContent' => $currentContent,
  61.             ]
  62.         ), 200, ['Content-Type' => $request->getMimeType($request->getRequestFormat()) ?: 'text/html']);
  63.     }
  64.     /**
  65.      * @param int $startObLevel
  66.      *
  67.      * @return string
  68.      */
  69.     protected function getAndCleanOutputBuffering($startObLevel)
  70.     {
  71.         if (ob_get_level() <= $startObLevel) {
  72.             return '';
  73.         }
  74.         Response::closeOutputBuffers($startObLevel 1true);
  75.         return ob_get_clean();
  76.     }
  77.     /**
  78.      * @param string $format
  79.      * @param int    $code          An HTTP response status code
  80.      * @param bool   $showException
  81.      *
  82.      * @return string
  83.      */
  84.     protected function findTemplate(Request $request$format$code$showException)
  85.     {
  86.         $name $showException 'exception' 'error';
  87.         if ($showException && 'html' == $format) {
  88.             $name 'exception_full';
  89.         }
  90.         // For error pages, try to find a template for the specific HTTP status code and format
  91.         if (!$showException) {
  92.             $template sprintf('@Twig/Exception/%s%s.%s.twig'$name$code$format);
  93.             if ($this->templateExists($template)) {
  94.                 return $template;
  95.             }
  96.         }
  97.         // try to find a template for the given format
  98.         $template sprintf('@Twig/Exception/%s.%s.twig'$name$format);
  99.         if ($this->templateExists($template)) {
  100.             return $template;
  101.         }
  102.         // default to a generic HTML exception
  103.         $request->setRequestFormat('html');
  104.         return sprintf('@Twig/Exception/%s.html.twig'$showException 'exception_full' $name);
  105.     }
  106.     // to be removed when the minimum required version of Twig is >= 3.0
  107.     protected function templateExists($template)
  108.     {
  109.         $template = (string) $template;
  110.         $loader $this->twig->getLoader();
  111.         if ($loader instanceof ExistsLoaderInterface || method_exists($loader'exists')) {
  112.             return $loader->exists($template);
  113.         }
  114.         try {
  115.             $loader->getSourceContext($template)->getCode();
  116.             return true;
  117.         } catch (LoaderError $e) {
  118.         }
  119.         return false;
  120.     }
  121. }