Browse Source

login middleware

Matheus Querido 6 years ago
parent
commit
3d656cec88
1 changed files with 6 additions and 6 deletions
  1. 6 6
      src/middleware/login/login.go

+ 6 - 6
src/middleware/login/login.go

@@ -13,16 +13,16 @@ func Mandatory(w http.ResponseWriter, r *http.Request) (logged bool) {
13 13
 
14 14
 	user, logged := auth.GetUser(r)
15 15
 
16
-	if !logged {
16
+	if logged {
17 17
 
18
-		var Errors errorHandler.Errors
19
-		Errors.ActionForbidden("User must be logged in")
20
-		response.JSON(Errors)
18
+		ctx := context.WithValue(r.Context(), "user", user)
19
+		r = r.WithContext(ctx)
21 20
 
22 21
 	} else {
23 22
 
24
-		ctx := context.WithValue(r.Context(), "user", user)
25
-		r = r.WithContext(ctx)
23
+		var Errors errorHandler.Errors
24
+		Errors.ActionForbidden("User must be logged in")
25
+		response.JSON(Errors)
26 26
 	}
27 27
 
28 28
 	return