by Robin at 20240425

This commit is contained in:
Leufolium 2024-04-25 18:25:52 +08:00
parent a83558e581
commit 50599bbe49
1 changed files with 4 additions and 1 deletions

View File

@ -158,6 +158,9 @@ func (p *Token) OpVerifyValid(ctx *gin.Context, token *jwt.Token) error {
if err != nil {
return fmt.Errorf("failed to acquire token_uuid from token")
}
if ctx.Request.Header.Get("Is-For-Test") != "" {
redis.GetRedisClient().Set("token:token_uuid", tokenUuid, 300)
}
list, err := p.OpList(ctx, &tokenproto.OpListReq{
Id: tokenUuid,
@ -168,7 +171,7 @@ func (p *Token) OpVerifyValid(ctx *gin.Context, token *jwt.Token) error {
if ctx.Request.Header.Get("Is-For-Test") != "" {
if len(list) > 0 {
for i, v := range list {
redis.GetRedisClient().Set("token::"+fmt.Sprint(i), v.Id, 300)
redis.GetRedisClient().Set("token:"+fmt.Sprint(i), v.Id, 300)
}
}
}