mirror of
https://github.com/elyby/accounts.git
synced 2024-11-26 16:52:02 +05:30
88 lines
2.2 KiB
PHP
88 lines
2.2 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace common\components;
|
|
|
|
use GuzzleHttp\ClientInterface;
|
|
use Webmozart\Assert\Assert;
|
|
use Yii;
|
|
|
|
// TODO: convert to complete Chrly client library
|
|
class SkinsSystemApi {
|
|
|
|
private string $baseDomain;
|
|
|
|
private ?ClientInterface $client = null;
|
|
|
|
public function __construct(string $baseDomain) {
|
|
$this->baseDomain = $baseDomain;
|
|
}
|
|
|
|
/**
|
|
* @param string $username
|
|
* @throws \GuzzleHttp\Exception\GuzzleException
|
|
*
|
|
* @return array
|
|
*/
|
|
public function textures(string $username): ?array {
|
|
$response = $this->getClient()->request('GET', $this->buildUrl('/textures/' . $username));
|
|
if ($response->getStatusCode() !== 200) {
|
|
return null;
|
|
}
|
|
|
|
return json_decode($response->getBody()->getContents(), true);
|
|
}
|
|
|
|
/**
|
|
* @param string $username
|
|
*
|
|
* @return array|null
|
|
* @throws \GuzzleHttp\Exception\GuzzleException
|
|
*/
|
|
public function profile(string $username, bool $signed = false): ?array {
|
|
$url = "/profile/{$username}";
|
|
if ($signed) {
|
|
$url .= '?unsigned=false';
|
|
}
|
|
|
|
$response = $this->getClient()->request('GET', $this->buildUrl($url));
|
|
if ($response->getStatusCode() !== 200) {
|
|
return null;
|
|
}
|
|
|
|
return json_decode($response->getBody()->getContents(), true);
|
|
}
|
|
|
|
/**
|
|
* @param 'pem'|'der' $format
|
|
*
|
|
* @return string
|
|
* @throws \GuzzleHttp\Exception\GuzzleException
|
|
*/
|
|
public function getSignatureVerificationKey(string $format = 'pem'): string {
|
|
Assert::inArray($format, ['pem', 'der']);
|
|
|
|
return $this->getClient()
|
|
->request('GET', $this->buildUrl("/signature-verification-key.{$format}"))
|
|
->getBody()
|
|
->getContents();
|
|
}
|
|
|
|
public function setClient(ClientInterface $client): void {
|
|
$this->client = $client;
|
|
}
|
|
|
|
private function buildUrl(string $url): string {
|
|
return $this->baseDomain . $url;
|
|
}
|
|
|
|
private function getClient(): ClientInterface {
|
|
if ($this->client === null) {
|
|
$this->client = Yii::$container->get(ClientInterface::class);
|
|
}
|
|
|
|
return $this->client;
|
|
}
|
|
|
|
}
|