phpOMS/Message/RequestAbstract.php

273 lines
4.8 KiB
PHP

<?php
/**
* Orange Management
*
* PHP Version 7.4
*
* @package phpOMS\Message
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
namespace phpOMS\Message;
use phpOMS\Uri\UriInterface;
/**
* Request class.
*
* @package phpOMS\Message
* @license OMS License 1.0
* @link https://orange-management.org
* @since 1.0.0
*/
abstract class RequestAbstract implements MessageInterface
{
/**
* Uri.
*
* @var UriInterface
* @since 1.0.0
*/
public UriInterface $uri;
/**
* Request data.
*
* @var array
* @since 1.0.0
*/
protected array $data = [];
/**
* Files data.
*
* @var array
* @since 1.0.0
*/
protected array $files = [];
/**
* Request lock.
*
* @var bool
* @since 1.0.0
*/
protected bool $lock = false;
/**
* Request header.
*
* @var HeaderAbstract
* @since 1.0.0
*/
public HeaderAbstract $header;
/**
* Request hash.
*
* @var string[]
* @since 1.0.0
*/
protected array $hash = [];
/**
* Get data.
*
* @param string $key Data key
*
* @return mixed
*
* @since 1.0.0
*/
public function getData(string $key = null) : mixed
{
if ($key === null) {
return $this->data;
}
$key = \mb_strtolower($key);
return $this->data[$key] ?? null;
}
/**
* Get data.
*
* @param string $key Data key
*
* @return array
*
* @since 1.0.0
*/
public function getDataJson(string $key) : array
{
$key = \mb_strtolower($key);
if (!isset($this->data[$key])) {
return [];
}
$json = \json_decode($this->data[$key], true);
return $json === false ? [] : $json ?? [];
}
/**
* Get data.
*
* @param string $key Data key
* @param string $delim Data delimiter
*
* @return array
*
* @since 1.0.0
*/
public function getDataList(string $key, string $delim = ',') : array
{
$key = \mb_strtolower($key);
if (!isset($this->data[$key])) {
return [];
}
$list = \explode($delim, $this->data[$key]);
if ($list === false) {
return []; // @codeCoverageIgnore
}
foreach ($list as $i => $e) {
$list[$i] = \trim($e);
}
return $list;
}
/**
* Get data based on wildcard.
*
* @param string $regex Regex data key
*
* @return array
*
* @since 1.0.0
*/
public function getLike(string $regex) : array
{
$data = [];
foreach ($this->data as $key => $value) {
if (\preg_match('/' . $regex . '/', $key) === 1) {
$data[$key] = $value;
}
}
return $data;
}
/**
* Check if has data.
*
* @param string $key Data key
*
* @return bool
*
* @since 1.0.0
*/
public function hasData(string $key) : bool
{
return isset($this->data[$key]);
}
/**
* Set request data.
*
* @param string $key Data key
* @param mixed $value Value
* @param bool $overwrite Overwrite data
*
* @return bool
*
* @since 1.0.0
*/
public function setData(string $key, mixed $value, bool $overwrite = false) : bool
{
if (!$this->lock) {
$key = \mb_strtolower($key);
if ($overwrite || !isset($this->data[$key])) {
$this->data[$key] = $value;
return true;
}
}
return false;
}
/**
* Lock request for further manipulations.
*
* @return void
*
* @since 1.0.0
*/
public function lock() : void
{
$this->lock = true;
}
/**
* Get request language.
*
* @return string
*
* @since 1.0.0
*/
public function getLanguage() : string
{
return $this->header->l11n->getLanguage();
}
/**
* Get request hash.
*
* @return string[]
*
* @since 1.0.0
*/
public function getHash() : array
{
return $this->hash;
}
/**
* Get the origin request source (IPv4/IPv6)
*
* @return string
*/
abstract public function getOrigin() : string;
/**
* {@inheritdoc}
*/
public function __toString() : string
{
return $this->uri->__toString();
}
/**
* Get files.
*
* @return array
*
* @since 1.0.0
*/
public function getFiles() : array
{
return $this->files;
}
}