mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 16:21:08 +05:30
40 lines
844 B
PHP
40 lines
844 B
PHP
<?php
|
|
namespace api\modules\authserver\models;
|
|
|
|
use api\models\base\ApiForm;
|
|
use api\modules\authserver\validators\RequiredValidator;
|
|
use common\models\MinecraftAccessKey;
|
|
|
|
class InvalidateForm extends ApiForm {
|
|
|
|
public $accessToken;
|
|
|
|
public $clientToken;
|
|
|
|
public function rules() {
|
|
return [
|
|
[['accessToken', 'clientToken'], RequiredValidator::class],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return bool
|
|
* @throws \api\modules\authserver\exceptions\AuthserverException
|
|
*/
|
|
public function invalidateToken(): bool {
|
|
$this->validate();
|
|
|
|
$token = MinecraftAccessKey::findOne([
|
|
'access_token' => $this->accessToken,
|
|
'client_token' => $this->clientToken,
|
|
]);
|
|
|
|
if ($token !== null) {
|
|
$token->delete();
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
}
|