vendor/symfony/symfony/src/Symfony/Component/HttpKernel/EventListener/ValidateRequestListener.php line 28

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 Symfony\Component\EventDispatcher\EventSubscriberInterface;
  12. use Symfony\Component\HttpKernel\Event\GetResponseEvent;
  13. use Symfony\Component\HttpKernel\KernelEvents;
  14. /**
  15.  * Validates Requests.
  16.  *
  17.  * @author Magnus Nordlander <magnus@fervo.se>
  18.  */
  19. class ValidateRequestListener implements EventSubscriberInterface
  20. {
  21.     /**
  22.      * Performs the validation.
  23.      */
  24.     public function onKernelRequest(GetResponseEvent $event)
  25.     {
  26.         if (!$event->isMasterRequest()) {
  27.             return;
  28.         }
  29.         $request $event->getRequest();
  30.         if ($request::getTrustedProxies()) {
  31.             $request->getClientIps();
  32.         }
  33.         $request->getHost();
  34.     }
  35.     /**
  36.      * {@inheritdoc}
  37.      */
  38.     public static function getSubscribedEvents()
  39.     {
  40.         return array(
  41.             KernelEvents::REQUEST => array(
  42.                 array('onKernelRequest'256),
  43.             ),
  44.         );
  45.     }
  46. }