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