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