mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
759 B
PHP
49 lines
759 B
PHP
<?php
|
|
|
|
namespace App\Util\HttpSignatures;
|
|
|
|
class HeaderList
|
|
{
|
|
/** @var array */
|
|
public $names;
|
|
|
|
/**
|
|
* @param array $names
|
|
*/
|
|
public function __construct(array $names)
|
|
{
|
|
$this->names = array_map(
|
|
[$this, 'normalize'],
|
|
$names
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param $string
|
|
*
|
|
* @return HeaderList
|
|
*/
|
|
public static function fromString($string)
|
|
{
|
|
return new static(explode(' ', $string));
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function string()
|
|
{
|
|
return implode(' ', $this->names);
|
|
}
|
|
|
|
/**
|
|
* @param $name
|
|
*
|
|
* @return string
|
|
*/
|
|
private function normalize($name)
|
|
{
|
|
return strtolower($name);
|
|
}
|
|
}
|