mirror of
https://github.com/elyby/accounts.git
synced 2024-12-23 22:00:06 +05:30
57d492da8a
* start updating to PHP 8.3
* taking off!
Co-authored-by: ErickSkrauch <erickskrauch@yandex.ru>
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
* dropped this
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
* migrate to symfonymailer
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
* this is so stupid 😭
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
* ah, free, at last.
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
* oh, Gabriel.
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
* now dawns thy reckoning.
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
* and thy gore shall GLISTEN before the temples of man.
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
* creature of steel.
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
* my gratitude upon thee for my freedom.
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
* but the crimes thy kind has committed against humanity
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
* Upgrade PHP-CS-Fixer and do fix the codebase
* First review round (maybe I have broken something)
* are NOT forgotten.
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
* Enable parallel PHP-CS-Fixer runner
* PHPStan level 1
* PHPStan level 2
* PHPStan level 3
* PHPStan level 4
* PHPStan level 5
* Levels 6 and 7 takes too much effort. Generate a baseline and fix them eventually
* Resolve TODO's related to the php-mock
* Drastically reduce baseline size with the Rector
* More code modernization with help of the Rector
* Update GitLab CI
---------
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
Co-authored-by: ErickSkrauch <erickskrauch@yandex.ru>
134 lines
4.3 KiB
PHP
134 lines
4.3 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace api\modules\session\controllers;
|
|
|
|
use api\controllers\Controller;
|
|
use api\modules\session\exceptions\ForbiddenOperationException;
|
|
use api\modules\session\exceptions\IllegalArgumentException;
|
|
use api\modules\session\exceptions\SessionServerException;
|
|
use api\modules\session\filters\RateLimiter;
|
|
use api\modules\session\models\HasJoinedForm;
|
|
use api\modules\session\models\JoinForm;
|
|
use api\modules\session\models\protocols\LegacyJoin;
|
|
use api\modules\session\models\protocols\ModernHasJoined;
|
|
use api\modules\session\models\protocols\ModernJoin;
|
|
use common\models\Account;
|
|
use common\models\Textures;
|
|
use Ramsey\Uuid\Uuid;
|
|
use Yii;
|
|
use yii\web\Response;
|
|
|
|
class SessionController extends Controller {
|
|
|
|
public function behaviors(): array {
|
|
$behaviors = parent::behaviors();
|
|
unset($behaviors['authenticator']);
|
|
$behaviors['rateLimiting'] = [
|
|
'class' => RateLimiter::class,
|
|
'only' => ['has-joined', 'has-joined-legacy'],
|
|
'authserverDomain' => Yii::$app->params['authserverHost'],
|
|
];
|
|
|
|
return $behaviors;
|
|
}
|
|
|
|
/**
|
|
* @throws ForbiddenOperationException
|
|
* @throws IllegalArgumentException
|
|
*/
|
|
public function actionJoin(Response $response): void {
|
|
$data = Yii::$app->request->post();
|
|
$protocol = new ModernJoin($data['accessToken'] ?? '', $data['selectedProfile'] ?? '', $data['serverId'] ?? '');
|
|
$joinForm = new JoinForm($protocol);
|
|
$joinForm->join(); // will throw an exception in case of any error
|
|
|
|
$response->statusCode = 204;
|
|
$response->format = Response::FORMAT_RAW;
|
|
$response->content = '';
|
|
}
|
|
|
|
public function actionJoinLegacy(): string {
|
|
Yii::$app->response->format = Response::FORMAT_RAW;
|
|
|
|
$data = Yii::$app->request->get();
|
|
$protocol = new LegacyJoin($data['user'] ?? '', $data['sessionId'] ?? '', $data['serverId'] ?? '');
|
|
$joinForm = new JoinForm($protocol);
|
|
try {
|
|
$joinForm->join();
|
|
} catch (SessionServerException $e) {
|
|
Yii::$app->response->statusCode = $e->statusCode;
|
|
if ($e instanceof ForbiddenOperationException) {
|
|
$message = 'Ely.by authorization required';
|
|
} else {
|
|
$message = $e->getMessage();
|
|
}
|
|
|
|
return $message;
|
|
}
|
|
|
|
return 'OK';
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
* @throws ForbiddenOperationException
|
|
* @throws IllegalArgumentException
|
|
*/
|
|
public function actionHasJoined(): array {
|
|
Yii::$app->response->format = Response::FORMAT_JSON;
|
|
|
|
$data = Yii::$app->request->get();
|
|
$protocol = new ModernHasJoined($data['username'] ?? '', $data['serverId'] ?? '');
|
|
$hasJoinedForm = new HasJoinedForm($protocol);
|
|
$account = $hasJoinedForm->hasJoined();
|
|
$textures = new Textures($account);
|
|
|
|
return $textures->getMinecraftResponse(true);
|
|
}
|
|
|
|
public function actionHasJoinedLegacy(): string {
|
|
Yii::$app->response->format = Response::FORMAT_RAW;
|
|
|
|
$data = Yii::$app->request->get();
|
|
$protocol = new ModernHasJoined($data['user'] ?? '', $data['serverId'] ?? '');
|
|
$hasJoinedForm = new HasJoinedForm($protocol);
|
|
try {
|
|
$hasJoinedForm->hasJoined();
|
|
} catch (ForbiddenOperationException) {
|
|
return 'NO';
|
|
} catch (SessionServerException $e) {
|
|
Yii::$app->response->statusCode = $e->statusCode;
|
|
|
|
return $e->getMessage();
|
|
}
|
|
|
|
return 'YES';
|
|
}
|
|
|
|
/**
|
|
* @param string $uuid
|
|
* @param string $unsigned
|
|
*
|
|
* @return array|null
|
|
* @throws IllegalArgumentException
|
|
*/
|
|
public function actionProfile(string $uuid, string $unsigned = null): ?array {
|
|
try {
|
|
$uuid = Uuid::fromString($uuid)->toString();
|
|
} catch (\InvalidArgumentException) {
|
|
throw new IllegalArgumentException('Invalid uuid format.');
|
|
}
|
|
|
|
/** @var Account|null $account */
|
|
$account = Account::find()->excludeDeleted()->andWhere(['uuid' => $uuid])->one();
|
|
if ($account === null) {
|
|
Yii::$app->response->setStatusCode(204);
|
|
return null;
|
|
}
|
|
|
|
return (new Textures($account))->getMinecraftResponse($unsigned === 'false');
|
|
}
|
|
|
|
}
|