vendor/symfony/http-foundation/Request.php line 39

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\HttpFoundation;
  11. use Symfony\Component\HttpFoundation\Exception\ConflictingHeadersException;
  12. use Symfony\Component\HttpFoundation\Exception\SuspiciousOperationException;
  13. use Symfony\Component\HttpFoundation\Session\SessionInterface;
  14. // Help opcache.preload discover always-needed symbols
  15. class_exists(AcceptHeader::class);
  16. class_exists(FileBag::class);
  17. class_exists(HeaderBag::class);
  18. class_exists(HeaderUtils::class);
  19. class_exists(ParameterBag::class);
  20. class_exists(ServerBag::class);
  21. /**
  22.  * Request represents an HTTP request.
  23.  *
  24.  * The methods dealing with URL accept / return a raw path (% encoded):
  25.  *   * getBasePath
  26.  *   * getBaseUrl
  27.  *   * getPathInfo
  28.  *   * getRequestUri
  29.  *   * getUri
  30.  *   * getUriForPath
  31.  *
  32.  * @author Fabien Potencier <fabien@symfony.com>
  33.  */
  34. class Request
  35. {
  36.     const HEADER_FORWARDED 0b00001// When using RFC 7239
  37.     const HEADER_X_FORWARDED_FOR 0b00010;
  38.     const HEADER_X_FORWARDED_HOST 0b00100;
  39.     const HEADER_X_FORWARDED_PROTO 0b01000;
  40.     const HEADER_X_FORWARDED_PORT 0b10000;
  41.     const HEADER_X_FORWARDED_ALL 0b11110// All "X-Forwarded-*" headers
  42.     const HEADER_X_FORWARDED_AWS_ELB 0b11010// AWS ELB doesn't send X-Forwarded-Host
  43.     const METHOD_HEAD 'HEAD';
  44.     const METHOD_GET 'GET';
  45.     const METHOD_POST 'POST';
  46.     const METHOD_PUT 'PUT';
  47.     const METHOD_PATCH 'PATCH';
  48.     const METHOD_DELETE 'DELETE';
  49.     const METHOD_PURGE 'PURGE';
  50.     const METHOD_OPTIONS 'OPTIONS';
  51.     const METHOD_TRACE 'TRACE';
  52.     const METHOD_CONNECT 'CONNECT';
  53.     /**
  54.      * @var string[]
  55.      */
  56.     protected static $trustedProxies = [];
  57.     /**
  58.      * @var string[]
  59.      */
  60.     protected static $trustedHostPatterns = [];
  61.     /**
  62.      * @var string[]
  63.      */
  64.     protected static $trustedHosts = [];
  65.     protected static $httpMethodParameterOverride false;
  66.     /**
  67.      * Custom parameters.
  68.      *
  69.      * @var ParameterBag
  70.      */
  71.     public $attributes;
  72.     /**
  73.      * Request body parameters ($_POST).
  74.      *
  75.      * @var ParameterBag
  76.      */
  77.     public $request;
  78.     /**
  79.      * Query string parameters ($_GET).
  80.      *
  81.      * @var ParameterBag
  82.      */
  83.     public $query;
  84.     /**
  85.      * Server and execution environment parameters ($_SERVER).
  86.      *
  87.      * @var ServerBag
  88.      */
  89.     public $server;
  90.     /**
  91.      * Uploaded files ($_FILES).
  92.      *
  93.      * @var FileBag
  94.      */
  95.     public $files;
  96.     /**
  97.      * Cookies ($_COOKIE).
  98.      *
  99.      * @var ParameterBag
  100.      */
  101.     public $cookies;
  102.     /**
  103.      * Headers (taken from the $_SERVER).
  104.      *
  105.      * @var HeaderBag
  106.      */
  107.     public $headers;
  108.     /**
  109.      * @var string|resource|false|null
  110.      */
  111.     protected $content;
  112.     /**
  113.      * @var array
  114.      */
  115.     protected $languages;
  116.     /**
  117.      * @var array
  118.      */
  119.     protected $charsets;
  120.     /**
  121.      * @var array
  122.      */
  123.     protected $encodings;
  124.     /**
  125.      * @var array
  126.      */
  127.     protected $acceptableContentTypes;
  128.     /**
  129.      * @var string
  130.      */
  131.     protected $pathInfo;
  132.     /**
  133.      * @var string
  134.      */
  135.     protected $requestUri;
  136.     /**
  137.      * @var string
  138.      */
  139.     protected $baseUrl;
  140.     /**
  141.      * @var string
  142.      */
  143.     protected $basePath;
  144.     /**
  145.      * @var string
  146.      */
  147.     protected $method;
  148.     /**
  149.      * @var string
  150.      */
  151.     protected $format;
  152.     /**
  153.      * @var SessionInterface
  154.      */
  155.     protected $session;
  156.     /**
  157.      * @var string
  158.      */
  159.     protected $locale;
  160.     /**
  161.      * @var string
  162.      */
  163.     protected $defaultLocale 'en';
  164.     /**
  165.      * @var array
  166.      */
  167.     protected static $formats;
  168.     protected static $requestFactory;
  169.     /**
  170.      * @var string|null
  171.      */
  172.     private $preferredFormat;
  173.     private $isHostValid true;
  174.     private $isForwardedValid true;
  175.     private static $trustedHeaderSet = -1;
  176.     private static $forwardedParams = [
  177.         self::HEADER_X_FORWARDED_FOR => 'for',
  178.         self::HEADER_X_FORWARDED_HOST => 'host',
  179.         self::HEADER_X_FORWARDED_PROTO => 'proto',
  180.         self::HEADER_X_FORWARDED_PORT => 'host',
  181.     ];
  182.     /**
  183.      * Names for headers that can be trusted when
  184.      * using trusted proxies.
  185.      *
  186.      * The FORWARDED header is the standard as of rfc7239.
  187.      *
  188.      * The other headers are non-standard, but widely used
  189.      * by popular reverse proxies (like Apache mod_proxy or Amazon EC2).
  190.      */
  191.     private static $trustedHeaders = [
  192.         self::HEADER_FORWARDED => 'FORWARDED',
  193.         self::HEADER_X_FORWARDED_FOR => 'X_FORWARDED_FOR',
  194.         self::HEADER_X_FORWARDED_HOST => 'X_FORWARDED_HOST',
  195.         self::HEADER_X_FORWARDED_PROTO => 'X_FORWARDED_PROTO',
  196.         self::HEADER_X_FORWARDED_PORT => 'X_FORWARDED_PORT',
  197.     ];
  198.     /**
  199.      * @param array                $query      The GET parameters
  200.      * @param array                $request    The POST parameters
  201.      * @param array                $attributes The request attributes (parameters parsed from the PATH_INFO, ...)
  202.      * @param array                $cookies    The COOKIE parameters
  203.      * @param array                $files      The FILES parameters
  204.      * @param array                $server     The SERVER parameters
  205.      * @param string|resource|null $content    The raw body data
  206.      */
  207.     public function __construct(array $query = [], array $request = [], array $attributes = [], array $cookies = [], array $files = [], array $server = [], $content null)
  208.     {
  209.         $this->initialize($query$request$attributes$cookies$files$server$content);
  210.     }
  211.     /**
  212.      * Sets the parameters for this request.
  213.      *
  214.      * This method also re-initializes all properties.
  215.      *
  216.      * @param array                $query      The GET parameters
  217.      * @param array                $request    The POST parameters
  218.      * @param array                $attributes The request attributes (parameters parsed from the PATH_INFO, ...)
  219.      * @param array                $cookies    The COOKIE parameters
  220.      * @param array                $files      The FILES parameters
  221.      * @param array                $server     The SERVER parameters
  222.      * @param string|resource|null $content    The raw body data
  223.      */
  224.     public function initialize(array $query = [], array $request = [], array $attributes = [], array $cookies = [], array $files = [], array $server = [], $content null)
  225.     {
  226.         $this->request = new ParameterBag($request);
  227.         $this->query = new ParameterBag($query);
  228.         $this->attributes = new ParameterBag($attributes);
  229.         $this->cookies = new ParameterBag($cookies);
  230.         $this->files = new FileBag($files);
  231.         $this->server = new ServerBag($server);
  232.         $this->headers = new HeaderBag($this->server->getHeaders());
  233.         $this->content $content;
  234.         $this->languages null;
  235.         $this->charsets null;
  236.         $this->encodings null;
  237.         $this->acceptableContentTypes null;
  238.         $this->pathInfo null;
  239.         $this->requestUri null;
  240.         $this->baseUrl null;
  241.         $this->basePath null;
  242.         $this->method null;
  243.         $this->format null;
  244.     }
  245.     /**
  246.      * Creates a new request with values from PHP's super globals.
  247.      *
  248.      * @return static
  249.      */
  250.     public static function createFromGlobals()
  251.     {
  252.         $request self::createRequestFromFactory($_GET$_POST, [], $_COOKIE$_FILES$_SERVER);
  253.         if (=== strpos($request->headers->get('CONTENT_TYPE'), 'application/x-www-form-urlencoded')
  254.             && \in_array(strtoupper($request->server->get('REQUEST_METHOD''GET')), ['PUT''DELETE''PATCH'])
  255.         ) {
  256.             parse_str($request->getContent(), $data);
  257.             $request->request = new ParameterBag($data);
  258.         }
  259.         return $request;
  260.     }
  261.     /**
  262.      * Creates a Request based on a given URI and configuration.
  263.      *
  264.      * The information contained in the URI always take precedence
  265.      * over the other information (server and parameters).
  266.      *
  267.      * @param string               $uri        The URI
  268.      * @param string               $method     The HTTP method
  269.      * @param array                $parameters The query (GET) or request (POST) parameters
  270.      * @param array                $cookies    The request cookies ($_COOKIE)
  271.      * @param array                $files      The request files ($_FILES)
  272.      * @param array                $server     The server parameters ($_SERVER)
  273.      * @param string|resource|null $content    The raw body data
  274.      *
  275.      * @return static
  276.      */
  277.     public static function create(string $uristring $method 'GET', array $parameters = [], array $cookies = [], array $files = [], array $server = [], $content null)
  278.     {
  279.         $server array_replace([
  280.             'SERVER_NAME' => 'localhost',
  281.             'SERVER_PORT' => 80,
  282.             'HTTP_HOST' => 'localhost',
  283.             'HTTP_USER_AGENT' => 'Symfony',
  284.             'HTTP_ACCEPT' => 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
  285.             'HTTP_ACCEPT_LANGUAGE' => 'en-us,en;q=0.5',
  286.             'HTTP_ACCEPT_CHARSET' => 'ISO-8859-1,utf-8;q=0.7,*;q=0.7',
  287.             'REMOTE_ADDR' => '127.0.0.1',
  288.             'SCRIPT_NAME' => '',
  289.             'SCRIPT_FILENAME' => '',
  290.             'SERVER_PROTOCOL' => 'HTTP/1.1',
  291.             'REQUEST_TIME' => time(),
  292.         ], $server);
  293.         $server['PATH_INFO'] = '';
  294.         $server['REQUEST_METHOD'] = strtoupper($method);
  295.         $components parse_url($uri);
  296.         if (isset($components['host'])) {
  297.             $server['SERVER_NAME'] = $components['host'];
  298.             $server['HTTP_HOST'] = $components['host'];
  299.         }
  300.         if (isset($components['scheme'])) {
  301.             if ('https' === $components['scheme']) {
  302.                 $server['HTTPS'] = 'on';
  303.                 $server['SERVER_PORT'] = 443;
  304.             } else {
  305.                 unset($server['HTTPS']);
  306.                 $server['SERVER_PORT'] = 80;
  307.             }
  308.         }
  309.         if (isset($components['port'])) {
  310.             $server['SERVER_PORT'] = $components['port'];
  311.             $server['HTTP_HOST'] .= ':'.$components['port'];
  312.         }
  313.         if (isset($components['user'])) {
  314.             $server['PHP_AUTH_USER'] = $components['user'];
  315.         }
  316.         if (isset($components['pass'])) {
  317.             $server['PHP_AUTH_PW'] = $components['pass'];
  318.         }
  319.         if (!isset($components['path'])) {
  320.             $components['path'] = '/';
  321.         }
  322.         switch (strtoupper($method)) {
  323.             case 'POST':
  324.             case 'PUT':
  325.             case 'DELETE':
  326.                 if (!isset($server['CONTENT_TYPE'])) {
  327.                     $server['CONTENT_TYPE'] = 'application/x-www-form-urlencoded';
  328.                 }
  329.                 // no break
  330.             case 'PATCH':
  331.                 $request $parameters;
  332.                 $query = [];
  333.                 break;
  334.             default:
  335.                 $request = [];
  336.                 $query $parameters;
  337.                 break;
  338.         }
  339.         $queryString '';
  340.         if (isset($components['query'])) {
  341.             parse_str(html_entity_decode($components['query']), $qs);
  342.             if ($query) {
  343.                 $query array_replace($qs$query);
  344.                 $queryString http_build_query($query'''&');
  345.             } else {
  346.                 $query $qs;
  347.                 $queryString $components['query'];
  348.             }
  349.         } elseif ($query) {
  350.             $queryString http_build_query($query'''&');
  351.         }
  352.         $server['REQUEST_URI'] = $components['path'].('' !== $queryString '?'.$queryString '');
  353.         $server['QUERY_STRING'] = $queryString;
  354.         return self::createRequestFromFactory($query$request, [], $cookies$files$server$content);
  355.     }
  356.     /**
  357.      * Sets a callable able to create a Request instance.
  358.      *
  359.      * This is mainly useful when you need to override the Request class
  360.      * to keep BC with an existing system. It should not be used for any
  361.      * other purpose.
  362.      */
  363.     public static function setFactory(?callable $callable)
  364.     {
  365.         self::$requestFactory $callable;
  366.     }
  367.     /**
  368.      * Clones a request and overrides some of its parameters.
  369.      *
  370.      * @param array $query      The GET parameters
  371.      * @param array $request    The POST parameters
  372.      * @param array $attributes The request attributes (parameters parsed from the PATH_INFO, ...)
  373.      * @param array $cookies    The COOKIE parameters
  374.      * @param array $files      The FILES parameters
  375.      * @param array $server     The SERVER parameters
  376.      *
  377.      * @return static
  378.      */
  379.     public function duplicate(array $query null, array $request null, array $attributes null, array $cookies null, array $files null, array $server null)
  380.     {
  381.         $dup = clone $this;
  382.         if (null !== $query) {
  383.             $dup->query = new ParameterBag($query);
  384.         }
  385.         if (null !== $request) {
  386.             $dup->request = new ParameterBag($request);
  387.         }
  388.         if (null !== $attributes) {
  389.             $dup->attributes = new ParameterBag($attributes);
  390.         }
  391.         if (null !== $cookies) {
  392.             $dup->cookies = new ParameterBag($cookies);
  393.         }
  394.         if (null !== $files) {
  395.             $dup->files = new FileBag($files);
  396.         }
  397.         if (null !== $server) {
  398.             $dup->server = new ServerBag($server);
  399.             $dup->headers = new HeaderBag($dup->server->getHeaders());
  400.         }
  401.         $dup->languages null;
  402.         $dup->charsets null;
  403.         $dup->encodings null;
  404.         $dup->acceptableContentTypes null;
  405.         $dup->pathInfo null;
  406.         $dup->requestUri null;
  407.         $dup->baseUrl null;
  408.         $dup->basePath null;
  409.         $dup->method null;
  410.         $dup->format null;
  411.         if (!$dup->get('_format') && $this->get('_format')) {
  412.             $dup->attributes->set('_format'$this->get('_format'));
  413.         }
  414.         if (!$dup->getRequestFormat(null)) {
  415.             $dup->setRequestFormat($this->getRequestFormat(null));
  416.         }
  417.         return $dup;
  418.     }
  419.     /**
  420.      * Clones the current request.
  421.      *
  422.      * Note that the session is not cloned as duplicated requests
  423.      * are most of the time sub-requests of the main one.
  424.      */
  425.     public function __clone()
  426.     {
  427.         $this->query = clone $this->query;
  428.         $this->request = clone $this->request;
  429.         $this->attributes = clone $this->attributes;
  430.         $this->cookies = clone $this->cookies;
  431.         $this->files = clone $this->files;
  432.         $this->server = clone $this->server;
  433.         $this->headers = clone $this->headers;
  434.     }
  435.     /**
  436.      * Returns the request as a string.
  437.      *
  438.      * @return string The request
  439.      */
  440.     public function __toString()
  441.     {
  442.         try {
  443.             $content $this->getContent();
  444.         } catch (\LogicException $e) {
  445.             if (\PHP_VERSION_ID >= 70400) {
  446.                 throw $e;
  447.             }
  448.             return trigger_error($eE_USER_ERROR);
  449.         }
  450.         $cookieHeader '';
  451.         $cookies = [];
  452.         foreach ($this->cookies as $k => $v) {
  453.             $cookies[] = $k.'='.$v;
  454.         }
  455.         if (!empty($cookies)) {
  456.             $cookieHeader 'Cookie: '.implode('; '$cookies)."\r\n";
  457.         }
  458.         return
  459.             sprintf('%s %s %s'$this->getMethod(), $this->getRequestUri(), $this->server->get('SERVER_PROTOCOL'))."\r\n".
  460.             $this->headers.
  461.             $cookieHeader."\r\n".
  462.             $content;
  463.     }
  464.     /**
  465.      * Overrides the PHP global variables according to this request instance.
  466.      *
  467.      * It overrides $_GET, $_POST, $_REQUEST, $_SERVER, $_COOKIE.
  468.      * $_FILES is never overridden, see rfc1867
  469.      */
  470.     public function overrideGlobals()
  471.     {
  472.         $this->server->set('QUERY_STRING', static::normalizeQueryString(http_build_query($this->query->all(), '''&')));
  473.         $_GET $this->query->all();
  474.         $_POST $this->request->all();
  475.         $_SERVER $this->server->all();
  476.         $_COOKIE $this->cookies->all();
  477.         foreach ($this->headers->all() as $key => $value) {
  478.             $key strtoupper(str_replace('-''_'$key));
  479.             if (\in_array($key, ['CONTENT_TYPE''CONTENT_LENGTH''CONTENT_MD5'], true)) {
  480.                 $_SERVER[$key] = implode(', '$value);
  481.             } else {
  482.                 $_SERVER['HTTP_'.$key] = implode(', '$value);
  483.             }
  484.         }
  485.         $request = ['g' => $_GET'p' => $_POST'c' => $_COOKIE];
  486.         $requestOrder ini_get('request_order') ?: ini_get('variables_order');
  487.         $requestOrder preg_replace('#[^cgp]#'''strtolower($requestOrder)) ?: 'gp';
  488.         $_REQUEST = [[]];
  489.         foreach (str_split($requestOrder) as $order) {
  490.             $_REQUEST[] = $request[$order];
  491.         }
  492.         $_REQUEST array_merge(...$_REQUEST);
  493.     }
  494.     /**
  495.      * Sets a list of trusted proxies.
  496.      *
  497.      * You should only list the reverse proxies that you manage directly.
  498.      *
  499.      * @param array $proxies          A list of trusted proxies, the string 'REMOTE_ADDR' will be replaced with $_SERVER['REMOTE_ADDR']
  500.      * @param int   $trustedHeaderSet A bit field of Request::HEADER_*, to set which headers to trust from your proxies
  501.      *
  502.      * @throws \InvalidArgumentException When $trustedHeaderSet is invalid
  503.      */
  504.     public static function setTrustedProxies(array $proxiesint $trustedHeaderSet)
  505.     {
  506.         self::$trustedProxies array_reduce($proxies, function ($proxies$proxy) {
  507.             if ('REMOTE_ADDR' !== $proxy) {
  508.                 $proxies[] = $proxy;
  509.             } elseif (isset($_SERVER['REMOTE_ADDR'])) {
  510.                 $proxies[] = $_SERVER['REMOTE_ADDR'];
  511.             }
  512.             return $proxies;
  513.         }, []);
  514.         self::$trustedHeaderSet $trustedHeaderSet;
  515.     }
  516.     /**
  517.      * Gets the list of trusted proxies.
  518.      *
  519.      * @return array An array of trusted proxies
  520.      */
  521.     public static function getTrustedProxies()
  522.     {
  523.         return self::$trustedProxies;
  524.     }
  525.     /**
  526.      * Gets the set of trusted headers from trusted proxies.
  527.      *
  528.      * @return int A bit field of Request::HEADER_* that defines which headers are trusted from your proxies
  529.      */
  530.     public static function getTrustedHeaderSet()
  531.     {
  532.         return self::$trustedHeaderSet;
  533.     }
  534.     /**
  535.      * Sets a list of trusted host patterns.
  536.      *
  537.      * You should only list the hosts you manage using regexs.
  538.      *
  539.      * @param array $hostPatterns A list of trusted host patterns
  540.      */
  541.     public static function setTrustedHosts(array $hostPatterns)
  542.     {
  543.         self::$trustedHostPatterns array_map(function ($hostPattern) {
  544.             return sprintf('{%s}i'$hostPattern);
  545.         }, $hostPatterns);
  546.         // we need to reset trusted hosts on trusted host patterns change
  547.         self::$trustedHosts = [];
  548.     }
  549.     /**
  550.      * Gets the list of trusted host patterns.
  551.      *
  552.      * @return array An array of trusted host patterns
  553.      */
  554.     public static function getTrustedHosts()
  555.     {
  556.         return self::$trustedHostPatterns;
  557.     }
  558.     /**
  559.      * Normalizes a query string.
  560.      *
  561.      * It builds a normalized query string, where keys/value pairs are alphabetized,
  562.      * have consistent escaping and unneeded delimiters are removed.
  563.      *
  564.      * @return string A normalized query string for the Request
  565.      */
  566.     public static function normalizeQueryString(?string $qs)
  567.     {
  568.         if ('' === ($qs ?? '')) {
  569.             return '';
  570.         }
  571.         parse_str($qs$qs);
  572.         ksort($qs);
  573.         return http_build_query($qs'''&'PHP_QUERY_RFC3986);
  574.     }
  575.     /**
  576.      * Enables support for the _method request parameter to determine the intended HTTP method.
  577.      *
  578.      * Be warned that enabling this feature might lead to CSRF issues in your code.
  579.      * Check that you are using CSRF tokens when required.
  580.      * If the HTTP method parameter override is enabled, an html-form with method "POST" can be altered
  581.      * and used to send a "PUT" or "DELETE" request via the _method request parameter.
  582.      * If these methods are not protected against CSRF, this presents a possible vulnerability.
  583.      *
  584.      * The HTTP method can only be overridden when the real HTTP method is POST.
  585.      */
  586.     public static function enableHttpMethodParameterOverride()
  587.     {
  588.         self::$httpMethodParameterOverride true;
  589.     }
  590.     /**
  591.      * Checks whether support for the _method request parameter is enabled.
  592.      *
  593.      * @return bool True when the _method request parameter is enabled, false otherwise
  594.      */
  595.     public static function getHttpMethodParameterOverride()
  596.     {
  597.         return self::$httpMethodParameterOverride;
  598.     }
  599.     /**
  600.      * Gets a "parameter" value from any bag.
  601.      *
  602.      * This method is mainly useful for libraries that want to provide some flexibility. If you don't need the
  603.      * flexibility in controllers, it is better to explicitly get request parameters from the appropriate
  604.      * public property instead (attributes, query, request).
  605.      *
  606.      * Order of precedence: PATH (routing placeholders or custom attributes), GET, BODY
  607.      *
  608.      * @param mixed $default The default value if the parameter key does not exist
  609.      *
  610.      * @return mixed
  611.      */
  612.     public function get(string $key$default null)
  613.     {
  614.         if ($this !== $result $this->attributes->get($key$this)) {
  615.             return $result;
  616.         }
  617.         if ($this !== $result $this->query->get($key$this)) {
  618.             return $result;
  619.         }
  620.         if ($this !== $result $this->request->get($key$this)) {
  621.             return $result;
  622.         }
  623.         return $default;
  624.     }
  625.     /**
  626.      * Gets the Session.
  627.      *
  628.      * @return SessionInterface The session
  629.      */
  630.     public function getSession()
  631.     {
  632.         $session $this->session;
  633.         if (!$session instanceof SessionInterface && null !== $session) {
  634.             $this->setSession($session $session());
  635.         }
  636.         if (null === $session) {
  637.             throw new \BadMethodCallException('Session has not been set.');
  638.         }
  639.         return $session;
  640.     }
  641.     /**
  642.      * Whether the request contains a Session which was started in one of the
  643.      * previous requests.
  644.      *
  645.      * @return bool
  646.      */
  647.     public function hasPreviousSession()
  648.     {
  649.         // the check for $this->session avoids malicious users trying to fake a session cookie with proper name
  650.         return $this->hasSession() && $this->cookies->has($this->getSession()->getName());
  651.     }
  652.     /**
  653.      * Whether the request contains a Session object.
  654.      *
  655.      * This method does not give any information about the state of the session object,
  656.      * like whether the session is started or not. It is just a way to check if this Request
  657.      * is associated with a Session instance.
  658.      *
  659.      * @return bool true when the Request contains a Session object, false otherwise
  660.      */
  661.     public function hasSession()
  662.     {
  663.         return null !== $this->session;
  664.     }
  665.     public function setSession(SessionInterface $session)
  666.     {
  667.         $this->session $session;
  668.     }
  669.     /**
  670.      * @internal
  671.      */
  672.     public function setSessionFactory(callable $factory)
  673.     {
  674.         $this->session $factory;
  675.     }
  676.     /**
  677.      * Returns the client IP addresses.
  678.      *
  679.      * In the returned array the most trusted IP address is first, and the
  680.      * least trusted one last. The "real" client IP address is the last one,
  681.      * but this is also the least trusted one. Trusted proxies are stripped.
  682.      *
  683.      * Use this method carefully; you should use getClientIp() instead.
  684.      *
  685.      * @return array The client IP addresses
  686.      *
  687.      * @see getClientIp()
  688.      */
  689.     public function getClientIps()
  690.     {
  691.         $ip $this->server->get('REMOTE_ADDR');
  692.         if (!$this->isFromTrustedProxy()) {
  693.             return [$ip];
  694.         }
  695.         return $this->getTrustedValues(self::HEADER_X_FORWARDED_FOR$ip) ?: [$ip];
  696.     }
  697.     /**
  698.      * Returns the client IP address.
  699.      *
  700.      * This method can read the client IP address from the "X-Forwarded-For" header
  701.      * when trusted proxies were set via "setTrustedProxies()". The "X-Forwarded-For"
  702.      * header value is a comma+space separated list of IP addresses, the left-most
  703.      * being the original client, and each successive proxy that passed the request
  704.      * adding the IP address where it received the request from.
  705.      *
  706.      * If your reverse proxy uses a different header name than "X-Forwarded-For",
  707.      * ("Client-Ip" for instance), configure it via the $trustedHeaderSet
  708.      * argument of the Request::setTrustedProxies() method instead.
  709.      *
  710.      * @return string|null The client IP address
  711.      *
  712.      * @see getClientIps()
  713.      * @see https://wikipedia.org/wiki/X-Forwarded-For
  714.      */
  715.     public function getClientIp()
  716.     {
  717.         $ipAddresses $this->getClientIps();
  718.         return $ipAddresses[0];
  719.     }
  720.     /**
  721.      * Returns current script name.
  722.      *
  723.      * @return string
  724.      */
  725.     public function getScriptName()
  726.     {
  727.         return $this->server->get('SCRIPT_NAME'$this->server->get('ORIG_SCRIPT_NAME'''));
  728.     }
  729.     /**
  730.      * Returns the path being requested relative to the executed script.
  731.      *
  732.      * The path info always starts with a /.
  733.      *
  734.      * Suppose this request is instantiated from /mysite on localhost:
  735.      *
  736.      *  * http://localhost/mysite              returns an empty string
  737.      *  * http://localhost/mysite/about        returns '/about'
  738.      *  * http://localhost/mysite/enco%20ded   returns '/enco%20ded'
  739.      *  * http://localhost/mysite/about?var=1  returns '/about'
  740.      *
  741.      * @return string The raw path (i.e. not urldecoded)
  742.      */
  743.     public function getPathInfo()
  744.     {
  745.         if (null === $this->pathInfo) {
  746.             $this->pathInfo $this->preparePathInfo();
  747.         }
  748.         return $this->pathInfo;
  749.     }
  750.     /**
  751.      * Returns the root path from which this request is executed.
  752.      *
  753.      * Suppose that an index.php file instantiates this request object:
  754.      *
  755.      *  * http://localhost/index.php         returns an empty string
  756.      *  * http://localhost/index.php/page    returns an empty string
  757.      *  * http://localhost/web/index.php     returns '/web'
  758.      *  * http://localhost/we%20b/index.php  returns '/we%20b'
  759.      *
  760.      * @return string The raw path (i.e. not urldecoded)
  761.      */
  762.     public function getBasePath()
  763.     {
  764.         if (null === $this->basePath) {
  765.             $this->basePath $this->prepareBasePath();
  766.         }
  767.         return $this->basePath;
  768.     }
  769.     /**
  770.      * Returns the root URL from which this request is executed.
  771.      *
  772.      * The base URL never ends with a /.
  773.      *
  774.      * This is similar to getBasePath(), except that it also includes the
  775.      * script filename (e.g. index.php) if one exists.
  776.      *
  777.      * @return string The raw URL (i.e. not urldecoded)
  778.      */
  779.     public function getBaseUrl()
  780.     {
  781.         if (null === $this->baseUrl) {
  782.             $this->baseUrl $this->prepareBaseUrl();
  783.         }
  784.         return $this->baseUrl;
  785.     }
  786.     /**
  787.      * Gets the request's scheme.
  788.      *
  789.      * @return string
  790.      */
  791.     public function getScheme()
  792.     {
  793.         return $this->isSecure() ? 'https' 'http';
  794.     }
  795.     /**
  796.      * Returns the port on which the request is made.
  797.      *
  798.      * This method can read the client port from the "X-Forwarded-Port" header
  799.      * when trusted proxies were set via "setTrustedProxies()".
  800.      *
  801.      * The "X-Forwarded-Port" header must contain the client port.
  802.      *
  803.      * @return int|string can be a string if fetched from the server bag
  804.      */
  805.     public function getPort()
  806.     {
  807.         if ($this->isFromTrustedProxy() && $host $this->getTrustedValues(self::HEADER_X_FORWARDED_PORT)) {
  808.             $host $host[0];
  809.         } elseif ($this->isFromTrustedProxy() && $host $this->getTrustedValues(self::HEADER_X_FORWARDED_HOST)) {
  810.             $host $host[0];
  811.         } elseif (!$host $this->headers->get('HOST')) {
  812.             return $this->server->get('SERVER_PORT');
  813.         }
  814.         if ('[' === $host[0]) {
  815.             $pos strpos($host':'strrpos($host']'));
  816.         } else {
  817.             $pos strrpos($host':');
  818.         }
  819.         if (false !== $pos && $port substr($host$pos 1)) {
  820.             return (int) $port;
  821.         }
  822.         return 'https' === $this->getScheme() ? 443 80;
  823.     }
  824.     /**
  825.      * Returns the user.
  826.      *
  827.      * @return string|null
  828.      */
  829.     public function getUser()
  830.     {
  831.         return $this->headers->get('PHP_AUTH_USER');
  832.     }
  833.     /**
  834.      * Returns the password.
  835.      *
  836.      * @return string|null
  837.      */
  838.     public function getPassword()
  839.     {
  840.         return $this->headers->get('PHP_AUTH_PW');
  841.     }
  842.     /**
  843.      * Gets the user info.
  844.      *
  845.      * @return string A user name and, optionally, scheme-specific information about how to gain authorization to access the server
  846.      */
  847.     public function getUserInfo()
  848.     {
  849.         $userinfo $this->getUser();
  850.         $pass $this->getPassword();
  851.         if ('' != $pass) {
  852.             $userinfo .= ":$pass";
  853.         }
  854.         return $userinfo;
  855.     }
  856.     /**
  857.      * Returns the HTTP host being requested.
  858.      *
  859.      * The port name will be appended to the host if it's non-standard.
  860.      *
  861.      * @return string
  862.      */
  863.     public function getHttpHost()
  864.     {
  865.         $scheme $this->getScheme();
  866.         $port $this->getPort();
  867.         if (('http' == $scheme && 80 == $port) || ('https' == $scheme && 443 == $port)) {
  868.             return $this->getHost();
  869.         }
  870.         return $this->getHost().':'.$port;
  871.     }
  872.     /**
  873.      * Returns the requested URI (path and query string).
  874.      *
  875.      * @return string The raw URI (i.e. not URI decoded)
  876.      */
  877.     public function getRequestUri()
  878.     {
  879.         if (null === $this->requestUri) {
  880.             $this->requestUri $this->prepareRequestUri();
  881.         }
  882.         return $this->requestUri;
  883.     }
  884.     /**
  885.      * Gets the scheme and HTTP host.
  886.      *
  887.      * If the URL was called with basic authentication, the user
  888.      * and the password are not added to the generated string.
  889.      *
  890.      * @return string The scheme and HTTP host
  891.      */
  892.     public function getSchemeAndHttpHost()
  893.     {
  894.         return $this->getScheme().'://'.$this->getHttpHost();
  895.     }
  896.     /**
  897.      * Generates a normalized URI (URL) for the Request.
  898.      *
  899.      * @return string A normalized URI (URL) for the Request
  900.      *
  901.      * @see getQueryString()
  902.      */
  903.     public function getUri()
  904.     {
  905.         if (null !== $qs $this->getQueryString()) {
  906.             $qs '?'.$qs;
  907.         }
  908.         return $this->getSchemeAndHttpHost().$this->getBaseUrl().$this->getPathInfo().$qs;
  909.     }
  910.     /**
  911.      * Generates a normalized URI for the given path.
  912.      *
  913.      * @param string $path A path to use instead of the current one
  914.      *
  915.      * @return string The normalized URI for the path
  916.      */
  917.     public function getUriForPath(string $path)
  918.     {
  919.         return $this->getSchemeAndHttpHost().$this->getBaseUrl().$path;
  920.     }
  921.     /**
  922.      * Returns the path as relative reference from the current Request path.
  923.      *
  924.      * Only the URIs path component (no schema, host etc.) is relevant and must be given.
  925.      * Both paths must be absolute and not contain relative parts.
  926.      * Relative URLs from one resource to another are useful when generating self-contained downloadable document archives.
  927.      * Furthermore, they can be used to reduce the link size in documents.
  928.      *
  929.      * Example target paths, given a base path of "/a/b/c/d":
  930.      * - "/a/b/c/d"     -> ""
  931.      * - "/a/b/c/"      -> "./"
  932.      * - "/a/b/"        -> "../"
  933.      * - "/a/b/c/other" -> "other"
  934.      * - "/a/x/y"       -> "../../x/y"
  935.      *
  936.      * @return string The relative target path
  937.      */
  938.     public function getRelativeUriForPath(string $path)
  939.     {
  940.         // be sure that we are dealing with an absolute path
  941.         if (!isset($path[0]) || '/' !== $path[0]) {
  942.             return $path;
  943.         }
  944.         if ($path === $basePath $this->getPathInfo()) {
  945.             return '';
  946.         }
  947.         $sourceDirs explode('/', isset($basePath[0]) && '/' === $basePath[0] ? substr($basePath1) : $basePath);
  948.         $targetDirs explode('/'substr($path1));
  949.         array_pop($sourceDirs);
  950.         $targetFile array_pop($targetDirs);
  951.         foreach ($sourceDirs as $i => $dir) {
  952.             if (isset($targetDirs[$i]) && $dir === $targetDirs[$i]) {
  953.                 unset($sourceDirs[$i], $targetDirs[$i]);
  954.             } else {
  955.                 break;
  956.             }
  957.         }
  958.         $targetDirs[] = $targetFile;
  959.         $path str_repeat('../', \count($sourceDirs)).implode('/'$targetDirs);
  960.         // A reference to the same base directory or an empty subdirectory must be prefixed with "./".
  961.         // This also applies to a segment with a colon character (e.g., "file:colon") that cannot be used
  962.         // as the first segment of a relative-path reference, as it would be mistaken for a scheme name
  963.         // (see https://tools.ietf.org/html/rfc3986#section-4.2).
  964.         return !isset($path[0]) || '/' === $path[0]
  965.             || false !== ($colonPos strpos($path':')) && ($colonPos < ($slashPos strpos($path'/')) || false === $slashPos)
  966.             ? "./$path$path;
  967.     }
  968.     /**
  969.      * Generates the normalized query string for the Request.
  970.      *
  971.      * It builds a normalized query string, where keys/value pairs are alphabetized
  972.      * and have consistent escaping.
  973.      *
  974.      * @return string|null A normalized query string for the Request
  975.      */
  976.     public function getQueryString()
  977.     {
  978.         $qs = static::normalizeQueryString($this->server->get('QUERY_STRING'));
  979.         return '' === $qs null $qs;
  980.     }
  981.     /**
  982.      * Checks whether the request is secure or not.
  983.      *
  984.      * This method can read the client protocol from the "X-Forwarded-Proto" header
  985.      * when trusted proxies were set via "setTrustedProxies()".
  986.      *
  987.      * The "X-Forwarded-Proto" header must contain the protocol: "https" or "http".
  988.      *
  989.      * @return bool
  990.      */
  991.     public function isSecure()
  992.     {
  993.         if ($this->isFromTrustedProxy() && $proto $this->getTrustedValues(self::HEADER_X_FORWARDED_PROTO)) {
  994.             return \in_array(strtolower($proto[0]), ['https''on''ssl''1'], true);
  995.         }
  996.         $https $this->server->get('HTTPS');
  997.         return !empty($https) && 'off' !== strtolower($https);
  998.     }
  999.     /**
  1000.      * Returns the host name.
  1001.      *
  1002.      * This method can read the client host name from the "X-Forwarded-Host" header
  1003.      * when trusted proxies were set via "setTrustedProxies()".
  1004.      *
  1005.      * The "X-Forwarded-Host" header must contain the client host name.
  1006.      *
  1007.      * @return string
  1008.      *
  1009.      * @throws SuspiciousOperationException when the host name is invalid or not trusted
  1010.      */
  1011.     public function getHost()
  1012.     {
  1013.         if ($this->isFromTrustedProxy() && $host $this->getTrustedValues(self::HEADER_X_FORWARDED_HOST)) {
  1014.             $host $host[0];
  1015.         } elseif (!$host $this->headers->get('HOST')) {
  1016.             if (!$host $this->server->get('SERVER_NAME')) {
  1017.                 $host $this->server->get('SERVER_ADDR''');
  1018.             }
  1019.         }
  1020.         // trim and remove port number from host
  1021.         // host is lowercase as per RFC 952/2181
  1022.         $host strtolower(preg_replace('/:\d+$/'''trim($host)));
  1023.         // as the host can come from the user (HTTP_HOST and depending on the configuration, SERVER_NAME too can come from the user)
  1024.         // check that it does not contain forbidden characters (see RFC 952 and RFC 2181)
  1025.         // use preg_replace() instead of preg_match() to prevent DoS attacks with long host names
  1026.         if ($host && '' !== preg_replace('/(?:^\[)?[a-zA-Z0-9-:\]_]+\.?/'''$host)) {
  1027.             if (!$this->isHostValid) {
  1028.                 return '';
  1029.             }
  1030.             $this->isHostValid false;
  1031.             throw new SuspiciousOperationException(sprintf('Invalid Host "%s".'$host));
  1032.         }
  1033.         if (\count(self::$trustedHostPatterns) > 0) {
  1034.             // to avoid host header injection attacks, you should provide a list of trusted host patterns
  1035.             if (\in_array($hostself::$trustedHosts)) {
  1036.                 return $host;
  1037.             }
  1038.             foreach (self::$trustedHostPatterns as $pattern) {
  1039.                 if (preg_match($pattern$host)) {
  1040.                     self::$trustedHosts[] = $host;
  1041.                     return $host;
  1042.                 }
  1043.             }
  1044.             if (!$this->isHostValid) {
  1045.                 return '';
  1046.             }
  1047.             $this->isHostValid false;
  1048.             throw new SuspiciousOperationException(sprintf('Untrusted Host "%s".'$host));
  1049.         }
  1050.         return $host;
  1051.     }
  1052.     /**
  1053.      * Sets the request method.
  1054.      */
  1055.     public function setMethod(string $method)
  1056.     {
  1057.         $this->method null;
  1058.         $this->server->set('REQUEST_METHOD'$method);
  1059.     }
  1060.     /**
  1061.      * Gets the request "intended" method.
  1062.      *
  1063.      * If the X-HTTP-Method-Override header is set, and if the method is a POST,
  1064.      * then it is used to determine the "real" intended HTTP method.
  1065.      *
  1066.      * The _method request parameter can also be used to determine the HTTP method,
  1067.      * but only if enableHttpMethodParameterOverride() has been called.
  1068.      *
  1069.      * The method is always an uppercased string.
  1070.      *
  1071.      * @return string The request method
  1072.      *
  1073.      * @see getRealMethod()
  1074.      */
  1075.     public function getMethod()
  1076.     {
  1077.         if (null !== $this->method) {
  1078.             return $this->method;
  1079.         }
  1080.         $this->method strtoupper($this->server->get('REQUEST_METHOD''GET'));
  1081.         if ('POST' !== $this->method) {
  1082.             return $this->method;
  1083.         }
  1084.         $method $this->headers->get('X-HTTP-METHOD-OVERRIDE');
  1085.         if (!$method && self::$httpMethodParameterOverride) {
  1086.             $method $this->request->get('_method'$this->query->get('_method''POST'));
  1087.         }
  1088.         if (!\is_string($method)) {
  1089.             return $this->method;
  1090.         }
  1091.         $method strtoupper($method);
  1092.         if (\in_array($method, ['GET''HEAD''POST''PUT''DELETE''CONNECT''OPTIONS''PATCH''PURGE''TRACE'], true)) {
  1093.             return $this->method $method;
  1094.         }
  1095.         if (!preg_match('/^[A-Z]++$/D'$method)) {
  1096.             throw new SuspiciousOperationException(sprintf('Invalid method override "%s".'$method));
  1097.         }
  1098.         return $this->method $method;
  1099.     }
  1100.     /**
  1101.      * Gets the "real" request method.
  1102.      *
  1103.      * @return string The request method
  1104.      *
  1105.      * @see getMethod()
  1106.      */
  1107.     public function getRealMethod()
  1108.     {
  1109.         return strtoupper($this->server->get('REQUEST_METHOD''GET'));
  1110.     }
  1111.     /**
  1112.      * Gets the mime type associated with the format.
  1113.      *
  1114.      * @return string|null The associated mime type (null if not found)
  1115.      */
  1116.     public function getMimeType(string $format)
  1117.     {
  1118.         if (null === static::$formats) {
  1119.             static::initializeFormats();
  1120.         }
  1121.         return isset(static::$formats[$format]) ? static::$formats[$format][0] : null;
  1122.     }
  1123.     /**
  1124.      * Gets the mime types associated with the format.
  1125.      *
  1126.      * @return array The associated mime types
  1127.      */
  1128.     public static function getMimeTypes(string $format)
  1129.     {
  1130.         if (null === static::$formats) {
  1131.             static::initializeFormats();
  1132.         }
  1133.         return isset(static::$formats[$format]) ? static::$formats[$format] : [];
  1134.     }
  1135.     /**
  1136.      * Gets the format associated with the mime type.
  1137.      *
  1138.      * @return string|null The format (null if not found)
  1139.      */
  1140.     public function getFormat(?string $mimeType)
  1141.     {
  1142.         $canonicalMimeType null;
  1143.         if (false !== $pos strpos($mimeType';')) {
  1144.             $canonicalMimeType trim(substr($mimeType0$pos));
  1145.         }
  1146.         if (null === static::$formats) {
  1147.             static::initializeFormats();
  1148.         }
  1149.         foreach (static::$formats as $format => $mimeTypes) {
  1150.             if (\in_array($mimeType, (array) $mimeTypes)) {
  1151.                 return $format;
  1152.             }
  1153.             if (null !== $canonicalMimeType && \in_array($canonicalMimeType, (array) $mimeTypes)) {
  1154.                 return $format;
  1155.             }
  1156.         }
  1157.         return null;
  1158.     }
  1159.     /**
  1160.      * Associates a format with mime types.
  1161.      *
  1162.      * @param string|array $mimeTypes The associated mime types (the preferred one must be the first as it will be used as the content type)
  1163.      */
  1164.     public function setFormat(?string $format$mimeTypes)
  1165.     {
  1166.         if (null === static::$formats) {
  1167.             static::initializeFormats();
  1168.         }
  1169.         static::$formats[$format] = \is_array($mimeTypes) ? $mimeTypes : [$mimeTypes];
  1170.     }
  1171.     /**
  1172.      * Gets the request format.
  1173.      *
  1174.      * Here is the process to determine the format:
  1175.      *
  1176.      *  * format defined by the user (with setRequestFormat())
  1177.      *  * _format request attribute
  1178.      *  * $default
  1179.      *
  1180.      * @see getPreferredFormat
  1181.      *
  1182.      * @return string|null The request format
  1183.      */
  1184.     public function getRequestFormat(?string $default 'html')
  1185.     {
  1186.         if (null === $this->format) {
  1187.             $this->format $this->attributes->get('_format');
  1188.         }
  1189.         return null === $this->format $default $this->format;
  1190.     }
  1191.     /**
  1192.      * Sets the request format.
  1193.      */
  1194.     public function setRequestFormat(?string $format)
  1195.     {
  1196.         $this->format $format;
  1197.     }
  1198.     /**
  1199.      * Gets the format associated with the request.
  1200.      *
  1201.      * @return string|null The format (null if no content type is present)
  1202.      */
  1203.     public function getContentType()
  1204.     {
  1205.         return $this->getFormat($this->headers->get('CONTENT_TYPE'));
  1206.     }
  1207.     /**
  1208.      * Sets the default locale.
  1209.      */
  1210.     public function setDefaultLocale(string $locale)
  1211.     {
  1212.         $this->defaultLocale $locale;
  1213.         if (null === $this->locale) {
  1214.             $this->setPhpDefaultLocale($locale);
  1215.         }
  1216.     }
  1217.     /**
  1218.      * Get the default locale.
  1219.      *
  1220.      * @return string
  1221.      */
  1222.     public function getDefaultLocale()
  1223.     {
  1224.         return $this->defaultLocale;
  1225.     }
  1226.     /**
  1227.      * Sets the locale.
  1228.      */
  1229.     public function setLocale(string $locale)
  1230.     {
  1231.         $this->setPhpDefaultLocale($this->locale $locale);
  1232.     }
  1233.     /**
  1234.      * Get the locale.
  1235.      *
  1236.      * @return string
  1237.      */
  1238.     public function getLocale()
  1239.     {
  1240.         return null === $this->locale $this->defaultLocale $this->locale;
  1241.     }
  1242.     /**
  1243.      * Checks if the request method is of specified type.
  1244.      *
  1245.      * @param string $method Uppercase request method (GET, POST etc)
  1246.      *
  1247.      * @return bool
  1248.      */
  1249.     public function isMethod(string $method)
  1250.     {
  1251.         return $this->getMethod() === strtoupper($method);
  1252.     }
  1253.     /**
  1254.      * Checks whether or not the method is safe.
  1255.      *
  1256.      * @see https://tools.ietf.org/html/rfc7231#section-4.2.1
  1257.      *
  1258.      * @return bool
  1259.      */
  1260.     public function isMethodSafe()
  1261.     {
  1262.         return \in_array($this->getMethod(), ['GET''HEAD''OPTIONS''TRACE']);
  1263.     }
  1264.     /**
  1265.      * Checks whether or not the method is idempotent.
  1266.      *
  1267.      * @return bool
  1268.      */
  1269.     public function isMethodIdempotent()
  1270.     {
  1271.         return \in_array($this->getMethod(), ['HEAD''GET''PUT''DELETE''TRACE''OPTIONS''PURGE']);
  1272.     }
  1273.     /**
  1274.      * Checks whether the method is cacheable or not.
  1275.      *
  1276.      * @see https://tools.ietf.org/html/rfc7231#section-4.2.3
  1277.      *
  1278.      * @return bool True for GET and HEAD, false otherwise
  1279.      */
  1280.     public function isMethodCacheable()
  1281.     {
  1282.         return \in_array($this->getMethod(), ['GET''HEAD']);
  1283.     }
  1284.     /**
  1285.      * Returns the protocol version.
  1286.      *
  1287.      * If the application is behind a proxy, the protocol version used in the
  1288.      * requests between the client and the proxy and between the proxy and the
  1289.      * server might be different. This returns the former (from the "Via" header)
  1290.      * if the proxy is trusted (see "setTrustedProxies()"), otherwise it returns
  1291.      * the latter (from the "SERVER_PROTOCOL" server parameter).
  1292.      *
  1293.      * @return string
  1294.      */
  1295.     public function getProtocolVersion()
  1296.     {
  1297.         if ($this->isFromTrustedProxy()) {
  1298.             preg_match('~^(HTTP/)?([1-9]\.[0-9]) ~'$this->headers->get('Via'), $matches);
  1299.             if ($matches) {
  1300.                 return 'HTTP/'.$matches[2];
  1301.             }
  1302.         }
  1303.         return $this->server->get('SERVER_PROTOCOL');
  1304.     }
  1305.     /**
  1306.      * Returns the request body content.
  1307.      *
  1308.      * @param bool $asResource If true, a resource will be returned
  1309.      *
  1310.      * @return string|resource The request body content or a resource to read the body stream
  1311.      *
  1312.      * @throws \LogicException
  1313.      */
  1314.     public function getContent(bool $asResource false)
  1315.     {
  1316.         $currentContentIsResource = \is_resource($this->content);
  1317.         if (true === $asResource) {
  1318.             if ($currentContentIsResource) {
  1319.                 rewind($this->content);
  1320.                 return $this->content;
  1321.             }
  1322.             // Content passed in parameter (test)
  1323.             if (\is_string($this->content)) {
  1324.                 $resource fopen('php://temp''r+');
  1325.                 fwrite($resource$this->content);
  1326.                 rewind($resource);
  1327.                 return $resource;
  1328.             }
  1329.             $this->content false;
  1330.             return fopen('php://input''rb');
  1331.         }
  1332.         if ($currentContentIsResource) {
  1333.             rewind($this->content);
  1334.             return stream_get_contents($this->content);
  1335.         }
  1336.         if (null === $this->content || false === $this->content) {
  1337.             $this->content file_get_contents('php://input');
  1338.         }
  1339.         return $this->content;
  1340.     }
  1341.     /**
  1342.      * Gets the Etags.
  1343.      *
  1344.      * @return array The entity tags
  1345.      */
  1346.     public function getETags()
  1347.     {
  1348.         return preg_split('/\s*,\s*/'$this->headers->get('if_none_match'), nullPREG_SPLIT_NO_EMPTY);
  1349.     }
  1350.     /**
  1351.      * @return bool
  1352.      */
  1353.     public function isNoCache()
  1354.     {
  1355.         return $this->headers->hasCacheControlDirective('no-cache') || 'no-cache' == $this->headers->get('Pragma');
  1356.     }
  1357.     /**
  1358.      * Gets the preferred format for the response by inspecting, in the following order:
  1359.      *   * the request format set using setRequestFormat
  1360.      *   * the values of the Accept HTTP header
  1361.      *
  1362.      * Note that if you use this method, you should send the "Vary: Accept" header
  1363.      * in the response to prevent any issues with intermediary HTTP caches.
  1364.      */
  1365.     public function getPreferredFormat(?string $default 'html'): ?string
  1366.     {
  1367.         if (null !== $this->preferredFormat || null !== $this->preferredFormat $this->getRequestFormat(null)) {
  1368.             return $this->preferredFormat;
  1369.         }
  1370.         foreach ($this->getAcceptableContentTypes() as $mimeType) {
  1371.             if ($this->preferredFormat $this->getFormat($mimeType)) {
  1372.                 return $this->preferredFormat;
  1373.             }
  1374.         }
  1375.         return $default;
  1376.     }
  1377.     /**
  1378.      * Returns the preferred language.
  1379.      *
  1380.      * @param string[] $locales An array of ordered available locales
  1381.      *
  1382.      * @return string|null The preferred locale
  1383.      */
  1384.     public function getPreferredLanguage(array $locales null)
  1385.     {
  1386.         $preferredLanguages $this->getLanguages();
  1387.         if (empty($locales)) {
  1388.             return isset($preferredLanguages[0]) ? $preferredLanguages[0] : null;
  1389.         }
  1390.         if (!$preferredLanguages) {
  1391.             return $locales[0];
  1392.         }
  1393.         $extendedPreferredLanguages = [];
  1394.         foreach ($preferredLanguages as $language) {
  1395.             $extendedPreferredLanguages[] = $language;
  1396.             if (false !== $position strpos($language'_')) {
  1397.                 $superLanguage substr($language0$position);
  1398.                 if (!\in_array($superLanguage$preferredLanguages)) {
  1399.                     $extendedPreferredLanguages[] = $superLanguage;
  1400.                 }
  1401.             }
  1402.         }
  1403.         $preferredLanguages array_values(array_intersect($extendedPreferredLanguages$locales));
  1404.         return isset($preferredLanguages[0]) ? $preferredLanguages[0] : $locales[0];
  1405.     }
  1406.     /**
  1407.      * Gets a list of languages acceptable by the client browser.
  1408.      *
  1409.      * @return array Languages ordered in the user browser preferences
  1410.      */
  1411.     public function getLanguages()
  1412.     {
  1413.         if (null !== $this->languages) {
  1414.             return $this->languages;
  1415.         }
  1416.         $languages AcceptHeader::fromString($this->headers->get('Accept-Language'))->all();
  1417.         $this->languages = [];
  1418.         foreach ($languages as $lang => $acceptHeaderItem) {
  1419.             if (false !== strpos($lang'-')) {
  1420.                 $codes explode('-'$lang);
  1421.                 if ('i' === $codes[0]) {
  1422.                     // Language not listed in ISO 639 that are not variants
  1423.                     // of any listed language, which can be registered with the
  1424.                     // i-prefix, such as i-cherokee
  1425.                     if (\count($codes) > 1) {
  1426.                         $lang $codes[1];
  1427.                     }
  1428.                 } else {
  1429.                     for ($i 0$max = \count($codes); $i $max; ++$i) {
  1430.                         if (=== $i) {
  1431.                             $lang strtolower($codes[0]);
  1432.                         } else {
  1433.                             $lang .= '_'.strtoupper($codes[$i]);
  1434.                         }
  1435.                     }
  1436.                 }
  1437.             }
  1438.             $this->languages[] = $lang;
  1439.         }
  1440.         return $this->languages;
  1441.     }
  1442.     /**
  1443.      * Gets a list of charsets acceptable by the client browser.
  1444.      *
  1445.      * @return array List of charsets in preferable order
  1446.      */
  1447.     public function getCharsets()
  1448.     {
  1449.         if (null !== $this->charsets) {
  1450.             return $this->charsets;
  1451.         }
  1452.         return $this->charsets array_keys(AcceptHeader::fromString($this->headers->get('Accept-Charset'))->all());
  1453.     }
  1454.     /**
  1455.      * Gets a list of encodings acceptable by the client browser.
  1456.      *
  1457.      * @return array List of encodings in preferable order
  1458.      */
  1459.     public function getEncodings()
  1460.     {
  1461.         if (null !== $this->encodings) {
  1462.             return $this->encodings;
  1463.         }
  1464.         return $this->encodings array_keys(AcceptHeader::fromString($this->headers->get('Accept-Encoding'))->all());
  1465.     }
  1466.     /**
  1467.      * Gets a list of content types acceptable by the client browser.
  1468.      *
  1469.      * @return array List of content types in preferable order
  1470.      */
  1471.     public function getAcceptableContentTypes()
  1472.     {
  1473.         if (null !== $this->acceptableContentTypes) {
  1474.             return $this->acceptableContentTypes;
  1475.         }
  1476.         return $this->acceptableContentTypes array_keys(AcceptHeader::fromString($this->headers->get('Accept'))->all());
  1477.     }
  1478.     /**
  1479.      * Returns true if the request is a XMLHttpRequest.
  1480.      *
  1481.      * It works if your JavaScript library sets an X-Requested-With HTTP header.
  1482.      * It is known to work with common JavaScript frameworks:
  1483.      *
  1484.      * @see https://wikipedia.org/wiki/List_of_Ajax_frameworks#JavaScript
  1485.      *
  1486.      * @return bool true if the request is an XMLHttpRequest, false otherwise
  1487.      */
  1488.     public function isXmlHttpRequest()
  1489.     {
  1490.         return 'XMLHttpRequest' == $this->headers->get('X-Requested-With');
  1491.     }
  1492.     /*
  1493.      * The following methods are derived from code of the Zend Framework (1.10dev - 2010-01-24)
  1494.      *
  1495.      * Code subject to the new BSD license (https://framework.zend.com/license).
  1496.      *
  1497.      * Copyright (c) 2005-2010 Zend Technologies USA Inc. (https://www.zend.com/)
  1498.      */
  1499.     protected function prepareRequestUri()
  1500.     {
  1501.         $requestUri '';
  1502.         if ('1' == $this->server->get('IIS_WasUrlRewritten') && '' != $this->server->get('UNENCODED_URL')) {
  1503.             // IIS7 with URL Rewrite: make sure we get the unencoded URL (double slash problem)
  1504.             $requestUri $this->server->get('UNENCODED_URL');
  1505.             $this->server->remove('UNENCODED_URL');
  1506.             $this->server->remove('IIS_WasUrlRewritten');
  1507.         } elseif ($this->server->has('REQUEST_URI')) {
  1508.             $requestUri $this->server->get('REQUEST_URI');
  1509.             if ('' !== $requestUri && '/' === $requestUri[0]) {
  1510.                 // To only use path and query remove the fragment.
  1511.                 if (false !== $pos strpos($requestUri'#')) {
  1512.                     $requestUri substr($requestUri0$pos);
  1513.                 }
  1514.             } else {
  1515.                 // HTTP proxy reqs setup request URI with scheme and host [and port] + the URL path,
  1516.                 // only use URL path.
  1517.                 $uriComponents parse_url($requestUri);
  1518.                 if (isset($uriComponents['path'])) {
  1519.                     $requestUri $uriComponents['path'];
  1520.                 }
  1521.                 if (isset($uriComponents['query'])) {
  1522.                     $requestUri .= '?'.$uriComponents['query'];
  1523.                 }
  1524.             }
  1525.         } elseif ($this->server->has('ORIG_PATH_INFO')) {
  1526.             // IIS 5.0, PHP as CGI
  1527.             $requestUri $this->server->get('ORIG_PATH_INFO');
  1528.             if ('' != $this->server->get('QUERY_STRING')) {
  1529.                 $requestUri .= '?'.$this->server->get('QUERY_STRING');
  1530.             }
  1531.             $this->server->remove('ORIG_PATH_INFO');
  1532.         }
  1533.         // normalize the request URI to ease creating sub-requests from this request
  1534.         $this->server->set('REQUEST_URI'$requestUri);
  1535.         return $requestUri;
  1536.     }
  1537.     /**
  1538.      * Prepares the base URL.
  1539.      *
  1540.      * @return string
  1541.      */
  1542.     protected function prepareBaseUrl()
  1543.     {
  1544.         $filename basename($this->server->get('SCRIPT_FILENAME'));
  1545.         if (basename($this->server->get('SCRIPT_NAME')) === $filename) {
  1546.             $baseUrl $this->server->get('SCRIPT_NAME');
  1547.         } elseif (basename($this->server->get('PHP_SELF')) === $filename) {
  1548.             $baseUrl $this->server->get('PHP_SELF');
  1549.         } elseif (basename($this->server->get('ORIG_SCRIPT_NAME')) === $filename) {
  1550.             $baseUrl $this->server->get('ORIG_SCRIPT_NAME'); // 1and1 shared hosting compatibility
  1551.         } else {
  1552.             // Backtrack up the script_filename to find the portion matching
  1553.             // php_self
  1554.             $path $this->server->get('PHP_SELF''');
  1555.             $file $this->server->get('SCRIPT_FILENAME''');
  1556.             $segs explode('/'trim($file'/'));
  1557.             $segs array_reverse($segs);
  1558.             $index 0;
  1559.             $last = \count($segs);
  1560.             $baseUrl '';
  1561.             do {
  1562.                 $seg $segs[$index];
  1563.                 $baseUrl '/'.$seg.$baseUrl;
  1564.                 ++$index;
  1565.             } while ($last $index && (false !== $pos strpos($path$baseUrl)) && != $pos);
  1566.         }
  1567.         // Does the baseUrl have anything in common with the request_uri?
  1568.         $requestUri $this->getRequestUri();
  1569.         if ('' !== $requestUri && '/' !== $requestUri[0]) {
  1570.             $requestUri '/'.$requestUri;
  1571.         }
  1572.         if ($baseUrl && null !== $prefix $this->getUrlencodedPrefix($requestUri$baseUrl)) {
  1573.             // full $baseUrl matches
  1574.             return $prefix;
  1575.         }
  1576.         if ($baseUrl && null !== $prefix $this->getUrlencodedPrefix($requestUrirtrim(\dirname($baseUrl), '/'.\DIRECTORY_SEPARATOR).'/')) {
  1577.             // directory portion of $baseUrl matches
  1578.             return rtrim($prefix'/'.\DIRECTORY_SEPARATOR);
  1579.         }
  1580.         $truncatedRequestUri $requestUri;
  1581.         if (false !== $pos strpos($requestUri'?')) {
  1582.             $truncatedRequestUri substr($requestUri0$pos);
  1583.         }
  1584.         $basename basename($baseUrl);
  1585.         if (empty($basename) || !strpos(rawurldecode($truncatedRequestUri), $basename)) {
  1586.             // no match whatsoever; set it blank
  1587.             return '';
  1588.         }
  1589.         // If using mod_rewrite or ISAPI_Rewrite strip the script filename
  1590.         // out of baseUrl. $pos !== 0 makes sure it is not matching a value
  1591.         // from PATH_INFO or QUERY_STRING
  1592.         if (\strlen($requestUri) >= \strlen($baseUrl) && (false !== $pos strpos($requestUri$baseUrl)) && !== $pos) {
  1593.             $baseUrl substr($requestUri0$pos + \strlen($baseUrl));
  1594.         }
  1595.         return rtrim($baseUrl'/'.\DIRECTORY_SEPARATOR);
  1596.     }
  1597.     /**
  1598.      * Prepares the base path.
  1599.      *
  1600.      * @return string base path
  1601.      */
  1602.     protected function prepareBasePath()
  1603.     {
  1604.         $baseUrl $this->getBaseUrl();
  1605.         if (empty($baseUrl)) {
  1606.             return '';
  1607.         }
  1608.         $filename basename($this->server->get('SCRIPT_FILENAME'));
  1609.         if (basename($baseUrl) === $filename) {
  1610.             $basePath = \dirname($baseUrl);
  1611.         } else {
  1612.             $basePath $baseUrl;
  1613.         }
  1614.         if ('\\' === \DIRECTORY_SEPARATOR) {
  1615.             $basePath str_replace('\\''/'$basePath);
  1616.         }
  1617.         return rtrim($basePath'/');
  1618.     }
  1619.     /**
  1620.      * Prepares the path info.
  1621.      *
  1622.      * @return string path info
  1623.      */
  1624.     protected function preparePathInfo()
  1625.     {
  1626.         if (null === ($requestUri $this->getRequestUri())) {
  1627.             return '/';
  1628.         }
  1629.         // Remove the query string from REQUEST_URI
  1630.         if (false !== $pos strpos($requestUri'?')) {
  1631.             $requestUri substr($requestUri0$pos);
  1632.         }
  1633.         if ('' !== $requestUri && '/' !== $requestUri[0]) {
  1634.             $requestUri '/'.$requestUri;
  1635.         }
  1636.         if (null === ($baseUrl $this->getBaseUrl())) {
  1637.             return $requestUri;
  1638.         }
  1639.         $pathInfo substr($requestUri, \strlen($baseUrl));
  1640.         if (false === $pathInfo || '' === $pathInfo) {
  1641.             // If substr() returns false then PATH_INFO is set to an empty string
  1642.             return '/';
  1643.         }
  1644.         return (string) $pathInfo;
  1645.     }
  1646.     /**
  1647.      * Initializes HTTP request formats.
  1648.      */
  1649.     protected static function initializeFormats()
  1650.     {
  1651.         static::$formats = [
  1652.             'html' => ['text/html''application/xhtml+xml'],
  1653.             'txt' => ['text/plain'],
  1654.             'js' => ['application/javascript''application/x-javascript''text/javascript'],
  1655.             'css' => ['text/css'],
  1656.             'json' => ['application/json''application/x-json'],
  1657.             'jsonld' => ['application/ld+json'],
  1658.             'xml' => ['text/xml''application/xml''application/x-xml'],
  1659.             'rdf' => ['application/rdf+xml'],
  1660.             'atom' => ['application/atom+xml'],
  1661.             'rss' => ['application/rss+xml'],
  1662.             'form' => ['application/x-www-form-urlencoded'],
  1663.         ];
  1664.     }
  1665.     private function setPhpDefaultLocale(string $locale): void
  1666.     {
  1667.         // if either the class Locale doesn't exist, or an exception is thrown when
  1668.         // setting the default locale, the intl module is not installed, and
  1669.         // the call can be ignored:
  1670.         try {
  1671.             if (class_exists('Locale'false)) {
  1672.                 \Locale::setDefault($locale);
  1673.             }
  1674.         } catch (\Exception $e) {
  1675.         }
  1676.     }
  1677.     /**
  1678.      * Returns the prefix as encoded in the string when the string starts with
  1679.      * the given prefix, null otherwise.
  1680.      */
  1681.     private function getUrlencodedPrefix(string $stringstring $prefix): ?string
  1682.     {
  1683.         if (!== strpos(rawurldecode($string), $prefix)) {
  1684.             return null;
  1685.         }
  1686.         $len = \strlen($prefix);
  1687.         if (preg_match(sprintf('#^(%%[[:xdigit:]]{2}|.){%d}#'$len), $string$match)) {
  1688.             return $match[0];
  1689.         }
  1690.         return null;
  1691.     }
  1692.     private static function createRequestFromFactory(array $query = [], array $request = [], array $attributes = [], array $cookies = [], array $files = [], array $server = [], $content null): self
  1693.     {
  1694.         if (self::$requestFactory) {
  1695.             $request = (self::$requestFactory)($query$request$attributes$cookies$files$server$content);
  1696.             if (!$request instanceof self) {
  1697.                 throw new \LogicException('The Request factory must return an instance of Symfony\Component\HttpFoundation\Request.');
  1698.             }
  1699.             return $request;
  1700.         }
  1701.         return new static($query$request$attributes$cookies$files$server$content);
  1702.     }
  1703.     /**
  1704.      * Indicates whether this request originated from a trusted proxy.
  1705.      *
  1706.      * This can be useful to determine whether or not to trust the
  1707.      * contents of a proxy-specific header.
  1708.      *
  1709.      * @return bool true if the request came from a trusted proxy, false otherwise
  1710.      */
  1711.     public function isFromTrustedProxy()
  1712.     {
  1713.         return self::$trustedProxies && IpUtils::checkIp($this->server->get('REMOTE_ADDR'), self::$trustedProxies);
  1714.     }
  1715.     private function getTrustedValues(int $typestring $ip null): array
  1716.     {
  1717.         $clientValues = [];
  1718.         $forwardedValues = [];
  1719.         if ((self::$trustedHeaderSet $type) && $this->headers->has(self::$trustedHeaders[$type])) {
  1720.             foreach (explode(','$this->headers->get(self::$trustedHeaders[$type])) as $v) {
  1721.                 $clientValues[] = (self::HEADER_X_FORWARDED_PORT === $type '0.0.0.0:' '').trim($v);
  1722.             }
  1723.         }
  1724.         if ((self::$trustedHeaderSet self::HEADER_FORWARDED) && $this->headers->has(self::$trustedHeaders[self::HEADER_FORWARDED])) {
  1725.             $forwarded $this->headers->get(self::$trustedHeaders[self::HEADER_FORWARDED]);
  1726.             $parts HeaderUtils::split($forwarded',;=');
  1727.             $forwardedValues = [];
  1728.             $param self::$forwardedParams[$type];
  1729.             foreach ($parts as $subParts) {
  1730.                 if (null === $v HeaderUtils::combine($subParts)[$param] ?? null) {
  1731.                     continue;
  1732.                 }
  1733.                 if (self::HEADER_X_FORWARDED_PORT === $type) {
  1734.                     if (']' === substr($v, -1) || false === $v strrchr($v':')) {
  1735.                         $v $this->isSecure() ? ':443' ':80';
  1736.                     }
  1737.                     $v '0.0.0.0'.$v;
  1738.                 }
  1739.                 $forwardedValues[] = $v;
  1740.             }
  1741.         }
  1742.         if (null !== $ip) {
  1743.             $clientValues $this->normalizeAndFilterClientIps($clientValues$ip);
  1744.             $forwardedValues $this->normalizeAndFilterClientIps($forwardedValues$ip);
  1745.         }
  1746.         if ($forwardedValues === $clientValues || !$clientValues) {
  1747.             return $forwardedValues;
  1748.         }
  1749.         if (!$forwardedValues) {
  1750.             return $clientValues;
  1751.         }
  1752.         if (!$this->isForwardedValid) {
  1753.             return null !== $ip ? ['0.0.0.0'$ip] : [];
  1754.         }
  1755.         $this->isForwardedValid false;
  1756.         throw new ConflictingHeadersException(sprintf('The request has both a trusted "%s" header and a trusted "%s" header, conflicting with each other. You should either configure your proxy to remove one of them, or configure your project to distrust the offending one.'self::$trustedHeaders[self::HEADER_FORWARDED], self::$trustedHeaders[$type]));
  1757.     }
  1758.     private function normalizeAndFilterClientIps(array $clientIpsstring $ip): array
  1759.     {
  1760.         if (!$clientIps) {
  1761.             return [];
  1762.         }
  1763.         $clientIps[] = $ip// Complete the IP chain with the IP the request actually came from
  1764.         $firstTrustedIp null;
  1765.         foreach ($clientIps as $key => $clientIp) {
  1766.             if (strpos($clientIp'.')) {
  1767.                 // Strip :port from IPv4 addresses. This is allowed in Forwarded
  1768.                 // and may occur in X-Forwarded-For.
  1769.                 $i strpos($clientIp':');
  1770.                 if ($i) {
  1771.                     $clientIps[$key] = $clientIp substr($clientIp0$i);
  1772.                 }
  1773.             } elseif (=== strpos($clientIp'[')) {
  1774.                 // Strip brackets and :port from IPv6 addresses.
  1775.                 $i strpos($clientIp']'1);
  1776.                 $clientIps[$key] = $clientIp substr($clientIp1$i 1);
  1777.             }
  1778.             if (!filter_var($clientIpFILTER_VALIDATE_IP)) {
  1779.                 unset($clientIps[$key]);
  1780.                 continue;
  1781.             }
  1782.             if (IpUtils::checkIp($clientIpself::$trustedProxies)) {
  1783.                 unset($clientIps[$key]);
  1784.                 // Fallback to this when the client IP falls into the range of trusted proxies
  1785.                 if (null === $firstTrustedIp) {
  1786.                     $firstTrustedIp $clientIp;
  1787.                 }
  1788.             }
  1789.         }
  1790.         // Now the IP chain contains only untrusted proxies and the client IP
  1791.         return $clientIps array_reverse($clientIps) : [$firstTrustedIp];
  1792.     }
  1793. }