vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php line 68

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <[email protected]>
  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;
  11. use Symfony\Component\HttpKernel\Controller\ArgumentResolver;
  12. use Symfony\Component\HttpKernel\Controller\ArgumentResolverInterface;
  13. use Symfony\Component\HttpKernel\Controller\ControllerResolverInterface;
  14. use Symfony\Component\HttpKernel\Event\FilterControllerArgumentsEvent;
  15. use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
  16. use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
  17. use Symfony\Component\HttpKernel\Exception\HttpExceptionInterface;
  18. use Symfony\Component\HttpKernel\Event\FilterControllerEvent;
  19. use Symfony\Component\HttpKernel\Event\FilterResponseEvent;
  20. use Symfony\Component\HttpKernel\Event\FinishRequestEvent;
  21. use Symfony\Component\HttpKernel\Event\GetResponseEvent;
  22. use Symfony\Component\HttpKernel\Event\GetResponseForControllerResultEvent;
  23. use Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent;
  24. use Symfony\Component\HttpKernel\Event\PostResponseEvent;
  25. use Symfony\Component\HttpFoundation\Exception\RequestExceptionInterface;
  26. use Symfony\Component\HttpFoundation\Request;
  27. use Symfony\Component\HttpFoundation\RequestStack;
  28. use Symfony\Component\HttpFoundation\Response;
  29. use Symfony\Component\EventDispatcher\EventDispatcherInterface;
  30. /**
  31.  * HttpKernel notifies events to convert a Request object to a Response one.
  32.  *
  33.  * @author Fabien Potencier <[email protected]>
  34.  */
  35. class HttpKernel implements HttpKernelInterfaceTerminableInterface
  36. {
  37.     protected $dispatcher;
  38.     protected $resolver;
  39.     protected $requestStack;
  40.     private $argumentResolver;
  41.     public function __construct(EventDispatcherInterface $dispatcherControllerResolverInterface $resolverRequestStack $requestStack nullArgumentResolverInterface $argumentResolver null)
  42.     {
  43.         $this->dispatcher $dispatcher;
  44.         $this->resolver $resolver;
  45.         $this->requestStack $requestStack ?: new RequestStack();
  46.         $this->argumentResolver $argumentResolver;
  47.         if (null === $this->argumentResolver) {
  48.             @trigger_error(sprintf('As of 3.1 an %s is used to resolve arguments. In 4.0 the $argumentResolver becomes the %s if no other is provided instead of using the $resolver argument.'ArgumentResolverInterface::class, ArgumentResolver::class), E_USER_DEPRECATED);
  49.             // fallback in case of deprecations
  50.             $this->argumentResolver $resolver;
  51.         }
  52.     }
  53.     /**
  54.      * {@inheritdoc}
  55.      */
  56.     public function handle(Request $request$type HttpKernelInterface::MASTER_REQUEST$catch true)
  57.     {
  58.         $request->headers->set('X-Php-Ob-Level'ob_get_level());
  59.         try {
  60.             return $this->handleRaw($request$type);
  61.         } catch (\Exception $e) {
  62.             if ($e instanceof RequestExceptionInterface) {
  63.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  64.             }
  65.             if (false === $catch) {
  66.                 $this->finishRequest($request$type);
  67.                 throw $e;
  68.             }
  69.             return $this->handleException($e$request$type);
  70.         }
  71.     }
  72.     /**
  73.      * {@inheritdoc}
  74.      */
  75.     public function terminate(Request $requestResponse $response)
  76.     {
  77.         $this->dispatcher->dispatch(KernelEvents::TERMINATE, new PostResponseEvent($this$request$response));
  78.     }
  79.     /**
  80.      * @throws \LogicException If the request stack is empty
  81.      *
  82.      * @internal
  83.      */
  84.     public function terminateWithException(\Exception $exception)
  85.     {
  86.         if (!$request $this->requestStack->getMasterRequest()) {
  87.             throw new \LogicException('Request stack is empty'0$exception);
  88.         }
  89.         $response $this->handleException($exception$requestself::MASTER_REQUEST);
  90.         $response->sendHeaders();
  91.         $response->sendContent();
  92.         $this->terminate($request$response);
  93.     }
  94.     /**
  95.      * Handles a request to convert it to a response.
  96.      *
  97.      * Exceptions are not caught.
  98.      *
  99.      * @param Request $request A Request instance
  100.      * @param int     $type    The type of the request (one of HttpKernelInterface::MASTER_REQUEST or HttpKernelInterface::SUB_REQUEST)
  101.      *
  102.      * @return Response A Response instance
  103.      *
  104.      * @throws \LogicException       If one of the listener does not behave as expected
  105.      * @throws NotFoundHttpException When controller cannot be found
  106.      */
  107.     private function handleRaw(Request $request$type self::MASTER_REQUEST)
  108.     {
  109.         $this->requestStack->push($request);
  110.         // request
  111.         $event = new GetResponseEvent($this$request$type);
  112.         $this->dispatcher->dispatch(KernelEvents::REQUEST$event);
  113.         if ($event->hasResponse()) {
  114.             return $this->filterResponse($event->getResponse(), $request$type);
  115.         }
  116.         // load controller
  117.         if (false === $controller $this->resolver->getController($request)) {
  118.             throw new NotFoundHttpException(sprintf('Unable to find the controller for path "%s". The route is wrongly configured.'$request->getPathInfo()));
  119.         }
  120.         $event = new FilterControllerEvent($this$controller$request$type);
  121.         $this->dispatcher->dispatch(KernelEvents::CONTROLLER$event);
  122.         $controller $event->getController();
  123.         // controller arguments
  124.         $arguments $this->argumentResolver->getArguments($request$controller);
  125.         $event = new FilterControllerArgumentsEvent($this$controller$arguments$request$type);
  126.         $this->dispatcher->dispatch(KernelEvents::CONTROLLER_ARGUMENTS$event);
  127.         $controller $event->getController();
  128.         $arguments $event->getArguments();
  129.         // call controller
  130.         $response call_user_func_array($controller$arguments);
  131.         // view
  132.         if (!$response instanceof Response) {
  133.             $event = new GetResponseForControllerResultEvent($this$request$type$response);
  134.             $this->dispatcher->dispatch(KernelEvents::VIEW$event);
  135.             if ($event->hasResponse()) {
  136.                 $response $event->getResponse();
  137.             }
  138.             if (!$response instanceof Response) {
  139.                 $msg sprintf('The controller must return a response (%s given).'$this->varToString($response));
  140.                 // the user may have forgotten to return something
  141.                 if (null === $response) {
  142.                     $msg .= ' Did you forget to add a return statement somewhere in your controller?';
  143.                 }
  144.                 throw new \LogicException($msg);
  145.             }
  146.         }
  147.         return $this->filterResponse($response$request$type);
  148.     }
  149.     /**
  150.      * Filters a response object.
  151.      *
  152.      * @param Response $response A Response instance
  153.      * @param Request  $request  An error message in case the response is not a Response object
  154.      * @param int      $type     The type of the request (one of HttpKernelInterface::MASTER_REQUEST or HttpKernelInterface::SUB_REQUEST)
  155.      *
  156.      * @return Response The filtered Response instance
  157.      *
  158.      * @throws \RuntimeException if the passed object is not a Response instance
  159.      */
  160.     private function filterResponse(Response $responseRequest $request$type)
  161.     {
  162.         $event = new FilterResponseEvent($this$request$type$response);
  163.         $this->dispatcher->dispatch(KernelEvents::RESPONSE$event);
  164.         $this->finishRequest($request$type);
  165.         return $event->getResponse();
  166.     }
  167.     /**
  168.      * Publishes the finish request event, then pop the request from the stack.
  169.      *
  170.      * Note that the order of the operations is important here, otherwise
  171.      * operations such as {@link RequestStack::getParentRequest()} can lead to
  172.      * weird results.
  173.      *
  174.      * @param Request $request
  175.      * @param int     $type
  176.      */
  177.     private function finishRequest(Request $request$type)
  178.     {
  179.         $this->dispatcher->dispatch(KernelEvents::FINISH_REQUEST, new FinishRequestEvent($this$request$type));
  180.         $this->requestStack->pop();
  181.     }
  182.     /**
  183.      * Handles an exception by trying to convert it to a Response.
  184.      *
  185.      * @param \Exception $e       An \Exception instance
  186.      * @param Request    $request A Request instance
  187.      * @param int        $type    The type of the request
  188.      *
  189.      * @return Response A Response instance
  190.      *
  191.      * @throws \Exception
  192.      */
  193.     private function handleException(\Exception $e$request$type)
  194.     {
  195.         $event = new GetResponseForExceptionEvent($this$request$type$e);
  196.         $this->dispatcher->dispatch(KernelEvents::EXCEPTION$event);
  197.         // a listener might have replaced the exception
  198.         $e $event->getException();
  199.         if (!$event->hasResponse()) {
  200.             $this->finishRequest($request$type);
  201.             throw $e;
  202.         }
  203.         $response $event->getResponse();
  204.         // the developer asked for a specific status code
  205.         if ($response->headers->has('X-Status-Code')) {
  206.             @trigger_error(sprintf('Using the X-Status-Code header is deprecated since version 3.3 and will be removed in 4.0. Use %s::allowCustomResponseCode() instead.'GetResponseForExceptionEvent::class), E_USER_DEPRECATED);
  207.             $response->setStatusCode($response->headers->get('X-Status-Code'));
  208.             $response->headers->remove('X-Status-Code');
  209.         } elseif (!$event->isAllowingCustomResponseCode() && !$response->isClientError() && !$response->isServerError() && !$response->isRedirect()) {
  210.             // ensure that we actually have an error response
  211.             if ($e instanceof HttpExceptionInterface) {
  212.                 // keep the HTTP status code and headers
  213.                 $response->setStatusCode($e->getStatusCode());
  214.                 $response->headers->add($e->getHeaders());
  215.             } else {
  216.                 $response->setStatusCode(500);
  217.             }
  218.         }
  219.         try {
  220.             return $this->filterResponse($response$request$type);
  221.         } catch (\Exception $e) {
  222.             return $response;
  223.         }
  224.     }
  225.     private function varToString($var)
  226.     {
  227.         if (is_object($var)) {
  228.             return sprintf('Object(%s)'get_class($var));
  229.         }
  230.         if (is_array($var)) {
  231.             $a = array();
  232.             foreach ($var as $k => $v) {
  233.                 $a[] = sprintf('%s => %s'$k$this->varToString($v));
  234.             }
  235.             return sprintf('Array(%s)'implode(', '$a));
  236.         }
  237.         if (is_resource($var)) {
  238.             return sprintf('Resource(%s)'get_resource_type($var));
  239.         }
  240.         if (null === $var) {
  241.             return 'null';
  242.         }
  243.         if (false === $var) {
  244.             return 'false';
  245.         }
  246.         if (true === $var) {
  247.             return 'true';
  248.         }
  249.         return (string) $var;
  250.     }
  251. }