vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Fragment/FragmentHandler.php line 87

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\Fragment;
  11. use Symfony\Component\HttpFoundation\RequestStack;
  12. use Symfony\Component\HttpFoundation\Response;
  13. use Symfony\Component\HttpFoundation\StreamedResponse;
  14. use Symfony\Component\HttpKernel\Controller\ControllerReference;
  15. /**
  16.  * Renders a URI that represents a resource fragment.
  17.  *
  18.  * This class handles the rendering of resource fragments that are included into
  19.  * a main resource. The handling of the rendering is managed by specialized renderers.
  20.  *
  21.  * @author Fabien Potencier <fabien@symfony.com>
  22.  *
  23.  * @see FragmentRendererInterface
  24.  */
  25. class FragmentHandler
  26. {
  27.     private $debug;
  28.     private $renderers = [];
  29.     private $requestStack;
  30.     /**
  31.      * @param RequestStack                $requestStack The Request stack that controls the lifecycle of requests
  32.      * @param FragmentRendererInterface[] $renderers    An array of FragmentRendererInterface instances
  33.      * @param bool                        $debug        Whether the debug mode is enabled or not
  34.      */
  35.     public function __construct(RequestStack $requestStack, array $renderers = [], $debug false)
  36.     {
  37.         $this->requestStack $requestStack;
  38.         foreach ($renderers as $renderer) {
  39.             $this->addRenderer($renderer);
  40.         }
  41.         $this->debug $debug;
  42.     }
  43.     /**
  44.      * Adds a renderer.
  45.      */
  46.     public function addRenderer(FragmentRendererInterface $renderer)
  47.     {
  48.         $this->renderers[$renderer->getName()] = $renderer;
  49.     }
  50.     /**
  51.      * Renders a URI and returns the Response content.
  52.      *
  53.      * Available options:
  54.      *
  55.      *  * ignore_errors: true to return an empty string in case of an error
  56.      *
  57.      * @param string|ControllerReference $uri      A URI as a string or a ControllerReference instance
  58.      * @param string                     $renderer The renderer name
  59.      * @param array                      $options  An array of options
  60.      *
  61.      * @return string|null The Response content or null when the Response is streamed
  62.      *
  63.      * @throws \InvalidArgumentException when the renderer does not exist
  64.      * @throws \LogicException           when no master request is being handled
  65.      */
  66.     public function render($uri$renderer 'inline', array $options = [])
  67.     {
  68.         if (!isset($options['ignore_errors'])) {
  69.             $options['ignore_errors'] = !$this->debug;
  70.         }
  71.         if (!isset($this->renderers[$renderer])) {
  72.             throw new \InvalidArgumentException(sprintf('The "%s" renderer does not exist.'$renderer));
  73.         }
  74.         if (!$request $this->requestStack->getCurrentRequest()) {
  75.             throw new \LogicException('Rendering a fragment can only be done when handling a Request.');
  76.         }
  77.         return $this->deliver($this->renderers[$renderer]->render($uri$request$options));
  78.     }
  79.     /**
  80.      * Delivers the Response as a string.
  81.      *
  82.      * When the Response is a StreamedResponse, the content is streamed immediately
  83.      * instead of being returned.
  84.      *
  85.      * @return string|null The Response content or null when the Response is streamed
  86.      *
  87.      * @throws \RuntimeException when the Response is not successful
  88.      */
  89.     protected function deliver(Response $response)
  90.     {
  91.         if (!$response->isSuccessful()) {
  92.             throw new \RuntimeException(sprintf('Error when rendering "%s" (Status code is %d).'$this->requestStack->getCurrentRequest()->getUri(), $response->getStatusCode()));
  93.         }
  94.         if (!$response instanceof StreamedResponse) {
  95.             return $response->getContent();
  96.         }
  97.         $response->sendContent();
  98.         return null;
  99.     }
  100. }