|
@@ -1,14 +1,15 @@
|
1
|
1
|
package router
|
2
|
2
|
|
3
|
3
|
import (
|
|
4
|
+ "context"
|
4
|
5
|
"net/http"
|
5
|
6
|
"regexp"
|
6
|
7
|
"strconv"
|
7
|
8
|
"strings"
|
8
|
9
|
)
|
9
|
10
|
|
10
|
|
-type closure func(http.ResponseWriter, *http.Request, []string)
|
11
|
|
-type Middleware func(http.ResponseWriter, *http.Request, []string) bool
|
|
11
|
+type closure func(http.ResponseWriter, *http.Request)
|
|
12
|
+type Middleware func(http.ResponseWriter, *http.Request) bool
|
12
|
13
|
|
13
|
14
|
//Route struct de uma rota
|
14
|
15
|
type Route struct {
|
|
@@ -31,15 +32,18 @@ func (routes Routes) Match(w http.ResponseWriter, r *http.Request) bool {
|
31
|
32
|
|
32
|
33
|
items := regexSubmatch(pattern, url)
|
33
|
34
|
|
|
35
|
+ ctx := context.WithValue(r.Context(), "parameters", items)
|
|
36
|
+ r = r.WithContext(ctx)
|
|
37
|
+
|
34
|
38
|
if items[0] == url {
|
35
|
39
|
if element.Middlewares != nil && len(element.Middlewares) > 0 {
|
36
|
40
|
for _, mid := range element.Middlewares {
|
37
|
|
- if !mid(w, r, items) {
|
|
41
|
+ if !mid(w, r) {
|
38
|
42
|
return false
|
39
|
43
|
}
|
40
|
44
|
}
|
41
|
45
|
}
|
42
|
|
- element.Handler(w, r, items)
|
|
46
|
+ element.Handler(w, r)
|
43
|
47
|
return true
|
44
|
48
|
}
|
45
|
49
|
}
|