Browse Source

Router middleware

William Wiechorek 6 years ago
parent
commit
d03d475d44
3 changed files with 17 additions and 2 deletions
  1. 6 2
      core/router/router.go
  2. 4 0
      routes.go
  3. 7 0
      src/middleware/login/login.go

+ 6 - 2
core/router/router.go

@@ -1,6 +1,7 @@
1 1
 package router
2 2
 
3 3
 import (
4
+	"fmt"
4 5
 	"net/http"
5 6
 	"regexp"
6 7
 	"strconv"
@@ -8,11 +9,13 @@ import (
8 9
 )
9 10
 
10 11
 type closure func(http.ResponseWriter, *http.Request, []string)
12
+type Middleware func(http.ResponseWriter, *http.Request, []string) bool
11 13
 
12 14
 //Route struct de uma rota
13 15
 type Route struct {
14
-	Pattern string
15
-	Handler closure
16
+	Pattern     string
17
+	Handler     closure
18
+	Middlewares []Middleware
16 19
 }
17 20
 
18 21
 //Routes array of route
@@ -30,6 +33,7 @@ func (routes Routes) Match(w http.ResponseWriter, r *http.Request) {
30 33
 		items := regexSubmatch(pattern, url)
31 34
 
32 35
 		if items[0] == url {
36
+			fmt.Println(element.Middlewares)
33 37
 			element.Handler(w, r, items)
34 38
 		}
35 39
 	}

+ 4 - 0
routes.go

@@ -3,6 +3,7 @@ package main
3 3
 import (
4 4
 	"./core/router"
5 5
 	"./src/controller/test"
6
+	"./src/middleware/login"
6 7
 )
7 8
 
8 9
 //Routes rotas de acesso
@@ -10,5 +11,8 @@ var Routes = router.Routes{
10 11
 	router.Route{
11 12
 		Pattern: `\/(.*)`,
12 13
 		Handler: test.Inicial,
14
+		Middlewares: [
15
+			login.Logged
16
+		]
13 17
 	},
14 18
 }

+ 7 - 0
src/middleware/login/login.go

@@ -0,0 +1,7 @@
1
+package login
2
+
3
+import "net/http"
4
+
5
+func Logged(w http.ResponseWriter, r *http.Request, vars []string) bool {
6
+	return true
7
+}