gitea/src/ce40b3d2-226c-4a64-b116-c19.../code.power

71 lines
1.3 KiB
Plaintext

/**
* The token
*
* @var string
* @since 3.2.0
*/
protected string $_token_; // to avoid collusions (but allow swapping)
/**
* Constructor.
*
* @param string|null $token The Gitea API token.
*
* @since 3.2.0
* @throws \InvalidArgumentException
**/
public function __construct(?string $token)
{
// setup config
$config = [
'userAgent' => 'JoomlaGitea/3.0',
'headers' => [
'Content-Type' => 'application/json'
]
];
// add the token if given
if (is_string($token))
{
$config['headers']['Authorization'] = $token;
$this->_token_ = $token;
}
$options = new Registry($config);
// run parent constructor
parent::__construct($options);
}
/**
* Change the Token.
*
* @param string $token The Gitea API token.
*
* @since 3.2.0
**/
public function setToken(string $token): void
{
// get the current headers
$headers = (array) $this->getOption('headers', [
'Content-Type' => 'application/json'
]
);
// add the token
$headers['Authorization'] = $token;
$this->_token_ = $token;
$this->setOption('headers', $headers);
}
/**
* Get the Token.
*
* @return string|null
* @since 3.2.0
**/
public function getToken(): ?string
{
return $this->_token_ ?? null;
}