|
@@ -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
|
}
|