You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.4 KiB
68 lines
2.4 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
|
// +----------------------------------------------------------------------
|
|
// | Author: CRMEB Team <admin@crmeb.com>
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace crmeb\traits;
|
|
|
|
|
|
use Firebase\JWT\BeforeValidException;
|
|
use Firebase\JWT\ExpiredException;
|
|
use Firebase\JWT\JWT;
|
|
use Firebase\JWT\SignatureInvalidException;
|
|
use think\facade\Env;
|
|
use UnexpectedValueException;
|
|
|
|
trait JwtAuthModelTrait
|
|
{
|
|
/**
|
|
* @param string $type
|
|
* @param array $params
|
|
* @return array
|
|
*/
|
|
public function getToken(string $type, array $params = []): array
|
|
{
|
|
$id = $this->{$this->getPk()};
|
|
$host = app()->request->host();
|
|
$time = time();
|
|
|
|
$params += [
|
|
'iss' => $host,
|
|
'aud' => $host,
|
|
'iat' => $time,
|
|
'nbf' => $time,
|
|
'exp' => strtotime('+ 3hour'),
|
|
];
|
|
$params['jti'] = compact('id', 'type');
|
|
$token = JWT::encode($params, Env::get('app.app_key', 'default'));
|
|
|
|
return compact('token', 'params');
|
|
}
|
|
|
|
/**
|
|
* @param string $jwt
|
|
* @return array
|
|
*
|
|
* @throws UnexpectedValueException Provided JWT was invalid
|
|
* @throws SignatureInvalidException Provided JWT was invalid because the signature verification failed
|
|
* @throws BeforeValidException Provided JWT is trying to be used before it's eligible as defined by 'nbf'
|
|
* @throws BeforeValidException Provided JWT is trying to be used before it's been created as defined by 'iat'
|
|
* @throws ExpiredException Provided JWT has since expired, as defined by the 'exp' claim
|
|
*
|
|
*/
|
|
public static function parseToken(string $jwt): array
|
|
{
|
|
JWT::$leeway = 60;
|
|
|
|
$data = JWT::decode($jwt, Env::get('app.app_key', 'default'), array('HS256'));
|
|
|
|
$model = new self();
|
|
return [$model->where($model->getPk(), $data->jti->id)->find(), $data->jti->type];
|
|
}
|
|
}
|
|
|