mirror of
https://github.com/elyby/accounts.git
synced 2024-11-10 07:22:00 +05:30
55 lines
1.6 KiB
PHP
55 lines
1.6 KiB
PHP
<?php
|
|
namespace common\components\Mojang;
|
|
|
|
use common\components\Mojang\exceptions\MojangApiException;
|
|
use common\components\Mojang\exceptions\NoContentException;
|
|
use common\components\Mojang\response\UsernameToUUIDResponse;
|
|
use Yii;
|
|
|
|
class Api {
|
|
|
|
/**
|
|
* @param string $username
|
|
* @param int $atTime
|
|
*
|
|
* @return UsernameToUUIDResponse
|
|
* @throws MojangApiException
|
|
* @throws NoContentException|\GuzzleHttp\Exception\RequestException
|
|
* @url http://wiki.vg/Mojang_API#Username_-.3E_UUID_at_time
|
|
*/
|
|
public function usernameToUUID($username, $atTime = null) {
|
|
$query = [];
|
|
if ($atTime !== null) {
|
|
$query['atTime'] = $atTime;
|
|
}
|
|
|
|
$response = $this->getClient()->get($this->buildUsernameToUUIDRoute($username), $query);
|
|
if ($response->getStatusCode() === 204) {
|
|
throw new NoContentException('Username not found');
|
|
} elseif ($response->getStatusCode() !== 200) {
|
|
throw new MojangApiException('Unexpected request result');
|
|
}
|
|
|
|
$data = json_decode($response->getBody(), true);
|
|
$responseObj = new UsernameToUUIDResponse();
|
|
$responseObj->id = $data['id'];
|
|
$responseObj->name = $data['name'];
|
|
$responseObj->legacy = isset($data['legacy']);
|
|
$responseObj->demo = isset($data['demo']);
|
|
|
|
return $responseObj;
|
|
}
|
|
|
|
/**
|
|
* @return \GuzzleHttp\Client
|
|
*/
|
|
protected function getClient() {
|
|
return Yii::$app->guzzle;
|
|
}
|
|
|
|
protected function buildUsernameToUUIDRoute($username) {
|
|
return 'https://api.mojang.com/users/profiles/minecraft/' . $username;
|
|
}
|
|
|
|
}
|