mirror of
https://github.com/skipperbent/simple-php-router.git
synced 2026-06-16 02:30:09 +03:00
434 lines
8.6 KiB
PHP
434 lines
8.6 KiB
PHP
<?php
|
|
|
|
namespace Pecee\Http;
|
|
|
|
use Pecee\Http\Exceptions\MalformedUrlException;
|
|
use Pecee\Http\Input\InputHandler;
|
|
use Pecee\SimpleRouter\Route\ILoadableRoute;
|
|
use Pecee\SimpleRouter\Route\RouteUrl;
|
|
use Pecee\SimpleRouter\SimpleRouter;
|
|
|
|
class Request
|
|
{
|
|
/**
|
|
* Additional data
|
|
*
|
|
* @var array
|
|
*/
|
|
private $data = [];
|
|
|
|
/**
|
|
* Server headers
|
|
* @var array
|
|
*/
|
|
protected $headers = [];
|
|
|
|
/**
|
|
* Request host
|
|
* @var string
|
|
*/
|
|
protected $host;
|
|
|
|
/**
|
|
* Current request url
|
|
* @var Url
|
|
*/
|
|
protected $url;
|
|
|
|
/**
|
|
* Request method
|
|
* @var string
|
|
*/
|
|
protected $method;
|
|
|
|
/**
|
|
* Input handler
|
|
* @var InputHandler
|
|
*/
|
|
protected $inputHandler;
|
|
|
|
/**
|
|
* Defines if request has pending rewrite
|
|
* @var bool
|
|
*/
|
|
protected $hasPendingRewrite = false;
|
|
|
|
/**
|
|
* @var ILoadableRoute|null
|
|
*/
|
|
protected $rewriteRoute;
|
|
|
|
/**
|
|
* Rewrite url
|
|
* @var string|null
|
|
*/
|
|
protected $rewriteUrl;
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $loadedRoutes = [];
|
|
|
|
/**
|
|
* Request constructor.
|
|
* @throws MalformedUrlException
|
|
*/
|
|
public function __construct()
|
|
{
|
|
foreach ($_SERVER as $key => $value) {
|
|
$this->headers[strtolower($key)] = $value;
|
|
$this->headers[strtolower(str_replace('_', '-', $key))] = $value;
|
|
}
|
|
|
|
$this->setHost($this->getHeader('http-host'));
|
|
|
|
// Check if special IIS header exist, otherwise use default.
|
|
$this->setUrl(new Url($this->getHeader('unencoded-url', $this->getHeader('request-uri'))));
|
|
|
|
$this->method = strtolower($this->getHeader('request-method'));
|
|
$this->inputHandler = new InputHandler($this);
|
|
$this->method = strtolower($this->inputHandler->value('_method', $this->getHeader('request-method')));
|
|
}
|
|
|
|
public function isSecure(): bool
|
|
{
|
|
return $this->getHeader('http-x-forwarded-proto') === 'https' || $this->getHeader('https') !== null || $this->getHeader('server-port') === 443;
|
|
}
|
|
|
|
/**
|
|
* @return Url
|
|
*/
|
|
public function getUrl(): Url
|
|
{
|
|
return $this->url;
|
|
}
|
|
|
|
/**
|
|
* Copy url object
|
|
*
|
|
* @return Url
|
|
*/
|
|
public function getUrlCopy(): Url
|
|
{
|
|
return clone $this->url;
|
|
}
|
|
|
|
/**
|
|
* @return string|null
|
|
*/
|
|
public function getHost(): ?string
|
|
{
|
|
return $this->host;
|
|
}
|
|
|
|
/**
|
|
* @return string|null
|
|
*/
|
|
public function getMethod(): ?string
|
|
{
|
|
return $this->method;
|
|
}
|
|
|
|
/**
|
|
* Get http basic auth user
|
|
* @return string|null
|
|
*/
|
|
public function getUser(): ?string
|
|
{
|
|
return $this->getHeader('php-auth-user');
|
|
}
|
|
|
|
/**
|
|
* Get http basic auth password
|
|
* @return string|null
|
|
*/
|
|
public function getPassword(): ?string
|
|
{
|
|
return $this->getHeader('php-auth-pw');
|
|
}
|
|
|
|
/**
|
|
* Get all headers
|
|
* @return array
|
|
*/
|
|
public function getHeaders(): array
|
|
{
|
|
return $this->headers;
|
|
}
|
|
|
|
/**
|
|
* Get id address
|
|
* @return string|null
|
|
*/
|
|
public function getIp(): ?string
|
|
{
|
|
if ($this->getHeader('http-cf-connecting-ip') !== null) {
|
|
return $this->getHeader('http-cf-connecting-ip');
|
|
}
|
|
|
|
if($this->getHeader('http-client-ip') !== null){
|
|
return $this->getHeader('http-client-ip');
|
|
}
|
|
|
|
if ($this->getHeader('http-x-forwarded-for') !== null) {
|
|
return $this->getHeader('http-x-forwarded-for');
|
|
}
|
|
|
|
return $this->getHeader('remote-addr');
|
|
}
|
|
|
|
/**
|
|
* Get remote address/ip
|
|
*
|
|
* @alias static::getIp
|
|
* @return string|null
|
|
*/
|
|
public function getRemoteAddr(): ?string
|
|
{
|
|
return $this->getIp();
|
|
}
|
|
|
|
/**
|
|
* Get referer
|
|
* @return string|null
|
|
*/
|
|
public function getReferer(): ?string
|
|
{
|
|
return $this->getHeader('http-referer');
|
|
}
|
|
|
|
/**
|
|
* Get user agent
|
|
* @return string|null
|
|
*/
|
|
public function getUserAgent(): ?string
|
|
{
|
|
return $this->getHeader('http-user-agent');
|
|
}
|
|
|
|
/**
|
|
* Get header value by name
|
|
*
|
|
* @param string $name
|
|
* @param string|null $defaultValue
|
|
*
|
|
* @return string|null
|
|
*/
|
|
public function getHeader($name, $defaultValue = null): ?string
|
|
{
|
|
return $this->headers[strtolower($name)] ?? $defaultValue;
|
|
}
|
|
|
|
/**
|
|
* Get input class
|
|
* @return InputHandler
|
|
*/
|
|
public function getInputHandler(): InputHandler
|
|
{
|
|
return $this->inputHandler;
|
|
}
|
|
|
|
/**
|
|
* Is format accepted
|
|
*
|
|
* @param string $format
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function isFormatAccepted($format): bool
|
|
{
|
|
return ($this->getHeader('http-accept') !== null && stripos($this->getHeader('http-accept'), $format) !== false);
|
|
}
|
|
|
|
/**
|
|
* Returns true if the request is made through Ajax
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function isAjax(): bool
|
|
{
|
|
return (strtolower($this->getHeader('http-x-requested-with')) === 'xmlhttprequest');
|
|
}
|
|
|
|
/**
|
|
* Get accept formats
|
|
* @return array
|
|
*/
|
|
public function getAcceptFormats(): array
|
|
{
|
|
return explode(',', $this->getHeader('http-accept'));
|
|
}
|
|
|
|
/**
|
|
* @param Url $url
|
|
*/
|
|
public function setUrl(Url $url): void
|
|
{
|
|
$this->url = $url;
|
|
|
|
if ($this->url->getHost() === null) {
|
|
$this->url->setHost((string)$this->getHost());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param string|null $host
|
|
*/
|
|
public function setHost(?string $host): void
|
|
{
|
|
$this->host = $host;
|
|
}
|
|
|
|
/**
|
|
* @param string $method
|
|
*/
|
|
public function setMethod(string $method): void
|
|
{
|
|
$this->method = strtolower($method);
|
|
}
|
|
|
|
/**
|
|
* Set rewrite route
|
|
*
|
|
* @param ILoadableRoute $route
|
|
* @return static
|
|
*/
|
|
public function setRewriteRoute(ILoadableRoute $route): self
|
|
{
|
|
$this->hasPendingRewrite = true;
|
|
$this->rewriteRoute = SimpleRouter::addDefaultNamespace($route);
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get rewrite route
|
|
*
|
|
* @return ILoadableRoute|null
|
|
*/
|
|
public function getRewriteRoute(): ?ILoadableRoute
|
|
{
|
|
return $this->rewriteRoute;
|
|
}
|
|
|
|
/**
|
|
* Get rewrite url
|
|
*
|
|
* @return string|null
|
|
*/
|
|
public function getRewriteUrl(): ?string
|
|
{
|
|
return $this->rewriteUrl;
|
|
}
|
|
|
|
/**
|
|
* Set rewrite url
|
|
*
|
|
* @param string $rewriteUrl
|
|
* @return static
|
|
*/
|
|
public function setRewriteUrl(string $rewriteUrl): self
|
|
{
|
|
$this->hasPendingRewrite = true;
|
|
$this->rewriteUrl = rtrim($rewriteUrl, '/') . '/';
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Set rewrite callback
|
|
* @param string|\Closure $callback
|
|
* @return static
|
|
*/
|
|
public function setRewriteCallback($callback): self
|
|
{
|
|
$this->hasPendingRewrite = true;
|
|
|
|
return $this->setRewriteRoute(new RouteUrl($this->getUrl()->getPath(), $callback));
|
|
}
|
|
|
|
/**
|
|
* Get loaded route
|
|
* @return ILoadableRoute|null
|
|
*/
|
|
public function getLoadedRoute(): ?ILoadableRoute
|
|
{
|
|
return (\count($this->loadedRoutes) > 0) ? end($this->loadedRoutes) : null;
|
|
}
|
|
|
|
/**
|
|
* Get all loaded routes
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getLoadedRoutes(): array
|
|
{
|
|
return $this->loadedRoutes;
|
|
}
|
|
|
|
/**
|
|
* Set loaded routes
|
|
*
|
|
* @param array $routes
|
|
* @return static
|
|
*/
|
|
public function setLoadedRoutes(array $routes): self
|
|
{
|
|
$this->loadedRoutes = $routes;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Added loaded route
|
|
*
|
|
* @param ILoadableRoute $route
|
|
* @return static
|
|
*/
|
|
public function addLoadedRoute(ILoadableRoute $route): self
|
|
{
|
|
$this->loadedRoutes[] = $route;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Returns true if the request contains a rewrite
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function hasPendingRewrite(): bool
|
|
{
|
|
return $this->hasPendingRewrite;
|
|
}
|
|
|
|
/**
|
|
* Defines if the current request contains a rewrite.
|
|
*
|
|
* @param bool $boolean
|
|
* @return Request
|
|
*/
|
|
public function setHasPendingRewrite(bool $boolean): self
|
|
{
|
|
$this->hasPendingRewrite = $boolean;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function __isset($name)
|
|
{
|
|
return array_key_exists($name, $this->data) === true;
|
|
}
|
|
|
|
public function __set($name, $value = null)
|
|
{
|
|
$this->data[$name] = $value;
|
|
}
|
|
|
|
public function __get($name)
|
|
{
|
|
return $this->data[$name] ?? null;
|
|
}
|
|
|
|
}
|