Browse Source

login mandatory middleware

Matheus Querido 6 years ago
parent
commit
f5b78a6aec
5 changed files with 28 additions and 5 deletions
  1. BIN
      debug
  2. 1 0
      main.go
  3. 1 1
      routes.go
  4. 1 1
      src/controller/Test/Test.go
  5. 25 3
      src/middleware/login/login.go

BIN
debug


+ 1 - 0
main.go

@@ -6,6 +6,7 @@ import (
6 6
 	"strconv"
7 7
 
8 8
 	"./core/database"
9
+	"./core/errorHandler"
9 10
 	req "./core/request"
10 11
 	res "./core/response"
11 12
 	"./src/lib/auth"

+ 1 - 1
routes.go

@@ -12,7 +12,7 @@ var Routes = router.Routes{
12 12
 		Pattern: `\/(.*)`,
13 13
 		Handler: test.Inicial,
14 14
 		Middlewares: []router.Middleware{
15
-			login.Logged,
15
+			login.Mandatory,
16 16
 		},
17 17
 	},
18 18
 }

+ 1 - 1
src/controller/Test/Test.go

@@ -18,7 +18,7 @@ type Profile struct {
18 18
 
19 19
 //Inicial : Func
20 20
 func Inicial(w http.ResponseWriter, r *http.Request) {
21
-	fmt.Println(r.Context().Value("parameters").([]string))
21
+	fmt.Println(r.Context().Value("parameters"))
22 22
 
23 23
 	var Errors errorHandler.Errors
24 24
 

+ 25 - 3
src/middleware/login/login.go

@@ -1,7 +1,29 @@
1 1
 package login
2 2
 
3
-import "net/http"
3
+import (
4
+	"context"
5
+	"net/http"
4 6
 
5
-func Logged(w http.ResponseWriter, r *http.Request) bool {
6
-	return true
7
+	"../../../core/errorHandler"
8
+	"../../../core/response"
9
+	"../../lib/auth"
10
+)
11
+
12
+func Mandatory(w http.ResponseWriter, r *http.Request) (logged bool) {
13
+
14
+	user, logged := auth.GetUser(r)
15
+
16
+	if !logged {
17
+
18
+		var Errors errorHandler.Errors
19
+		Errors.ActionForbidden("User must be logged in")
20
+		response.JSON(Errors)
21
+
22
+	} else {
23
+
24
+		ctx := context.WithValue(r.Context(), "user", user)
25
+		r = r.WithContext(ctx)
26
+	}
27
+
28
+	return
7 29
 }