by Robin at 20240425
This commit is contained in:
parent
8f574d73fb
commit
7a9f955262
|
@ -157,6 +157,7 @@ func (p *Token) OpVerifyValid(ctx *gin.Context, token *jwt.Token) error {
|
|||
if err != nil {
|
||||
return fmt.Errorf("failed to acquire token_uuid from token")
|
||||
}
|
||||
logger.Info("token_uuid: %v", tokenUuid)
|
||||
|
||||
list, err := p.OpList(ctx, &tokenproto.OpListReq{
|
||||
Id: tokenUuid,
|
||||
|
@ -164,6 +165,11 @@ func (p *Token) OpVerifyValid(ctx *gin.Context, token *jwt.Token) error {
|
|||
if err != nil {
|
||||
return fmt.Errorf("OpList failed")
|
||||
}
|
||||
if len(list) > 0 {
|
||||
for _, v := range list {
|
||||
logger.Info("token_id: %v, token_mid: %v", v.Id, v.Mid)
|
||||
}
|
||||
}
|
||||
if len(list) == 0 {
|
||||
return fmt.Errorf("登录失效,请重新登录!")
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue