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

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