mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +00:00
271 lines
5.2 KiB
PHP
271 lines
5.2 KiB
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.2
|
|
*
|
|
* @package phpOMS\Message\Http
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link http://website.orange-management.de
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\Message\Console;
|
|
|
|
use phpOMS\Message\HeaderAbstract;
|
|
use phpOMS\DataStorage\LockException;
|
|
|
|
/**
|
|
* Response class.
|
|
*
|
|
* @package phpOMS\Message\Http
|
|
* @license OMS License 1.0
|
|
* @link http://website.orange-management.de
|
|
* @since 1.0.0
|
|
*
|
|
* @SuppressWarnings(PHPMD.Superglobals)
|
|
*/
|
|
final class Header extends HeaderAbstract
|
|
{
|
|
/**
|
|
* Protocol version.
|
|
*
|
|
* @var string
|
|
* @since 1.0.0
|
|
*/
|
|
private const VERSION = '1.0';
|
|
|
|
/**
|
|
* Header.
|
|
*
|
|
* @var string[][]
|
|
* @since 1.0.0
|
|
*/
|
|
private $header = [];
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function __construct()
|
|
{
|
|
$this->set('Content-Type', 'text/html; charset=utf-8');
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* Set header.
|
|
*
|
|
* @param string $key Header key (case insensitive)
|
|
* @param string $header Header value
|
|
* @param bool $overwrite Overwrite if already existing
|
|
*
|
|
* @return bool
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function set(string $key, string $header, bool $overwrite = false) : bool
|
|
{
|
|
if (self::$isLocked) {
|
|
return false;
|
|
}
|
|
|
|
if (self::isSecurityHeader($key) && isset($this->header[$key])) {
|
|
return false;
|
|
}
|
|
|
|
$key = \strtolower($key);
|
|
|
|
if (!$overwrite && isset($this->header[$key])) {
|
|
return false;
|
|
}
|
|
|
|
unset($this->header[$key]);
|
|
|
|
if (!isset($this->header[$key])) {
|
|
$this->header[$key] = [];
|
|
}
|
|
|
|
$this->header[$key][] = $header;
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Is security header.
|
|
*
|
|
* @param string $key Header key
|
|
*
|
|
* @return bool
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public static function isSecurityHeader(string $key) : bool
|
|
{
|
|
$key = \strtolower($key);
|
|
|
|
return $key === 'content-security-policy'
|
|
|| $key === 'x-xss-protection'
|
|
|| $key === 'x-content-type-options'
|
|
|| $key === 'x-frame-options';
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getProtocolVersion() : string
|
|
{
|
|
return self::VERSION;
|
|
}
|
|
|
|
/**
|
|
* Get status code.
|
|
*
|
|
* @return int
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function getStatusCode() : int
|
|
{
|
|
if ($this->status === 0) {
|
|
$this->status = (int) \http_response_code();
|
|
}
|
|
|
|
return parent::getStatusCode();
|
|
}
|
|
|
|
/**
|
|
* Get all headers for apache and nginx
|
|
*
|
|
* @return array
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public static function getAllHeaders() : array
|
|
{
|
|
if (function_exists('getallheaders')) {
|
|
// @codeCoverageIgnoreStart
|
|
return getallheaders();
|
|
// @codeCoverageIgnoreEnd
|
|
}
|
|
|
|
$headers = [];
|
|
foreach ($_SERVER as $name => $value) {
|
|
$part = \substr($name, 5);
|
|
if ($part === 'HTTP_') {
|
|
$headers[\str_replace(' ', '-', \ucwords(\strtolower(\str_replace('_', ' ', $part))))] = $value;
|
|
}
|
|
}
|
|
|
|
return $headers;
|
|
}
|
|
|
|
/**
|
|
* Remove header by ID.
|
|
*
|
|
* @param mixed $key Header key
|
|
*
|
|
* @return bool
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function remove($key) : bool
|
|
{
|
|
if (self::$isLocked) {
|
|
return false;
|
|
}
|
|
|
|
if (isset($this->header[$key])) {
|
|
unset($this->header[$key]);
|
|
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getReasonPhrase() : string
|
|
{
|
|
$phrases = $this->get('Status');
|
|
|
|
return empty($phrases) ? '' : $phrases[0];
|
|
}
|
|
|
|
/**
|
|
* Get header by name.
|
|
*
|
|
* @param string $key Header key
|
|
*
|
|
* @return array
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function get(string $key) : array
|
|
{
|
|
return $this->header[strtolower($key)] ?? [];
|
|
}
|
|
|
|
/**
|
|
* Check if header is defined.
|
|
*
|
|
* @param string $key Header key
|
|
*
|
|
* @return bool
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function has(string $key) : bool
|
|
{
|
|
return isset($this->header[$key]);
|
|
}
|
|
|
|
/**
|
|
* Push all headers.
|
|
*
|
|
* @return void
|
|
*
|
|
* @since 1.0.0
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public function push() : void
|
|
{
|
|
if (self::$isLocked) {
|
|
throw new \Exception('Already locked');
|
|
}
|
|
|
|
foreach ($this->header as $name => $arr) {
|
|
foreach ($arr as $ele => $value) {
|
|
header($name . ': ' . $value);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function generate(int $code) : void
|
|
{
|
|
switch ($code) {
|
|
default:
|
|
$this->generate500();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Generate predefined header.
|
|
*
|
|
* @return void
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
private function generate500() : void
|
|
{
|
|
}
|
|
}
|