Files
toutoukan/controllers/user/userLogout.go
2025-09-15 11:09:22 +08:00

27 lines
612 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package user
import (
"fmt"
"github.com/gin-gonic/gin"
"toutoukan/init/redisInit"
"toutoukan/utill/jwt"
)
// 登出功能从Redis删除令牌
func LogoutHandler(c *gin.Context) {
tokenString := jwt.ExtractTokenFromHeader(c)
if tokenString == "" {
c.JSON(400, gin.H{"error": "令牌不存在", "code": "10038"})
return
}
redisKey := fmt.Sprintf("jwt:%s", tokenString)
err := redisInit.RedisClient.Del(redisInit.Ctx, redisKey).Err()
if err != nil {
c.JSON(500, gin.H{"error": "登出失败", "code": "10039"})
return
}
c.JSON(200, gin.H{"code": "20002", "message": "登出成功"})
}