1 Star 0 Fork 0

xingang/gcore

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
TokenMiddleware.go 949 Bytes
一键复制 编辑 原始数据 按行查看 历史
xingang 提交于 2022-07-12 16:27 . 验证token
package middlewares
import (
"gitee.com/qq358678184_admin/gcore/helper"
"github.com/gin-gonic/gin"
"net/http"
)
func TokenMiddleware(validateToken bool) gin.HandlerFunc {
return func(c *gin.Context) {
if !validateToken {
c.Next()
return
}
var token = c.Request.Header.Get("token")
if token == "" {
var cook, _ = c.Request.Cookie("token")
if cook != nil {
token = cook.Value
}
}
if token == "" {
//c.AbortWithStatus(http.StatusNoContent)
helper.GetHttpResponseInstance().SessionInValid(c)
//c.AbortWithStatus(http.StatusBadRequest)
c.AbortWithStatus(http.StatusOK)
return
}
if token == "BaseServiceadmin" {
c.Next()
return
}
tokenInfo := NewUserTokenCache().GetTokenInfo(token)
if tokenInfo == nil || tokenInfo.UserID == 0 {
helper.GetHttpResponseInstance().SessionInValid(c)
c.AbortWithStatus(http.StatusOK)
return
}
NewUserTokenCache().Refresh(token)
c.Next()
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/qq358678184_admin/gcore.git
git@gitee.com:qq358678184_admin/gcore.git
qq358678184_admin
gcore
gcore
996657994fe3

搜索帮助