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[] = $k.'='.$v;
  440.         }
  441.         if (!empty($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.     public function getSession(): SessionInterface
  603.     {
  604.         $session $this->session;
  605.         if (!$session instanceof SessionInterface && null !== $session) {
  606.             $this->setSession($session $session());
  607.         }
  608.         if (null === $session) {
  609.             throw new SessionNotFoundException('Session has not been set.');
  610.         }
  611.         return $session;
  612.     }
  613.     /**
  614.      * Whether the request contains a Session which was started in one of the
  615.      * previous requests.
  616.      */
  617.     public function hasPreviousSession(): bool
  618.     {
  619.         // the check for $this->session avoids malicious users trying to fake a session cookie with proper name
  620.         return $this->hasSession() && $this->cookies->has($this->getSession()->getName());
  621.     }
  622.     /**
  623.      * Whether the request contains a Session object.
  624.      *
  625.      * This method does not give any information about the state of the session object,
  626.      * like whether the session is started or not. It is just a way to check if this Request
  627.      * is associated with a Session instance.
  628.      *
  629.      * @param bool $skipIfUninitialized When true, ignores factories injected by `setSessionFactory`
  630.      */
  631.     public function hasSession(bool $skipIfUninitialized false): bool
  632.     {
  633.         return null !== $this->session && (!$skipIfUninitialized || $this->session instanceof SessionInterface);
  634.     }
  635.     public function setSession(SessionInterface $session)
  636.     {
  637.         $this->session $session;
  638.     }
  639.     /**
  640.      * @internal
  641.      *
  642.      * @param callable(): SessionInterface $factory
  643.      */
  644.     public function setSessionFactory(callable $factory)
  645.     {
  646.         $this->session $factory;
  647.     }
  648.     /**
  649.      * Returns the client IP addresses.
  650.      *
  651.      * In the returned array the most trusted IP address is first, and the
  652.      * least trusted one last. The "real" client IP address is the last one,
  653.      * but this is also the least trusted one. Trusted proxies are stripped.
  654.      *
  655.      * Use this method carefully; you should use getClientIp() instead.
  656.      *
  657.      * @see getClientIp()
  658.      */
  659.     public function getClientIps(): array
  660.     {
  661.         $ip $this->server->get('REMOTE_ADDR');
  662.         if (!$this->isFromTrustedProxy()) {
  663.             return [$ip];
  664.         }
  665.         return $this->getTrustedValues(self::HEADER_X_FORWARDED_FOR$ip) ?: [$ip];
  666.     }
  667.     /**
  668.      * Returns the client IP address.
  669.      *
  670.      * This method can read the client IP address from the "X-Forwarded-For" header
  671.      * when trusted proxies were set via "setTrustedProxies()". The "X-Forwarded-For"
  672.      * header value is a comma+space separated list of IP addresses, the left-most
  673.      * being the original client, and each successive proxy that passed the request
  674.      * adding the IP address where it received the request from.
  675.      *
  676.      * If your reverse proxy uses a different header name than "X-Forwarded-For",
  677.      * ("Client-Ip" for instance), configure it via the $trustedHeaderSet
  678.      * argument of the Request::setTrustedProxies() method instead.
  679.      *
  680.      * @see getClientIps()
  681.      * @see https://wikipedia.org/wiki/X-Forwarded-For
  682.      */
  683.     public function getClientIp(): ?string
  684.     {
  685.         $ipAddresses $this->getClientIps();
  686.         return $ipAddresses[0];
  687.     }
  688.     /**
  689.      * Returns current script name.
  690.      */
  691.     public function getScriptName(): string
  692.     {
  693.         return $this->server->get('SCRIPT_NAME'$this->server->get('ORIG_SCRIPT_NAME'''));
  694.     }
  695.     /**
  696.      * Returns the path being requested relative to the executed script.
  697.      *
  698.      * The path info always starts with a /.
  699.      *
  700.      * Suppose this request is instantiated from /mysite on localhost:
  701.      *
  702.      *  * http://localhost/mysite              returns an empty string
  703.      *  * http://localhost/mysite/about        returns '/about'
  704.      *  * http://localhost/mysite/enco%20ded   returns '/enco%20ded'
  705.      *  * http://localhost/mysite/about?var=1  returns '/about'
  706.      *
  707.      * @return string The raw path (i.e. not urldecoded)
  708.      */
  709.     public function getPathInfo(): string
  710.     {
  711.         if (null === $this->pathInfo) {
  712.             $this->pathInfo $this->preparePathInfo();
  713.         }
  714.         return $this->pathInfo;
  715.     }
  716.     /**
  717.      * Returns the root path from which this request is executed.
  718.      *
  719.      * Suppose that an index.php file instantiates this request object:
  720.      *
  721.      *  * http://localhost/index.php         returns an empty string
  722.      *  * http://localhost/index.php/page    returns an empty string
  723.      *  * http://localhost/web/index.php     returns '/web'
  724.      *  * http://localhost/we%20b/index.php  returns '/we%20b'
  725.      *
  726.      * @return string The raw path (i.e. not urldecoded)
  727.      */
  728.     public function getBasePath(): string
  729.     {
  730.         if (null === $this->basePath) {
  731.             $this->basePath $this->prepareBasePath();
  732.         }
  733.         return $this->basePath;
  734.     }
  735.     /**
  736.      * Returns the root URL from which this request is executed.
  737.      *
  738.      * The base URL never ends with a /.
  739.      *
  740.      * This is similar to getBasePath(), except that it also includes the
  741.      * script filename (e.g. index.php) if one exists.
  742.      *
  743.      * @return string The raw URL (i.e. not urldecoded)
  744.      */
  745.     public function getBaseUrl(): string
  746.     {
  747.         $trustedPrefix '';
  748.         // the proxy prefix must be prepended to any prefix being needed at the webserver level
  749.         if ($this->isFromTrustedProxy() && $trustedPrefixValues $this->getTrustedValues(self::HEADER_X_FORWARDED_PREFIX)) {
  750.             $trustedPrefix rtrim($trustedPrefixValues[0], '/');
  751.         }
  752.         return $trustedPrefix.$this->getBaseUrlReal();
  753.     }
  754.     /**
  755.      * Returns the real base URL received by the webserver from which this request is executed.
  756.      * The URL does not include trusted reverse proxy prefix.
  757.      *
  758.      * @return string The raw URL (i.e. not urldecoded)
  759.      */
  760.     private function getBaseUrlReal(): string
  761.     {
  762.         if (null === $this->baseUrl) {
  763.             $this->baseUrl $this->prepareBaseUrl();
  764.         }
  765.         return $this->baseUrl;
  766.     }
  767.     /**
  768.      * Gets the request's scheme.
  769.      */
  770.     public function getScheme(): string
  771.     {
  772.         return $this->isSecure() ? 'https' 'http';
  773.     }
  774.     /**
  775.      * Returns the port on which the request is made.
  776.      *
  777.      * This method can read the client port from the "X-Forwarded-Port" header
  778.      * when trusted proxies were set via "setTrustedProxies()".
  779.      *
  780.      * The "X-Forwarded-Port" header must contain the client port.
  781.      *
  782.      * @return int|string|null Can be a string if fetched from the server bag
  783.      */
  784.     public function getPort(): int|string|null
  785.     {
  786.         if ($this->isFromTrustedProxy() && $host $this->getTrustedValues(self::HEADER_X_FORWARDED_PORT)) {
  787.             $host $host[0];
  788.         } elseif ($this->isFromTrustedProxy() && $host $this->getTrustedValues(self::HEADER_X_FORWARDED_HOST)) {
  789.             $host $host[0];
  790.         } elseif (!$host $this->headers->get('HOST')) {
  791.             return $this->server->get('SERVER_PORT');
  792.         }
  793.         if ('[' === $host[0]) {
  794.             $pos strpos($host':'strrpos($host']'));
  795.         } else {
  796.             $pos strrpos($host':');
  797.         }
  798.         if (false !== $pos && $port substr($host$pos 1)) {
  799.             return (int) $port;
  800.         }
  801.         return 'https' === $this->getScheme() ? 443 80;
  802.     }
  803.     /**
  804.      * Returns the user.
  805.      */
  806.     public function getUser(): ?string
  807.     {
  808.         return $this->headers->get('PHP_AUTH_USER');
  809.     }
  810.     /**
  811.      * Returns the password.
  812.      */
  813.     public function getPassword(): ?string
  814.     {
  815.         return $this->headers->get('PHP_AUTH_PW');
  816.     }
  817.     /**
  818.      * Gets the user info.
  819.      *
  820.      * @return string|null A user name if any and, optionally, scheme-specific information about how to gain authorization to access the server
  821.      */
  822.     public function getUserInfo(): ?string
  823.     {
  824.         $userinfo $this->getUser();
  825.         $pass $this->getPassword();
  826.         if ('' != $pass) {
  827.             $userinfo .= ":$pass";
  828.         }
  829.         return $userinfo;
  830.     }
  831.     /**
  832.      * Returns the HTTP host being requested.
  833.      *
  834.      * The port name will be appended to the host if it's non-standard.
  835.      */
  836.     public function getHttpHost(): string
  837.     {
  838.         $scheme $this->getScheme();
  839.         $port $this->getPort();
  840.         if (('http' == $scheme && 80 == $port) || ('https' == $scheme && 443 == $port)) {
  841.             return $this->getHost();
  842.         }
  843.         return $this->getHost().':'.$port;
  844.     }
  845.     /**
  846.      * Returns the requested URI (path and query string).
  847.      *
  848.      * @return string The raw URI (i.e. not URI decoded)
  849.      */
  850.     public function getRequestUri(): string
  851.     {
  852.         if (null === $this->requestUri) {
  853.             $this->requestUri $this->prepareRequestUri();
  854.         }
  855.         return $this->requestUri;
  856.     }
  857.     /**
  858.      * Gets the scheme and HTTP host.
  859.      *
  860.      * If the URL was called with basic authentication, the user
  861.      * and the password are not added to the generated string.
  862.      */
  863.     public function getSchemeAndHttpHost(): string
  864.     {
  865.         return $this->getScheme().'://'.$this->getHttpHost();
  866.     }
  867.     /**
  868.      * Generates a normalized URI (URL) for the Request.
  869.      *
  870.      * @see getQueryString()
  871.      */
  872.     public function getUri(): string
  873.     {
  874.         if (null !== $qs $this->getQueryString()) {
  875.             $qs '?'.$qs;
  876.         }
  877.         return $this->getSchemeAndHttpHost().$this->getBaseUrl().$this->getPathInfo().$qs;
  878.     }
  879.     /**
  880.      * Generates a normalized URI for the given path.
  881.      *
  882.      * @param string $path A path to use instead of the current one
  883.      */
  884.     public function getUriForPath(string $path): string
  885.     {
  886.         return $this->getSchemeAndHttpHost().$this->getBaseUrl().$path;
  887.     }
  888.     /**
  889.      * Returns the path as relative reference from the current Request path.
  890.      *
  891.      * Only the URIs path component (no schema, host etc.) is relevant and must be given.
  892.      * Both paths must be absolute and not contain relative parts.
  893.      * Relative URLs from one resource to another are useful when generating self-contained downloadable document archives.
  894.      * Furthermore, they can be used to reduce the link size in documents.
  895.      *
  896.      * Example target paths, given a base path of "/a/b/c/d":
  897.      * - "/a/b/c/d"     -> ""
  898.      * - "/a/b/c/"      -> "./"
  899.      * - "/a/b/"        -> "../"
  900.      * - "/a/b/c/other" -> "other"
  901.      * - "/a/x/y"       -> "../../x/y"
  902.      */
  903.     public function getRelativeUriForPath(string $path): string
  904.     {
  905.         // be sure that we are dealing with an absolute path
  906.         if (!isset($path[0]) || '/' !== $path[0]) {
  907.             return $path;
  908.         }
  909.         if ($path === $basePath $this->getPathInfo()) {
  910.             return '';
  911.         }
  912.         $sourceDirs explode('/', isset($basePath[0]) && '/' === $basePath[0] ? substr($basePath1) : $basePath);
  913.         $targetDirs explode('/'substr($path1));
  914.         array_pop($sourceDirs);
  915.         $targetFile array_pop($targetDirs);
  916.         foreach ($sourceDirs as $i => $dir) {
  917.             if (isset($targetDirs[$i]) && $dir === $targetDirs[$i]) {
  918.                 unset($sourceDirs[$i], $targetDirs[$i]);
  919.             } else {
  920.                 break;
  921.             }
  922.         }
  923.         $targetDirs[] = $targetFile;
  924.         $path str_repeat('../'\count($sourceDirs)).implode('/'$targetDirs);
  925.         // A reference to the same base directory or an empty subdirectory must be prefixed with "./".
  926.         // This also applies to a segment with a colon character (e.g., "file:colon") that cannot be used
  927.         // as the first segment of a relative-path reference, as it would be mistaken for a scheme name
  928.         // (see https://tools.ietf.org/html/rfc3986#section-4.2).
  929.         return !isset($path[0]) || '/' === $path[0]
  930.             || false !== ($colonPos strpos($path':')) && ($colonPos < ($slashPos strpos($path'/')) || false === $slashPos)
  931.             ? "./$path$path;
  932.     }
  933.     /**
  934.      * Generates the normalized query string for the Request.
  935.      *
  936.      * It builds a normalized query string, where keys/value pairs are alphabetized
  937.      * and have consistent escaping.
  938.      */
  939.     public function getQueryString(): ?string
  940.     {
  941.         $qs = static::normalizeQueryString($this->server->get('QUERY_STRING'));
  942.         return '' === $qs null $qs;
  943.     }
  944.     /**
  945.      * Checks whether the request is secure or not.
  946.      *
  947.      * This method can read the client protocol from the "X-Forwarded-Proto" header
  948.      * when trusted proxies were set via "setTrustedProxies()".
  949.      *
  950.      * The "X-Forwarded-Proto" header must contain the protocol: "https" or "http".
  951.      */
  952.     public function isSecure(): bool
  953.     {
  954.         if ($this->isFromTrustedProxy() && $proto $this->getTrustedValues(self::HEADER_X_FORWARDED_PROTO)) {
  955.             return \in_array(strtolower($proto[0]), ['https''on''ssl''1'], true);
  956.         }
  957.         $https $this->server->get('HTTPS');
  958.         return !empty($https) && 'off' !== strtolower($https);
  959.     }
  960.     /**
  961.      * Returns the host name.
  962.      *
  963.      * This method can read the client host name from the "X-Forwarded-Host" header
  964.      * when trusted proxies were set via "setTrustedProxies()".
  965.      *
  966.      * The "X-Forwarded-Host" header must contain the client host name.
  967.      *
  968.      * @throws SuspiciousOperationException when the host name is invalid or not trusted
  969.      */
  970.     public function getHost(): string
  971.     {
  972.         if ($this->isFromTrustedProxy() && $host $this->getTrustedValues(self::HEADER_X_FORWARDED_HOST)) {
  973.             $host $host[0];
  974.         } elseif (!$host $this->headers->get('HOST')) {
  975.             if (!$host $this->server->get('SERVER_NAME')) {
  976.                 $host $this->server->get('SERVER_ADDR''');
  977.             }
  978.         }
  979.         // trim and remove port number from host
  980.         // host is lowercase as per RFC 952/2181
  981.         $host strtolower(preg_replace('/:\d+$/'''trim($host)));
  982.         // as the host can come from the user (HTTP_HOST and depending on the configuration, SERVER_NAME too can come from the user)
  983.         // check that it does not contain forbidden characters (see RFC 952 and RFC 2181)
  984.         // use preg_replace() instead of preg_match() to prevent DoS attacks with long host names
  985.         if ($host && '' !== preg_replace('/(?:^\[)?[a-zA-Z0-9-:\]_]+\.?/'''$host)) {
  986.             if (!$this->isHostValid) {
  987.                 return '';
  988.             }
  989.             $this->isHostValid false;
  990.             throw new SuspiciousOperationException(sprintf('Invalid Host "%s".'$host));
  991.         }
  992.         if (\count(self::$trustedHostPatterns) > 0) {
  993.             // to avoid host header injection attacks, you should provide a list of trusted host patterns
  994.             if (\in_array($hostself::$trustedHosts)) {
  995.                 return $host;
  996.             }
  997.             foreach (self::$trustedHostPatterns as $pattern) {
  998.                 if (preg_match($pattern$host)) {
  999.                     self::$trustedHosts[] = $host;
  1000.                     return $host;
  1001.                 }
  1002.             }
  1003.             if (!$this->isHostValid) {
  1004.                 return '';
  1005.             }
  1006.             $this->isHostValid false;
  1007.             throw new SuspiciousOperationException(sprintf('Untrusted Host "%s".'$host));
  1008.         }
  1009.         return $host;
  1010.     }
  1011.     /**
  1012.      * Sets the request method.
  1013.      */
  1014.     public function setMethod(string $method)
  1015.     {
  1016.         $this->method null;
  1017.         $this->server->set('REQUEST_METHOD'$method);
  1018.     }
  1019.     /**
  1020.      * Gets the request "intended" method.
  1021.      *
  1022.      * If the X-HTTP-Method-Override header is set, and if the method is a POST,
  1023.      * then it is used to determine the "real" intended HTTP method.
  1024.      *
  1025.      * The _method request parameter can also be used to determine the HTTP method,
  1026.      * but only if enableHttpMethodParameterOverride() has been called.
  1027.      *
  1028.      * The method is always an uppercased string.
  1029.      *
  1030.      * @see getRealMethod()
  1031.      */
  1032.     public function getMethod(): string
  1033.     {
  1034.         if (null !== $this->method) {
  1035.             return $this->method;
  1036.         }
  1037.         $this->method strtoupper($this->server->get('REQUEST_METHOD''GET'));
  1038.         if ('POST' !== $this->method) {
  1039.             return $this->method;
  1040.         }
  1041.         $method $this->headers->get('X-HTTP-METHOD-OVERRIDE');
  1042.         if (!$method && self::$httpMethodParameterOverride) {
  1043.             $method $this->request->get('_method'$this->query->get('_method''POST'));
  1044.         }
  1045.         if (!\is_string($method)) {
  1046.             return $this->method;
  1047.         }
  1048.         $method strtoupper($method);
  1049.         if (\in_array($method, ['GET''HEAD''POST''PUT''DELETE''CONNECT''OPTIONS''PATCH''PURGE''TRACE'], true)) {
  1050.             return $this->method $method;
  1051.         }
  1052.         if (!preg_match('/^[A-Z]++$/D'$method)) {
  1053.             throw new SuspiciousOperationException(sprintf('Invalid method override "%s".'$method));
  1054.         }
  1055.         return $this->method $method;
  1056.     }
  1057.     /**
  1058.      * Gets the "real" request method.
  1059.      *
  1060.      * @see getMethod()
  1061.      */
  1062.     public function getRealMethod(): string
  1063.     {
  1064.         return strtoupper($this->server->get('REQUEST_METHOD''GET'));
  1065.     }
  1066.     /**
  1067.      * Gets the mime type associated with the format.
  1068.      */
  1069.     public function getMimeType(string $format): ?string
  1070.     {
  1071.         if (null === static::$formats) {
  1072.             static::initializeFormats();
  1073.         }
  1074.         return isset(static::$formats[$format]) ? static::$formats[$format][0] : null;
  1075.     }
  1076.     /**
  1077.      * Gets the mime types associated with the format.
  1078.      */
  1079.     public static function getMimeTypes(string $format): array
  1080.     {
  1081.         if (null === static::$formats) {
  1082.             static::initializeFormats();
  1083.         }
  1084.         return static::$formats[$format] ?? [];
  1085.     }
  1086.     /**
  1087.      * Gets the format associated with the mime type.
  1088.      */
  1089.     public function getFormat(?string $mimeType): ?string
  1090.     {
  1091.         $canonicalMimeType null;
  1092.         if ($mimeType && false !== $pos strpos($mimeType';')) {
  1093.             $canonicalMimeType trim(substr($mimeType0$pos));
  1094.         }
  1095.         if (null === static::$formats) {
  1096.             static::initializeFormats();
  1097.         }
  1098.         foreach (static::$formats as $format => $mimeTypes) {
  1099.             if (\in_array($mimeType, (array) $mimeTypes)) {
  1100.                 return $format;
  1101.             }
  1102.             if (null !== $canonicalMimeType && \in_array($canonicalMimeType, (array) $mimeTypes)) {
  1103.                 return $format;
  1104.             }
  1105.         }
  1106.         return null;
  1107.     }
  1108.     /**
  1109.      * Associates a format with mime types.
  1110.      *
  1111.      * @param string|array $mimeTypes The associated mime types (the preferred one must be the first as it will be used as the content type)
  1112.      */
  1113.     public function setFormat(?string $formatstring|array $mimeTypes)
  1114.     {
  1115.         if (null === static::$formats) {
  1116.             static::initializeFormats();
  1117.         }
  1118.         static::$formats[$format] = \is_array($mimeTypes) ? $mimeTypes : [$mimeTypes];
  1119.     }
  1120.     /**
  1121.      * Gets the request format.
  1122.      *
  1123.      * Here is the process to determine the format:
  1124.      *
  1125.      *  * format defined by the user (with setRequestFormat())
  1126.      *  * _format request attribute
  1127.      *  * $default
  1128.      *
  1129.      * @see getPreferredFormat
  1130.      */
  1131.     public function getRequestFormat(?string $default 'html'): ?string
  1132.     {
  1133.         if (null === $this->format) {
  1134.             $this->format $this->attributes->get('_format');
  1135.         }
  1136.         return $this->format ?? $default;
  1137.     }
  1138.     /**
  1139.      * Sets the request format.
  1140.      */
  1141.     public function setRequestFormat(?string $format)
  1142.     {
  1143.         $this->format $format;
  1144.     }
  1145.     /**
  1146.      * Gets the format associated with the request.
  1147.      */
  1148.     public function getContentType(): ?string
  1149.     {
  1150.         return $this->getFormat($this->headers->get('CONTENT_TYPE'''));
  1151.     }
  1152.     /**
  1153.      * Sets the default locale.
  1154.      */
  1155.     public function setDefaultLocale(string $locale)
  1156.     {
  1157.         $this->defaultLocale $locale;
  1158.         if (null === $this->locale) {
  1159.             $this->setPhpDefaultLocale($locale);
  1160.         }
  1161.     }
  1162.     /**
  1163.      * Get the default locale.
  1164.      */
  1165.     public function getDefaultLocale(): string
  1166.     {
  1167.         return $this->defaultLocale;
  1168.     }
  1169.     /**
  1170.      * Sets the locale.
  1171.      */
  1172.     public function setLocale(string $locale)
  1173.     {
  1174.         $this->setPhpDefaultLocale($this->locale $locale);
  1175.     }
  1176.     /**
  1177.      * Get the locale.
  1178.      */
  1179.     public function getLocale(): string
  1180.     {
  1181.         return null === $this->locale $this->defaultLocale $this->locale;
  1182.     }
  1183.     /**
  1184.      * Checks if the request method is of specified type.
  1185.      *
  1186.      * @param string $method Uppercase request method (GET, POST etc)
  1187.      */
  1188.     public function isMethod(string $method): bool
  1189.     {
  1190.         return $this->getMethod() === strtoupper($method);
  1191.     }
  1192.     /**
  1193.      * Checks whether or not the method is safe.
  1194.      *
  1195.      * @see https://tools.ietf.org/html/rfc7231#section-4.2.1
  1196.      */
  1197.     public function isMethodSafe(): bool
  1198.     {
  1199.         return \in_array($this->getMethod(), ['GET''HEAD''OPTIONS''TRACE']);
  1200.     }
  1201.     /**
  1202.      * Checks whether or not the method is idempotent.
  1203.      */
  1204.     public function isMethodIdempotent(): bool
  1205.     {
  1206.         return \in_array($this->getMethod(), ['HEAD''GET''PUT''DELETE''TRACE''OPTIONS''PURGE']);
  1207.     }
  1208.     /**
  1209.      * Checks whether the method is cacheable or not.
  1210.      *
  1211.      * @see https://tools.ietf.org/html/rfc7231#section-4.2.3
  1212.      */
  1213.     public function isMethodCacheable(): bool
  1214.     {
  1215.         return \in_array($this->getMethod(), ['GET''HEAD']);
  1216.     }
  1217.     /**
  1218.      * Returns the protocol version.
  1219.      *
  1220.      * If the application is behind a proxy, the protocol version used in the
  1221.      * requests between the client and the proxy and between the proxy and the
  1222.      * server might be different. This returns the former (from the "Via" header)
  1223.      * if the proxy is trusted (see "setTrustedProxies()"), otherwise it returns
  1224.      * the latter (from the "SERVER_PROTOCOL" server parameter).
  1225.      */
  1226.     public function getProtocolVersion(): ?string
  1227.     {
  1228.         if ($this->isFromTrustedProxy()) {
  1229.             preg_match('~^(HTTP/)?([1-9]\.[0-9]) ~'$this->headers->get('Via') ?? ''$matches);
  1230.             if ($matches) {
  1231.                 return 'HTTP/'.$matches[2];
  1232.             }
  1233.         }
  1234.         return $this->server->get('SERVER_PROTOCOL');
  1235.     }
  1236.     /**
  1237.      * Returns the request body content.
  1238.      *
  1239.      * @param bool $asResource If true, a resource will be returned
  1240.      *
  1241.      * @return string|resource
  1242.      */
  1243.     public function getContent(bool $asResource false)
  1244.     {
  1245.         $currentContentIsResource \is_resource($this->content);
  1246.         if (true === $asResource) {
  1247.             if ($currentContentIsResource) {
  1248.                 rewind($this->content);
  1249.                 return $this->content;
  1250.             }
  1251.             // Content passed in parameter (test)
  1252.             if (\is_string($this->content)) {
  1253.                 $resource fopen('php://temp''r+');
  1254.                 fwrite($resource$this->content);
  1255.                 rewind($resource);
  1256.                 return $resource;
  1257.             }
  1258.             $this->content false;
  1259.             return fopen('php://input''r');
  1260.         }
  1261.         if ($currentContentIsResource) {
  1262.             rewind($this->content);
  1263.             return stream_get_contents($this->content);
  1264.         }
  1265.         if (null === $this->content || false === $this->content) {
  1266.             $this->content file_get_contents('php://input');
  1267.         }
  1268.         return $this->content;
  1269.     }
  1270.     /**
  1271.      * Gets the request body decoded as array, typically from a JSON payload.
  1272.      *
  1273.      * @throws JsonException When the body cannot be decoded to an array
  1274.      */
  1275.     public function toArray(): array
  1276.     {
  1277.         if ('' === $content $this->getContent()) {
  1278.             throw new JsonException('Request body is empty.');
  1279.         }
  1280.         try {
  1281.             $content json_decode($contenttrue512\JSON_BIGINT_AS_STRING \JSON_THROW_ON_ERROR);
  1282.         } catch (\JsonException $e) {
  1283.             throw new JsonException('Could not decode request body.'$e->getCode(), $e);
  1284.         }
  1285.         if (!\is_array($content)) {
  1286.             throw new JsonException(sprintf('JSON content was expected to decode to an array, "%s" returned.'get_debug_type($content)));
  1287.         }
  1288.         return $content;
  1289.     }
  1290.     /**
  1291.      * Gets the Etags.
  1292.      */
  1293.     public function getETags(): array
  1294.     {
  1295.         return preg_split('/\s*,\s*/'$this->headers->get('If-None-Match'''), -1\PREG_SPLIT_NO_EMPTY);
  1296.     }
  1297.     public function isNoCache(): bool
  1298.     {
  1299.         return $this->headers->hasCacheControlDirective('no-cache') || 'no-cache' == $this->headers->get('Pragma');
  1300.     }
  1301.     /**
  1302.      * Gets the preferred format for the response by inspecting, in the following order:
  1303.      *   * the request format set using setRequestFormat;
  1304.      *   * the values of the Accept HTTP header.
  1305.      *
  1306.      * Note that if you use this method, you should send the "Vary: Accept" header
  1307.      * in the response to prevent any issues with intermediary HTTP caches.
  1308.      */
  1309.     public function getPreferredFormat(?string $default 'html'): ?string
  1310.     {
  1311.         if (null !== $this->preferredFormat || null !== $this->preferredFormat $this->getRequestFormat(null)) {
  1312.             return $this->preferredFormat;
  1313.         }
  1314.         foreach ($this->getAcceptableContentTypes() as $mimeType) {
  1315.             if ($this->preferredFormat $this->getFormat($mimeType)) {
  1316.                 return $this->preferredFormat;
  1317.             }
  1318.         }
  1319.         return $default;
  1320.     }
  1321.     /**
  1322.      * Returns the preferred language.
  1323.      *
  1324.      * @param string[] $locales An array of ordered available locales
  1325.      */
  1326.     public function getPreferredLanguage(array $locales null): ?string
  1327.     {
  1328.         $preferredLanguages $this->getLanguages();
  1329.         if (empty($locales)) {
  1330.             return $preferredLanguages[0] ?? null;
  1331.         }
  1332.         if (!$preferredLanguages) {
  1333.             return $locales[0];
  1334.         }
  1335.         $extendedPreferredLanguages = [];
  1336.         foreach ($preferredLanguages as $language) {
  1337.             $extendedPreferredLanguages[] = $language;
  1338.             if (false !== $position strpos($language'_')) {
  1339.                 $superLanguage substr($language0$position);
  1340.                 if (!\in_array($superLanguage$preferredLanguages)) {
  1341.                     $extendedPreferredLanguages[] = $superLanguage;
  1342.                 }
  1343.             }
  1344.         }
  1345.         $preferredLanguages array_values(array_intersect($extendedPreferredLanguages$locales));
  1346.         return $preferredLanguages[0] ?? $locales[0];
  1347.     }
  1348.     /**
  1349.      * Gets a list of languages acceptable by the client browser ordered in the user browser preferences.
  1350.      */
  1351.     public function getLanguages(): array
  1352.     {
  1353.         if (null !== $this->languages) {
  1354.             return $this->languages;
  1355.         }
  1356.         $languages AcceptHeader::fromString($this->headers->get('Accept-Language'))->all();
  1357.         $this->languages = [];
  1358.         foreach ($languages as $lang => $acceptHeaderItem) {
  1359.             if (str_contains($lang'-')) {
  1360.                 $codes explode('-'$lang);
  1361.                 if ('i' === $codes[0]) {
  1362.                     // Language not listed in ISO 639 that are not variants
  1363.                     // of any listed language, which can be registered with the
  1364.                     // i-prefix, such as i-cherokee
  1365.                     if (\count($codes) > 1) {
  1366.                         $lang $codes[1];
  1367.                     }
  1368.                 } else {
  1369.                     for ($i 0$max \count($codes); $i $max; ++$i) {
  1370.                         if (=== $i) {
  1371.                             $lang strtolower($codes[0]);
  1372.                         } else {
  1373.                             $lang .= '_'.strtoupper($codes[$i]);
  1374.                         }
  1375.                     }
  1376.                 }
  1377.             }
  1378.             $this->languages[] = $lang;
  1379.         }
  1380.         return $this->languages;
  1381.     }
  1382.     /**
  1383.      * Gets a list of charsets acceptable by the client browser in preferable order.
  1384.      */
  1385.     public function getCharsets(): array
  1386.     {
  1387.         if (null !== $this->charsets) {
  1388.             return $this->charsets;
  1389.         }
  1390.         return $this->charsets array_keys(AcceptHeader::fromString($this->headers->get('Accept-Charset'))->all());
  1391.     }
  1392.     /**
  1393.      * Gets a list of encodings acceptable by the client browser in preferable order.
  1394.      */
  1395.     public function getEncodings(): array
  1396.     {
  1397.         if (null !== $this->encodings) {
  1398.             return $this->encodings;
  1399.         }
  1400.         return $this->encodings array_keys(AcceptHeader::fromString($this->headers->get('Accept-Encoding'))->all());
  1401.     }
  1402.     /**
  1403.      * Gets a list of content types acceptable by the client browser in preferable order.
  1404.      */
  1405.     public function getAcceptableContentTypes(): array
  1406.     {
  1407.         if (null !== $this->acceptableContentTypes) {
  1408.             return $this->acceptableContentTypes;
  1409.         }
  1410.         return $this->acceptableContentTypes array_keys(AcceptHeader::fromString($this->headers->get('Accept'))->all());
  1411.     }
  1412.     /**
  1413.      * Returns true if the request is an XMLHttpRequest.
  1414.      *
  1415.      * It works if your JavaScript library sets an X-Requested-With HTTP header.
  1416.      * It is known to work with common JavaScript frameworks:
  1417.      *
  1418.      * @see https://wikipedia.org/wiki/List_of_Ajax_frameworks#JavaScript
  1419.      */
  1420.     public function isXmlHttpRequest(): bool
  1421.     {
  1422.         return 'XMLHttpRequest' == $this->headers->get('X-Requested-With');
  1423.     }
  1424.     /**
  1425.      * Checks whether the client browser prefers safe content or not according to RFC8674.
  1426.      *
  1427.      * @see https://tools.ietf.org/html/rfc8674
  1428.      */
  1429.     public function preferSafeContent(): bool
  1430.     {
  1431.         if (isset($this->isSafeContentPreferred)) {
  1432.             return $this->isSafeContentPreferred;
  1433.         }
  1434.         if (!$this->isSecure()) {
  1435.             // see https://tools.ietf.org/html/rfc8674#section-3
  1436.             return $this->isSafeContentPreferred false;
  1437.         }
  1438.         return $this->isSafeContentPreferred AcceptHeader::fromString($this->headers->get('Prefer'))->has('safe');
  1439.     }
  1440.     /*
  1441.      * The following methods are derived from code of the Zend Framework (1.10dev - 2010-01-24)
  1442.      *
  1443.      * Code subject to the new BSD license (https://framework.zend.com/license).
  1444.      *
  1445.      * Copyright (c) 2005-2010 Zend Technologies USA Inc. (https://www.zend.com/)
  1446.      */
  1447.     protected function prepareRequestUri()
  1448.     {
  1449.         $requestUri '';
  1450.         if ('1' == $this->server->get('IIS_WasUrlRewritten') && '' != $this->server->get('UNENCODED_URL')) {
  1451.             // IIS7 with URL Rewrite: make sure we get the unencoded URL (double slash problem)
  1452.             $requestUri $this->server->get('UNENCODED_URL');
  1453.             $this->server->remove('UNENCODED_URL');
  1454.             $this->server->remove('IIS_WasUrlRewritten');
  1455.         } elseif ($this->server->has('REQUEST_URI')) {
  1456.             $requestUri $this->server->get('REQUEST_URI');
  1457.             if ('' !== $requestUri && '/' === $requestUri[0]) {
  1458.                 // To only use path and query remove the fragment.
  1459.                 if (false !== $pos strpos($requestUri'#')) {
  1460.                     $requestUri substr($requestUri0$pos);
  1461.                 }
  1462.             } else {
  1463.                 // HTTP proxy reqs setup request URI with scheme and host [and port] + the URL path,
  1464.                 // only use URL path.
  1465.                 $uriComponents parse_url($requestUri);
  1466.                 if (isset($uriComponents['path'])) {
  1467.                     $requestUri $uriComponents['path'];
  1468.                 }
  1469.                 if (isset($uriComponents['query'])) {
  1470.                     $requestUri .= '?'.$uriComponents['query'];
  1471.                 }
  1472.             }
  1473.         } elseif ($this->server->has('ORIG_PATH_INFO')) {
  1474.             // IIS 5.0, PHP as CGI
  1475.             $requestUri $this->server->get('ORIG_PATH_INFO');
  1476.             if ('' != $this->server->get('QUERY_STRING')) {
  1477.                 $requestUri .= '?'.$this->server->get('QUERY_STRING');
  1478.             }
  1479.             $this->server->remove('ORIG_PATH_INFO');
  1480.         }
  1481.         // normalize the request URI to ease creating sub-requests from this request
  1482.         $this->server->set('REQUEST_URI'$requestUri);
  1483.         return $requestUri;
  1484.     }
  1485.     /**
  1486.      * Prepares the base URL.
  1487.      */
  1488.     protected function prepareBaseUrl(): string
  1489.     {
  1490.         $filename basename($this->server->get('SCRIPT_FILENAME'''));
  1491.         if (basename($this->server->get('SCRIPT_NAME''')) === $filename) {
  1492.             $baseUrl $this->server->get('SCRIPT_NAME');
  1493.         } elseif (basename($this->server->get('PHP_SELF''')) === $filename) {
  1494.             $baseUrl $this->server->get('PHP_SELF');
  1495.         } elseif (basename($this->server->get('ORIG_SCRIPT_NAME''')) === $filename) {
  1496.             $baseUrl $this->server->get('ORIG_SCRIPT_NAME'); // 1and1 shared hosting compatibility
  1497.         } else {
  1498.             // Backtrack up the script_filename to find the portion matching
  1499.             // php_self
  1500.             $path $this->server->get('PHP_SELF''');
  1501.             $file $this->server->get('SCRIPT_FILENAME''');
  1502.             $segs explode('/'trim($file'/'));
  1503.             $segs array_reverse($segs);
  1504.             $index 0;
  1505.             $last \count($segs);
  1506.             $baseUrl '';
  1507.             do {
  1508.                 $seg $segs[$index];
  1509.                 $baseUrl '/'.$seg.$baseUrl;
  1510.                 ++$index;
  1511.             } while ($last $index && (false !== $pos strpos($path$baseUrl)) && != $pos);
  1512.         }
  1513.         // Does the baseUrl have anything in common with the request_uri?
  1514.         $requestUri $this->getRequestUri();
  1515.         if ('' !== $requestUri && '/' !== $requestUri[0]) {
  1516.             $requestUri '/'.$requestUri;
  1517.         }
  1518.         if ($baseUrl && null !== $prefix $this->getUrlencodedPrefix($requestUri$baseUrl)) {
  1519.             // full $baseUrl matches
  1520.             return $prefix;
  1521.         }
  1522.         if ($baseUrl && null !== $prefix $this->getUrlencodedPrefix($requestUrirtrim(\dirname($baseUrl), '/'.\DIRECTORY_SEPARATOR).'/')) {
  1523.             // directory portion of $baseUrl matches
  1524.             return rtrim($prefix'/'.\DIRECTORY_SEPARATOR);
  1525.         }
  1526.         $truncatedRequestUri $requestUri;
  1527.         if (false !== $pos strpos($requestUri'?')) {
  1528.             $truncatedRequestUri substr($requestUri0$pos);
  1529.         }
  1530.         $basename basename($baseUrl ?? '');
  1531.         if (empty($basename) || !strpos(rawurldecode($truncatedRequestUri), $basename)) {
  1532.             // no match whatsoever; set it blank
  1533.             return '';
  1534.         }
  1535.         // If using mod_rewrite or ISAPI_Rewrite strip the script filename
  1536.         // out of baseUrl. $pos !== 0 makes sure it is not matching a value
  1537.         // from PATH_INFO or QUERY_STRING
  1538.         if (\strlen($requestUri) >= \strlen($baseUrl) && (false !== $pos strpos($requestUri$baseUrl)) && !== $pos) {
  1539.             $baseUrl substr($requestUri0$pos \strlen($baseUrl));
  1540.         }
  1541.         return rtrim($baseUrl'/'.\DIRECTORY_SEPARATOR);
  1542.     }
  1543.     /**
  1544.      * Prepares the base path.
  1545.      */
  1546.     protected function prepareBasePath(): string
  1547.     {
  1548.         $baseUrl $this->getBaseUrl();
  1549.         if (empty($baseUrl)) {
  1550.             return '';
  1551.         }
  1552.         $filename basename($this->server->get('SCRIPT_FILENAME'));
  1553.         if (basename($baseUrl) === $filename) {
  1554.             $basePath \dirname($baseUrl);
  1555.         } else {
  1556.             $basePath $baseUrl;
  1557.         }
  1558.         if ('\\' === \DIRECTORY_SEPARATOR) {
  1559.             $basePath str_replace('\\''/'$basePath);
  1560.         }
  1561.         return rtrim($basePath'/');
  1562.     }
  1563.     /**
  1564.      * Prepares the path info.
  1565.      */
  1566.     protected function preparePathInfo(): string
  1567.     {
  1568.         if (null === ($requestUri $this->getRequestUri())) {
  1569.             return '/';
  1570.         }
  1571.         // Remove the query string from REQUEST_URI
  1572.         if (false !== $pos strpos($requestUri'?')) {
  1573.             $requestUri substr($requestUri0$pos);
  1574.         }
  1575.         if ('' !== $requestUri && '/' !== $requestUri[0]) {
  1576.             $requestUri '/'.$requestUri;
  1577.         }
  1578.         if (null === ($baseUrl $this->getBaseUrlReal())) {
  1579.             return $requestUri;
  1580.         }
  1581.         $pathInfo substr($requestUri\strlen($baseUrl));
  1582.         if (false === $pathInfo || '' === $pathInfo) {
  1583.             // If substr() returns false then PATH_INFO is set to an empty string
  1584.             return '/';
  1585.         }
  1586.         return $pathInfo;
  1587.     }
  1588.     /**
  1589.      * Initializes HTTP request formats.
  1590.      */
  1591.     protected static function initializeFormats()
  1592.     {
  1593.         static::$formats = [
  1594.             'html' => ['text/html''application/xhtml+xml'],
  1595.             'txt' => ['text/plain'],
  1596.             'js' => ['application/javascript''application/x-javascript''text/javascript'],
  1597.             'css' => ['text/css'],
  1598.             'json' => ['application/json''application/x-json'],
  1599.             'jsonld' => ['application/ld+json'],
  1600.             'xml' => ['text/xml''application/xml''application/x-xml'],
  1601.             'rdf' => ['application/rdf+xml'],
  1602.             'atom' => ['application/atom+xml'],
  1603.             'rss' => ['application/rss+xml'],
  1604.             'form' => ['application/x-www-form-urlencoded''multipart/form-data'],
  1605.         ];
  1606.     }
  1607.     private function setPhpDefaultLocale(string $locale): void
  1608.     {
  1609.         // if either the class Locale doesn't exist, or an exception is thrown when
  1610.         // setting the default locale, the intl module is not installed, and
  1611.         // the call can be ignored:
  1612.         try {
  1613.             if (class_exists(\Locale::class, false)) {
  1614.                 \Locale::setDefault($locale);
  1615.             }
  1616.         } catch (\Exception $e) {
  1617.         }
  1618.     }
  1619.     /**
  1620.      * Returns the prefix as encoded in the string when the string starts with
  1621.      * the given prefix, null otherwise.
  1622.      */
  1623.     private function getUrlencodedPrefix(string $stringstring $prefix): ?string
  1624.     {
  1625.         if (!str_starts_with(rawurldecode($string), $prefix)) {
  1626.             return null;
  1627.         }
  1628.         $len \strlen($prefix);
  1629.         if (preg_match(sprintf('#^(%%[[:xdigit:]]{2}|.){%d}#'$len), $string$match)) {
  1630.             return $match[0];
  1631.         }
  1632.         return null;
  1633.     }
  1634.     private static function createRequestFromFactory(array $query = [], array $request = [], array $attributes = [], array $cookies = [], array $files = [], array $server = [], $content null): static
  1635.     {
  1636.         if (self::$requestFactory) {
  1637.             $request = (self::$requestFactory)($query$request$attributes$cookies$files$server$content);
  1638.             if (!$request instanceof self) {
  1639.                 throw new \LogicException('The Request factory must return an instance of Symfony\Component\HttpFoundation\Request.');
  1640.             }
  1641.             return $request;
  1642.         }
  1643.         return new static($query$request$attributes$cookies$files$server$content);
  1644.     }
  1645.     /**
  1646.      * Indicates whether this request originated from a trusted proxy.
  1647.      *
  1648.      * This can be useful to determine whether or not to trust the
  1649.      * contents of a proxy-specific header.
  1650.      */
  1651.     public function isFromTrustedProxy(): bool
  1652.     {
  1653.         return self::$trustedProxies && IpUtils::checkIp($this->server->get('REMOTE_ADDR'''), self::$trustedProxies);
  1654.     }
  1655.     private function getTrustedValues(int $typestring $ip null): array
  1656.     {
  1657.         $clientValues = [];
  1658.         $forwardedValues = [];
  1659.         if ((self::$trustedHeaderSet $type) && $this->headers->has(self::TRUSTED_HEADERS[$type])) {
  1660.             foreach (explode(','$this->headers->get(self::TRUSTED_HEADERS[$type])) as $v) {
  1661.                 $clientValues[] = (self::HEADER_X_FORWARDED_PORT === $type '0.0.0.0:' '').trim($v);
  1662.             }
  1663.         }
  1664.         if ((self::$trustedHeaderSet self::HEADER_FORWARDED) && (isset(self::FORWARDED_PARAMS[$type])) && $this->headers->has(self::TRUSTED_HEADERS[self::HEADER_FORWARDED])) {
  1665.             $forwarded $this->headers->get(self::TRUSTED_HEADERS[self::HEADER_FORWARDED]);
  1666.             $parts HeaderUtils::split($forwarded',;=');
  1667.             $forwardedValues = [];
  1668.             $param self::FORWARDED_PARAMS[$type];
  1669.             foreach ($parts as $subParts) {
  1670.                 if (null === $v HeaderUtils::combine($subParts)[$param] ?? null) {
  1671.                     continue;
  1672.                 }
  1673.                 if (self::HEADER_X_FORWARDED_PORT === $type) {
  1674.                     if (str_ends_with($v']') || false === $v strrchr($v':')) {
  1675.                         $v $this->isSecure() ? ':443' ':80';
  1676.                     }
  1677.                     $v '0.0.0.0'.$v;
  1678.                 }
  1679.                 $forwardedValues[] = $v;
  1680.             }
  1681.         }
  1682.         if (null !== $ip) {
  1683.             $clientValues $this->normalizeAndFilterClientIps($clientValues$ip);
  1684.             $forwardedValues $this->normalizeAndFilterClientIps($forwardedValues$ip);
  1685.         }
  1686.         if ($forwardedValues === $clientValues || !$clientValues) {
  1687.             return $forwardedValues;
  1688.         }
  1689.         if (!$forwardedValues) {
  1690.             return $clientValues;
  1691.         }
  1692.         if (!$this->isForwardedValid) {
  1693.             return null !== $ip ? ['0.0.0.0'$ip] : [];
  1694.         }
  1695.         $this->isForwardedValid false;
  1696.         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]));
  1697.     }
  1698.     private function normalizeAndFilterClientIps(array $clientIpsstring $ip): array
  1699.     {
  1700.         if (!$clientIps) {
  1701.             return [];
  1702.         }
  1703.         $clientIps[] = $ip// Complete the IP chain with the IP the request actually came from
  1704.         $firstTrustedIp null;
  1705.         foreach ($clientIps as $key => $clientIp) {
  1706.             if (strpos($clientIp'.')) {
  1707.                 // Strip :port from IPv4 addresses. This is allowed in Forwarded
  1708.                 // and may occur in X-Forwarded-For.
  1709.                 $i strpos($clientIp':');
  1710.                 if ($i) {
  1711.                     $clientIps[$key] = $clientIp substr($clientIp0$i);
  1712.                 }
  1713.             } elseif (str_starts_with($clientIp'[')) {
  1714.                 // Strip brackets and :port from IPv6 addresses.
  1715.                 $i strpos($clientIp']'1);
  1716.                 $clientIps[$key] = $clientIp substr($clientIp1$i 1);
  1717.             }
  1718.             if (!filter_var($clientIp\FILTER_VALIDATE_IP)) {
  1719.                 unset($clientIps[$key]);
  1720.                 continue;
  1721.             }
  1722.             if (IpUtils::checkIp($clientIpself::$trustedProxies)) {
  1723.                 unset($clientIps[$key]);
  1724.                 // Fallback to this when the client IP falls into the range of trusted proxies
  1725.                 if (null === $firstTrustedIp) {
  1726.                     $firstTrustedIp $clientIp;
  1727.                 }
  1728.             }
  1729.         }
  1730.         // Now the IP chain contains only untrusted proxies and the client IP
  1731.         return $clientIps array_reverse($clientIps) : [$firstTrustedIp];
  1732.     }
  1733. }