Ver código fonte

all device check expire

Paul 6 anos atrás
pai
commit
8d8eada3e7
1 arquivos alterados com 2 adições e 5 exclusões
  1. 2
    5
      middleware/auth/auth.go

+ 2
- 5
middleware/auth/auth.go Ver arquivo

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