streams/Code/Web/HTTPHeaders.php
2023-07-29 11:07:38 +10:00

82 lines
2.3 KiB
PHP

<?php
namespace Code\Web;
class HTTPHeaders
{
private $in_progress = [];
private $parsed = [];
public function __construct($headers = null)
{
if (!$headers) {
return;
}
$lines = explode("\n", str_replace("\r", '', $headers));
if ($lines) {
foreach ($lines as $line) {
if (preg_match('/^\s+/', $line, $matches) && trim($line)) {
if (isset($this->in_progress['k'])) {
$this->in_progress['v'] .= ' ' . ltrim($line);
continue;
}
} else {
if (isset($this->in_progress['k'])) {
$this->parsed[] = [$this->in_progress['k'] => $this->in_progress['v']];
$this->in_progress = [];
}
$key = strtolower(substr($line, 0, strpos($line, ':')));
if ($key) {
$this->in_progress['k'] = $key;
$this->in_progress['v'] = ltrim(substr($line, strpos($line, ':') + 1));
}
}
}
if (isset($this->in_progress['k'])) {
$this->parsed[] = [$this->in_progress['k'] => $this->in_progress['v']];
$this->in_progress = [];
}
}
}
public function fetch()
{
return $this->parsed;
}
public function fetcharr()
{
$ret = [];
if ($this->parsed) {
foreach ($this->parsed as $x) {
foreach ($x as $y => $z) {
$ret[$y] = $z;
}
}
}
return $ret;
}
public function getAuthHeader()
{
$candidates = [
'HTTP_AUTHORIZATION',
'REDIRECT_HTTP_AUTHORIZATION',
'REDIRECT_REMOTE_USER',
'HTTP_SIGNATURE',
'HTTP_X_NOMAD_SIGNATURE'
];
foreach ($candidates as $candidate) {
if (!empty($_SERVER[$candidate]) && in_array($candidate, ['HTTP_SIGNATURE', 'HTTP_X_NOMAD_SIGNATURE'])) {
return 'Signature ' . $_SERVER[$candidate];
}
if (!empty($_SERVER[$candidate])) {
return $_SERVER[$candidate];
}
}
return null;
}
}