123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- <?php
- declare(strict_types=1);
- namespace Nyholm\Psr7;
- use Psr\Http\Message\{ServerRequestInterface, StreamInterface, UploadedFileInterface, UriInterface};
- /**
- * @author Michael Dowling and contributors to guzzlehttp/psr7
- * @author Tobias Nyholm <tobias.nyholm@gmail.com>
- * @author Martijn van der Ven <martijn@vanderven.se>
- */
- final class ServerRequest implements ServerRequestInterface
- {
- use MessageTrait;
- use RequestTrait;
- /** @var array */
- private $attributes = [];
- /** @var array */
- private $cookieParams = [];
- /** @var array|object|null */
- private $parsedBody;
- /** @var array */
- private $queryParams = [];
- /** @var array */
- private $serverParams;
- /** @var UploadedFileInterface[] */
- private $uploadedFiles = [];
- /**
- * @param string $method HTTP method
- * @param string|UriInterface $uri URI
- * @param array $headers Request headers
- * @param string|resource|StreamInterface|null $body Request body
- * @param string $version Protocol version
- * @param array $serverParams Typically the $_SERVER superglobal
- */
- public function __construct(string $method, $uri, array $headers = [], $body = null, string $version = '1.1', array $serverParams = [])
- {
- $this->serverParams = $serverParams;
- if (!($uri instanceof UriInterface)) {
- $uri = new Uri($uri);
- }
- $this->method = $method;
- $this->uri = $uri;
- $this->setHeaders($headers);
- $this->protocol = $version;
- if (!$this->hasHeader('Host')) {
- $this->updateHostFromUri();
- }
- // If we got no body, defer initialization of the stream until ServerRequest::getBody()
- if ('' !== $body && null !== $body) {
- $this->stream = Stream::create($body);
- }
- }
- public function getServerParams(): array
- {
- return $this->serverParams;
- }
- public function getUploadedFiles(): array
- {
- return $this->uploadedFiles;
- }
- public function withUploadedFiles(array $uploadedFiles)
- {
- $new = clone $this;
- $new->uploadedFiles = $uploadedFiles;
- return $new;
- }
- public function getCookieParams(): array
- {
- return $this->cookieParams;
- }
- public function withCookieParams(array $cookies)
- {
- $new = clone $this;
- $new->cookieParams = $cookies;
- return $new;
- }
- public function getQueryParams(): array
- {
- return $this->queryParams;
- }
- public function withQueryParams(array $query)
- {
- $new = clone $this;
- $new->queryParams = $query;
- return $new;
- }
- public function getParsedBody()
- {
- return $this->parsedBody;
- }
- public function withParsedBody($data)
- {
- if (!\is_array($data) && !\is_object($data) && null !== $data) {
- throw new \InvalidArgumentException('First parameter to withParsedBody MUST be object, array or null');
- }
- $new = clone $this;
- $new->parsedBody = $data;
- return $new;
- }
- public function getAttributes(): array
- {
- return $this->attributes;
- }
- public function getAttribute($attribute, $default = null)
- {
- if (false === \array_key_exists($attribute, $this->attributes)) {
- return $default;
- }
- return $this->attributes[$attribute];
- }
- public function withAttribute($attribute, $value): self
- {
- $new = clone $this;
- $new->attributes[$attribute] = $value;
- return $new;
- }
- public function withoutAttribute($attribute): self
- {
- if (false === \array_key_exists($attribute, $this->attributes)) {
- return $this;
- }
- $new = clone $this;
- unset($new->attributes[$attribute]);
- return $new;
- }
- }
|