mirror of
https://github.com/elyby/accounts.git
synced 2024-11-08 13:42:30 +05:30
Implemented missing endpoint for the authlib injector
This commit is contained in:
parent
e6b6f3f169
commit
202099bf84
@ -52,4 +52,5 @@ return [
|
||||
'/authlib-injector/sessionserver/session/minecraft/join' => 'session/session/join',
|
||||
'/authlib-injector/sessionserver/session/minecraft/hasJoined' => 'session/session/has-joined',
|
||||
'/authlib-injector/sessionserver/session/minecraft/profile/<uuid>' => 'session/session/profile',
|
||||
'/authlib-injector/api/profiles/minecraft' => 'mojang/api/uuids-by-usernames',
|
||||
];
|
||||
|
@ -1,4 +1,6 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace api\modules\mojang\controllers;
|
||||
|
||||
use api\controllers\Controller;
|
||||
@ -6,15 +8,23 @@ use common\models\Account;
|
||||
use common\models\UsernameHistory;
|
||||
use Ramsey\Uuid\Uuid;
|
||||
use Yii;
|
||||
use yii\filters\VerbFilter;
|
||||
use yii\helpers\ArrayHelper;
|
||||
use yii\helpers\UnsetArrayValue;
|
||||
use yii\web\Response;
|
||||
|
||||
class ApiController extends Controller {
|
||||
|
||||
public function behaviors(): array {
|
||||
$behaviors = parent::behaviors();
|
||||
unset($behaviors['authenticator']);
|
||||
|
||||
return $behaviors;
|
||||
return ArrayHelper::merge(parent::behaviors(), [
|
||||
'authenticator' => new UnsetArrayValue(),
|
||||
'verbs' => [
|
||||
'class' => VerbFilter::class,
|
||||
'actions' => [
|
||||
'actionUuidsByUsernames' => ['POST'],
|
||||
],
|
||||
],
|
||||
]);
|
||||
}
|
||||
|
||||
public function actionUuidByUsername($username, $at = null) {
|
||||
|
105
api/tests/functional/authlibInjector/MinecraftProfilesCest.php
Normal file
105
api/tests/functional/authlibInjector/MinecraftProfilesCest.php
Normal file
@ -0,0 +1,105 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace api\tests\functional\authlibInjector;
|
||||
|
||||
use api\tests\FunctionalTester;
|
||||
|
||||
final class MinecraftProfilesCest {
|
||||
|
||||
public function geUuidByOneUsername(FunctionalTester $I) {
|
||||
$I->sendPOST('/api/authlib-injector/api/profiles/minecraft', ['Admin']);
|
||||
$I->canSeeResponseCodeIs(200);
|
||||
$I->canSeeResponseContainsJson([
|
||||
[
|
||||
'id' => 'df936908b2e1544d96f82977ec213022',
|
||||
'name' => 'Admin',
|
||||
],
|
||||
]);
|
||||
}
|
||||
|
||||
public function getUuidsByUsernames(FunctionalTester $I) {
|
||||
$I->sendPOST('/api/authlib-injector/api/profiles/minecraft', ['Admin', 'AccWithOldPassword', 'Notch']);
|
||||
$this->validateFewValidUsernames($I);
|
||||
}
|
||||
|
||||
public function getUuidsByUsernamesWithPostString(FunctionalTester $I) {
|
||||
$I->sendPOST(
|
||||
'/api/authlib-injector/api/profiles/minecraft',
|
||||
json_encode(['Admin', 'AccWithOldPassword', 'Notch']),
|
||||
);
|
||||
$this->validateFewValidUsernames($I);
|
||||
}
|
||||
|
||||
public function getUuidsByPartialNonexistentUsernames(FunctionalTester $I) {
|
||||
$I->sendPOST('/api/authlib-injector/api/profiles/minecraft', ['Admin', 'DeletedAccount', 'not-exists-user']);
|
||||
$I->canSeeResponseCodeIs(200);
|
||||
$I->canSeeResponseContainsJson([
|
||||
[
|
||||
'id' => 'df936908b2e1544d96f82977ec213022',
|
||||
'name' => 'Admin',
|
||||
],
|
||||
]);
|
||||
$I->cantSeeResponseJsonMatchesJsonPath('$.[?(@.name="DeletedAccount")]');
|
||||
$I->cantSeeResponseJsonMatchesJsonPath('$.[?(@.name="not-exists-user")]');
|
||||
}
|
||||
|
||||
public function passAllNonexistentUsernames(FunctionalTester $I) {
|
||||
$I->sendPOST('/api/authlib-injector/api/profiles/minecraft', ['not-exists-1', 'not-exists-2']);
|
||||
$I->canSeeResponseCodeIs(200);
|
||||
$I->canSeeResponseIsJson();
|
||||
$I->canSeeResponseEquals('[]');
|
||||
}
|
||||
|
||||
public function passTooManyUsernames(FunctionalTester $I) {
|
||||
$usernames = [];
|
||||
for ($i = 0; $i < 150; $i++) {
|
||||
$usernames[] = random_bytes(10);
|
||||
}
|
||||
|
||||
$I->sendPOST('/api/authlib-injector/api/profiles/minecraft', $usernames);
|
||||
$I->canSeeResponseCodeIs(400);
|
||||
$I->canSeeResponseContainsJson([
|
||||
'error' => 'IllegalArgumentException',
|
||||
'errorMessage' => 'Not more that 100 profile name per call is allowed.',
|
||||
]);
|
||||
}
|
||||
|
||||
public function passEmptyUsername(FunctionalTester $I) {
|
||||
$I->sendPOST('/api/authlib-injector/api/profiles/minecraft', ['Admin', '']);
|
||||
$I->canSeeResponseCodeIs(400);
|
||||
$I->canSeeResponseContainsJson([
|
||||
'error' => 'IllegalArgumentException',
|
||||
'errorMessage' => 'profileName can not be null, empty or array key.',
|
||||
]);
|
||||
}
|
||||
|
||||
public function passEmptyField(FunctionalTester $I) {
|
||||
$I->sendPOST('/api/authlib-injector/api/profiles/minecraft', []);
|
||||
$I->canSeeResponseCodeIs(400);
|
||||
$I->canSeeResponseContainsJson([
|
||||
'error' => 'IllegalArgumentException',
|
||||
'errorMessage' => 'Passed array of profile names is an invalid JSON string.',
|
||||
]);
|
||||
}
|
||||
|
||||
private function validateFewValidUsernames(FunctionalTester $I) {
|
||||
$I->canSeeResponseCodeIs(200);
|
||||
$I->canSeeResponseIsJson();
|
||||
$I->canSeeResponseContainsJson([
|
||||
[
|
||||
'id' => 'df936908b2e1544d96f82977ec213022',
|
||||
'name' => 'Admin',
|
||||
],
|
||||
[
|
||||
'id' => 'bdc239f08a22518d8b93f02d4827c3eb',
|
||||
'name' => 'AccWithOldPassword',
|
||||
],
|
||||
[
|
||||
'id' => '4aaf4f003b5b4d3692529e8ee0c86679',
|
||||
'name' => 'Notch',
|
||||
],
|
||||
]);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user