mirror of
https://github.com/elyby/accounts.git
synced 2024-11-10 07:22:00 +05:30
35 lines
745 B
PHP
35 lines
745 B
PHP
<?php
|
|
namespace common\components\SkinSystem;
|
|
|
|
use GuzzleHttp\Client as GuzzleClient;
|
|
use Yii;
|
|
|
|
class Api {
|
|
|
|
const BASE_DOMAIN = 'http://skinsystem.ely.by';
|
|
|
|
/**
|
|
* @param string $username
|
|
* @throws \GuzzleHttp\Exception\GuzzleException
|
|
*
|
|
* @return array
|
|
*/
|
|
public function textures(string $username): array {
|
|
$response = $this->getClient()->get($this->getBuildUrl('/textures/' . $username));
|
|
|
|
return json_decode($response->getBody(), true);
|
|
}
|
|
|
|
protected function getBuildUrl(string $url): string {
|
|
return self::BASE_DOMAIN . $url;
|
|
}
|
|
|
|
/**
|
|
* @return GuzzleClient
|
|
*/
|
|
protected function getClient(): GuzzleClient {
|
|
return Yii::$app->guzzle;
|
|
}
|
|
|
|
}
|