accounts/common/components/SkinSystem/Api.php
2018-04-17 23:47:25 +03:00

35 lines
753 B
PHP

<?php
namespace common\components\SkinSystem;
use GuzzleHttp\Client as GuzzleClient;
use Yii;
class Api {
private 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;
}
}