Paul il y a 6 ans
Parent
révision
dc9695a41e
2 fichiers modifiés avec 25 ajouts et 17 suppressions
  1. 13
    9
      middleware/auth/auth.go
  2. 12
    8
      middleware/auth/optional_auth.go

+ 13
- 9
middleware/auth/auth.go Voir le fichier

51
 			return
51
 			return
52
 		}
52
 		}
53
 
53
 
54
-		mapClaims := token.Claims.(jwt.MapClaims)
55
-		expired := int64(mapClaims[ctxRequestTokenExpired].(float64))
56
-		if 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
54
+		if mapClaims, ok := token.Claims.(jwt.MapClaims); ok {
55
+			if expired, ok := mapClaims[ctxRequestTokenExpired].(float64); ok {
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
+					}
62
+				}
61
 			}
63
 			}
62
-		}
63
 
64
 
64
-		ctx.Set(CtxRequestHeaderUserId, int(mapClaims[CtxRequestHeaderUserId].(float64)))
65
+			if uid, ok := mapClaims[CtxRequestHeaderUserId].(float64); ok {
66
+				ctx.Set(CtxRequestHeaderUserId, int(uid))
67
+			}
68
+		}
65
 	}
69
 	}
66
 }
70
 }

+ 12
- 8
middleware/auth/optional_auth.go Voir le fichier

40
 			return
40
 			return
41
 		}
41
 		}
42
 
42
 
43
-		mapClaims := token.Claims.(jwt.MapClaims)
44
-		expired := int64(mapClaims[ctxRequestTokenExpired].(float64))
45
-		if expired < time.Now().Unix() {
46
-			// Only cookie is blank value, check token expired
47
-			if _, err := ctx.Cookie(ctxRequestCookieAuthorization); err != nil {
48
-				return
43
+		if mapClaims, ok := token.Claims.(jwt.MapClaims); ok {
44
+			if expired, ok := mapClaims[ctxRequestTokenExpired].(float64); ok {
45
+				if int64(expired) < time.Now().Unix() {
46
+					// Only cookie is blank value, check token expired
47
+					if _, err := ctx.Cookie(ctxRequestCookieAuthorization); err != nil {
48
+						return
49
+					}
50
+				}
49
 			}
51
 			}
50
-		}
51
 
52
 
52
-		ctx.Set(CtxRequestHeaderUserId, int(mapClaims[CtxRequestHeaderUserId].(float64)))
53
+			if uid, ok := mapClaims[CtxRequestHeaderUserId].(float64); ok {
54
+				ctx.Set(CtxRequestHeaderUserId, int(uid))
55
+			}
56
+		}
53
 	}
57
 	}
54
 }
58
 }