mirror of
https://github.com/elyby/accounts.git
synced 2024-11-02 17:03:10 +05:30
68 lines
1.4 KiB
PHP
68 lines
1.4 KiB
PHP
<?php
|
|
namespace api\components\User;
|
|
|
|
use common\models\AccountSession;
|
|
use DateInterval;
|
|
use DateTime;
|
|
use Yii;
|
|
use yii\web\IdentityInterface;
|
|
|
|
class LoginResult {
|
|
/**
|
|
* @var IdentityInterface
|
|
*/
|
|
private $identity;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $jwt;
|
|
|
|
/**
|
|
* @var AccountSession|null
|
|
*/
|
|
private $session;
|
|
|
|
public function __construct(IdentityInterface $identity, string $jwt, AccountSession $session = null) {
|
|
$this->identity = $identity;
|
|
$this->jwt = $jwt;
|
|
$this->session = $session;
|
|
}
|
|
|
|
public function getIdentity() : IdentityInterface {
|
|
return $this->identity;
|
|
}
|
|
|
|
public function getJwt() : string {
|
|
return $this->jwt;
|
|
}
|
|
|
|
/**
|
|
* @return AccountSession|null
|
|
*/
|
|
public function getSession() {
|
|
return $this->session;
|
|
}
|
|
|
|
public function getAsResponse() {
|
|
/** @var Component $component */
|
|
$component = Yii::$app->user;
|
|
|
|
$now = new DateTime();
|
|
$expiresIn = (clone $now)->add(new DateInterval($component->expirationTimeout));
|
|
|
|
$response = [
|
|
'access_token' => $this->getJwt(),
|
|
'expires_in' => $expiresIn->getTimestamp() - $now->getTimestamp(),
|
|
];
|
|
|
|
$session = $this->getSession();
|
|
if ($session !== null) {
|
|
$response['refresh_token'] = $session->refresh_token;
|
|
}
|
|
|
|
return $response;
|
|
}
|
|
|
|
}
|