Changeset - 64f4ea89be89
[Not reviewed]
0 2 1
Lance Edgar (lance) - 16 months ago 2023-05-15 12:13:54
lance@edbob.org
Add basic HTTP client for Tailbone API

with inspiration from https://packagist.org/packages/avency/gitea
3 files changed with 80 insertions and 1 deletions:
0 comments (0 inline, 0 general)
.gitignore
Show inline comments
 
composer.lock
 
/vendor/
composer.json
Show inline comments
 
{
 
    "name": "rattail/posterior",
 
    "description": "Tailbone API Client",
 
    "type": "library",
 
    "homepage": "https://rattailproject.org",
 
    "license": "GPL-3.0-or-later",
 
    "autoload": {
 
@@ -14,5 +15,7 @@
 
            "email": "lance@edbob.org"
 
        }
 
    ],
 
    "require": {}
 
    "require": {
 
        "guzzlehttp/guzzle": "^7.0"
 
    }
 
}
src/Client.php
Show inline comments
 
new file 100644
 
<?php
 

	
 
declare(strict_types=1);
 

	
 
namespace Rattail\Posterior;
 

	
 
use Psr\Http\Message\ResponseInterface;
 

	
 
class Client
 
{
 
    private $baseURI;
 
    private $httpClient;
 
    private $inited;
 

	
 
    public function __construct($baseURI, $token, bool $verifySSL = true)
 
    {
 
        $this->baseURI = $baseURI;
 
        $parts = parse_url($baseURI);
 

	
 
        $options = [
 
            'base_uri' => $baseURI,
 
            'cookies' => true,
 
            'headers' => [
 
                'Authorization' => "Bearer {$token}",
 
                // TODO: is this a good idea, or hacky security
 
                // risk..?  without it, can get error response: 400
 
                // Client Error: Bad CSRF Origin for url
 
                'Origin' => "{$parts['scheme']}://{$parts['host']}",
 
            ],
 
            'verify' => $verifySSL,
 
        ];
 

	
 
        $this->httpClient = new \GuzzleHttp\Client($options);
 
        $this->inited = false;
 
    }
 

	
 
    private function init()
 
    {
 
        if ($this->inited) {
 
            return;
 
        }
 

	
 
        // fetch 'session' endpoint, to get current xsrf token
 
        $response = $this->get('/session');
 

	
 
        // look for xsrf token cookie
 
        $jar = $this->httpClient->getConfig('cookies');
 
        foreach ($jar->toArray() as $cookie) {
 

	
 
            // and save it when found
 
            if ($cookie['Name'] == 'XSRF-TOKEN') {
 
                $this->xsrfToken = $cookie['Value'];
 
                $this->inited = true;
 
                break;
 
            }
 
        }
 
    }
 

	
 
    public function get(string $uri = '', array $options = []): ResponseInterface
 
    {
 
        $uri = $this->baseURI . $uri;
 
        return $this->httpClient->request('GET', $uri, $options);
 
    }
 

	
 
    public function post(string $uri = '', array $data = []): ResponseInterface
 
    {
 
        $this->init();
 
        $uri = $this->baseURI . $uri;
 
        $options = [
 
            'headers' => ['X-XSRF-TOKEN' => $this->xsrfToken],
 
            'json' => $data,
 
        ];
 
        return $this->httpClient->request('POST', $uri, $options);
 
    }
 
}
0 comments (0 inline, 0 general)