1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php
- 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
- {
-
- 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');
- }
-
- 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];
- }
- }
|