Skip to content

Commit 226ecd9

Browse files
committed
feat:注销令牌
1 parent a9dea02 commit 226ecd9

File tree

3 files changed

+35
-0
lines changed

3 files changed

+35
-0
lines changed

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,12 @@ return \support\Db::table('resty_user')
131131
->first();
132132
}
133133
```
134+
> 8、令牌清理
135+
136+
```php
137+
$user = Tinywan\Jwt\JwtToken::clear();
138+
```
139+
只有配置项 `is_single_device``true` 才会生效
134140

135141
## 签名算法
136142

src/JwtToken.php

+13
Original file line numberDiff line numberDiff line change
@@ -347,4 +347,17 @@ private static function _getConfig(): array
347347
}
348348
return $config;
349349
}
350+
351+
/**
352+
* @desc: 注销令牌
353+
* @return bool
354+
*/
355+
public static function clear(): bool
356+
{
357+
$config = self::_getConfig();
358+
if ($config['is_single_device']) {
359+
return RedisHandler::clearToken($config['cache_token_pre'], self::getCurrentId());
360+
}
361+
return true;
362+
}
350363
}

src/RedisHandler.php

+16
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,20 @@ public static function verifyToken(string $pre, string $uid, string $token): boo
5151
}
5252
return true;
5353
}
54+
55+
/**
56+
* @desc: 清理缓存令牌
57+
* @param string $pre
58+
* @param string $uid
59+
* @return bool
60+
* @author Tinywan(ShaoBo Wan)
61+
*/
62+
public static function clearToken(string $pre, string $uid): bool
63+
{
64+
$token = Redis::keys($pre . $uid . ':*');
65+
if ($token) {
66+
Redis::del(current($token));
67+
}
68+
return true;
69+
}
5470
}

0 commit comments

Comments
 (0)