RateLimiter::class, 'only' => ['has-joined', 'has-joined-legacy'], 'authserverDomain' => Yii::$app->params['authserverHost'], ]; return $behaviors; } public function actionJoin() { Yii::$app->response->format = Response::FORMAT_JSON; $data = Yii::$app->request->post(); $protocol = new ModernJoin($data['accessToken'] ?? '', $data['selectedProfile'] ?? '', $data['serverId'] ?? ''); $joinForm = new JoinForm($protocol); $joinForm->join(); return ['id' => 'OK']; } public function actionJoinLegacy() { 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'; } public function actionHasJoined() { 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(); } public function actionHasJoinedLegacy() { 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 $e) { return 'NO'; } catch (SessionServerException $e) { Yii::$app->response->statusCode = $e->statusCode; return $e->getMessage(); } return 'YES'; } public function actionProfile($uuid) { try { $uuid = Uuid::fromString($uuid)->toString(); } catch (\InvalidArgumentException $e) { throw new IllegalArgumentException('Invalid uuid format.'); } $account = Account::findOne(['uuid' => $uuid]); if ($account === null) { throw new ForbiddenOperationException('Invalid uuid.'); } return (new Textures($account))->getMinecraftResponse(); } }