2023-05-02 00:10:55 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @package Joomla.Component.Builder
|
|
|
|
*
|
|
|
|
* @created 4th September, 2022
|
|
|
|
* @author Llewellyn van der Merwe <https://dev.vdm.io>
|
|
|
|
* @git Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
|
|
|
|
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
|
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace VDM\Joomla\Gitea\Utilities;
|
|
|
|
|
|
|
|
|
|
|
|
use Joomla\CMS\Http\Http as JoomlaHttp;
|
|
|
|
use Joomla\Registry\Registry;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The Gitea Http
|
|
|
|
*
|
|
|
|
* @since 3.2.0
|
|
|
|
*/
|
|
|
|
final class Http extends JoomlaHttp
|
|
|
|
{
|
2023-10-24 07:46:36 +00:00
|
|
|
/**
|
|
|
|
* The token
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
* @since 3.2.0
|
|
|
|
*/
|
|
|
|
protected string $_token_; // to avoid collusions (but allow swapping)
|
|
|
|
|
2023-05-02 00:10:55 +00:00
|
|
|
/**
|
|
|
|
* 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))
|
|
|
|
{
|
2024-03-02 20:10:30 +00:00
|
|
|
$config['headers']['Authorization'] = $token;
|
2023-10-24 07:46:36 +00:00
|
|
|
$this->_token_ = $token;
|
2023-05-02 00:10:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$options = new Registry($config);
|
|
|
|
|
|
|
|
// run parent constructor
|
|
|
|
parent::__construct($options);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Change the Token.
|
|
|
|
*
|
|
|
|
* @param string $token The Gitea API token.
|
|
|
|
*
|
|
|
|
* @since 3.2.0
|
|
|
|
**/
|
2023-10-24 07:46:36 +00:00
|
|
|
public function setToken(string $token): void
|
2023-05-02 00:10:55 +00:00
|
|
|
{
|
|
|
|
// get the current headers
|
|
|
|
$headers = (array) $this->getOption('headers', [
|
|
|
|
'Content-Type' => 'application/json'
|
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
// add the token
|
2024-03-02 20:10:30 +00:00
|
|
|
$headers['Authorization'] = $token;
|
2023-10-24 07:46:36 +00:00
|
|
|
$this->_token_ = $token;
|
2023-05-02 00:10:55 +00:00
|
|
|
|
|
|
|
$this->setOption('headers', $headers);
|
2023-10-24 07:46:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the Token.
|
|
|
|
*
|
|
|
|
* @return string|null
|
|
|
|
* @since 3.2.0
|
|
|
|
**/
|
|
|
|
public function getToken(): ?string
|
|
|
|
{
|
|
|
|
return $this->_token_ ?? null;
|
2023-10-20 18:29:19 +00:00
|
|
|
}
|
2023-05-02 00:10:55 +00:00
|
|
|
}
|
|
|
|
|