phpOMS/Message/RequestAbstract.php
2017-08-22 12:46:56 +02:00

374 lines
6.1 KiB
PHP

<?php
/**
* Orange Management
*
* PHP Version 7.1
*
* @category TBD
* @package TBD
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link http://orange-management.com
*/
declare(strict_types=1);
namespace phpOMS\Message;
use phpOMS\Stdlib\Base\Exception\InvalidEnumValue;
use phpOMS\Localization\Localization;
use phpOMS\Uri\UriInterface;
/**
* Request class.
*
* @property mixed request
*
* @category Request
* @package Framework
* @license OMS License 1.0
* @link http://orange-management.com
* @since 1.0.0
*/
abstract class RequestAbstract implements MessageInterface
{
/**
* Uri.
*
* @var UriInterface
* @since 1.0.0
*/
protected $uri = null;
/**
* Request method.
*
* @var string
* @since 1.0.0
*/
protected $method = null;
/**
* Request type.
*
* @var string
* @since 1.0.0
*/
protected $type = null;
/**
* Root.
*
* @var string
* @since 1.0.0
*/
protected $rootPath = null;
/**
* Request data.
*
* @var array
* @since 1.0.0
*/
protected $data = [];
/**
* Request data.
*
* @var array
* @since 1.0.0
*/
protected $path = [];
/**
* Localization.
*
* @var Localization
* @since 1.0.0
*/
protected $l11n = null;
/**
* Language.
*
* @var string
* @since 1.0.0
*/
protected $language = '';
/**
* Account.
*
* @var int
* @since 1.0.0
*/
protected $account = null;
/**
* Request type.
*
* @var \phpOMS\Message\RequestSource
* @since 1.0.0
*/
protected $source = RequestSource::UNDEFINED;
/**
* Request hash.
*
* @var array
* @since 1.0.0
*/
protected $hash = [];
/**
* Request lock.
*
* @var bool
* @since 1.0.0
*/
protected $lock = false;
/**
* Request header.
*
* @var HeaderAbstract
* @since 1.0.0
*/
protected $header = null;
/**
* Constructor.
*
* @since 1.0.0
*/
public function __construct()
{
}
/**
* Get request uri.
*
* @return UriInterface
*
* @since 1.0.0
*/
public function getUri() : UriInterface
{
return $this->uri;
}
/**
* Set request uri.
*
* @param UriInterface $uri
*
* @since 1.0.0
*/
public function setUri(UriInterface $uri) /* : void */
{
$this->uri = $uri;
}
/**
* Get request language.
*
* @return string
*
* @since 1.0.0
*/
abstract public function getLanguage() : string;
/**
* Get request hash.
*
* @return array
*
* @since 1.0.0
*/
public function getHash() : array
{
return $this->hash;
}
/**
* Get request source.
*
* @return int
*
* @since 1.0.0
*/
public function getRequestSource() : int
{
return $this->source;
}
/**
* Set request source.
*
* @param int $source Request source
*
* @return void
*
* @since 1.0.0
*/
public function setRequestSource(int $source) /* : void */
{
if (!RequestSource::isValidValue($source)) {
throw new InvalidEnumValue((string) $source);
}
$this->source = $source;
}
/**
* Get request method.
*
* @return string
*
* @since 1.0.0
*/
abstract public function getMethod() : string;
/**
* Set request method.
*
* @param string $method
*
* @since 1.0.0
*/
public function setMethod(string $method) /* : void */
{
$this->method = $method;
}
/**
* {@inheritdoc}
*/
public function getPath($key = null) /* : ?string */
{
if ($key === null) {
return $this->path;
}
return $this->path[$key] ?? null;
}
/**
* {@inheritdoc}
*/
public function getData($key = null)
{
if(!isset($key)) {
return $this->data;
}
$key = mb_strtolower($key);
return $this->data[$key] ?? null;
}
/**
* Set request data.
*
* @param mixed $key Data key
* @param mixed $value Value
* @param bool $overwrite Overwrite data
*
* @return bool
*
* @since 1.0.0
*/
public function setData($key, $value, bool $overwrite = true) : bool
{
if (!$this->lock) {
$key = mb_strtolower($key);
if ($overwrite || !isset($this->data[$key])) {
$this->data[$key] = $value;
return true;
}
}
return false;
}
/**
* {@inheritdoc}
*/
public function getL11n() : Localization
{
return $this->l11n;
}
/**
* Lock request for further manipulations.
*
* @return void
*
* @since 1.0.0
*/
public function lock() /* : void */
{
$this->lock = true;
}
/**
* {@inheritdoc}
*/
public function getAccount() : int
{
return $this->account;
}
/**
* {@inheritdoc}
*/
public function setAccount(int $account) /* : void */
{
$this->account = $account;
}
/**
* Get request header.
*
* @return HeaderAbstract
*
* @since 1.0.0
*/
public function getHeader() : HeaderAbstract
{
return $this->header;
}
/**
* {@inheritdoc}
*/
public abstract function getOrigin() : string;
/**
* {@inheritdoc}
*/
public function __toString()
{
return $this->uri->__toString();
}
/**
* Get request target.
*
* @return string
*
* @since 1.0.0
*/
abstract public function getRequestTarget() : string;
/**
* Get route verb.
*
* @return int
*
* @since 1.0.0
*/
abstract public function getRouteVerb() : int;
}