mirror of
https://github.com/elyby/accounts.git
synced 2024-11-19 19:53:08 +05:30
dd2c4bc413
Все действия, связанные с аккаунтами, теперь вызываются через url `/api/v1/accounts/<id>/<action>`. Добавлена вменяемая система разграничения прав на основе RBAC. Теперь oAuth2 токены генерируются как случайная строка в 40 символов длинной, а не UUID. Исправлен баг с неправильным временем жизни токена в ответе успешного запроса аутентификации. Теперь все unit тесты можно успешно прогнать без наличия интернета.
33 lines
874 B
PHP
33 lines
874 B
PHP
<?php
|
|
namespace api\modules\session\models\protocols;
|
|
|
|
class ModernJoin extends BaseJoin {
|
|
|
|
private $accessToken;
|
|
private $selectedProfile;
|
|
private $serverId;
|
|
|
|
public function __construct(string $accessToken, string $selectedProfile, string $serverId) {
|
|
$this->accessToken = trim($accessToken);
|
|
$this->selectedProfile = trim($selectedProfile);
|
|
$this->serverId = trim($serverId);
|
|
}
|
|
|
|
public function getAccessToken(): string {
|
|
return $this->accessToken;
|
|
}
|
|
|
|
public function getSelectedProfile(): string {
|
|
return $this->selectedProfile;
|
|
}
|
|
|
|
public function getServerId(): string {
|
|
return $this->serverId;
|
|
}
|
|
|
|
public function validate(): bool {
|
|
return !$this->isEmpty($this->accessToken) && !$this->isEmpty($this->selectedProfile) && !$this->isEmpty($this->serverId);
|
|
}
|
|
|
|
}
|