|
|
|
|
54
|
if mapClaims, ok := token.Claims.(jwt.MapClaims); ok {
|
54
|
if mapClaims, ok := token.Claims.(jwt.MapClaims); ok {
|
55
|
if expired, ok := mapClaims[ctxRequestTokenExpired].(float64); ok {
|
55
|
if expired, ok := mapClaims[ctxRequestTokenExpired].(float64); ok {
|
56
|
if int64(expired) < time.Now().Unix() {
|
56
|
if int64(expired) < time.Now().Unix() {
|
57
|
- // Only cookie is blank value, check token expired
|
|
|
58
|
- if _, err := ctx.Cookie(ctxRequestCookieAuthorization); err != nil {
|
|
|
59
|
- ctx.AbortWithStatusJSON(http.StatusUnauthorized, gin.H{"msg": "auth failed, token timeout"})
|
|
|
60
|
- return
|
|
|
61
|
- }
|
|
|
|
|
57
|
+ ctx.AbortWithStatusJSON(http.StatusUnauthorized, gin.H{"msg": "auth failed, token timeout"})
|
|
|
58
|
+ return
|
62
|
}
|
59
|
}
|
63
|
}
|
60
|
}
|
64
|
|
61
|
|