Browse Source

Router usando context

William Wiechorek 6 years ago
parent
commit
54d153337b
6 changed files with 12 additions and 13 deletions
  1. BIN
      build
  2. 1 1
      config.go
  3. 8 4
      core/router/router.go
  4. 0 5
      main.go
  5. 2 2
      src/controller/Test/Test.go
  6. 1 1
      src/middleware/login/login.go

BIN
build


+ 1 - 1
config.go

8
 const DATABASE_PORT = "3306"
8
 const DATABASE_PORT = "3306"
9
 const DATABASE_USER = "hml"
9
 const DATABASE_USER = "hml"
10
 const DATABASE_PASS = "spr777hml"
10
 const DATABASE_PASS = "spr777hml"
11
-const DATABASE_SCHEMA = "hml_mkt_sprinta"
11
+const DATABASE_SCHEMA = "hml_sprinta"
12
 
12
 
13
 /* SERVICES ENDPOINTS */
13
 /* SERVICES ENDPOINTS */
14
 const AUTHENTICATION_SERVICE = "http://208.97.141.22/api/sign/user_data"
14
 const AUTHENTICATION_SERVICE = "http://208.97.141.22/api/sign/user_data"

+ 8 - 4
core/router/router.go

1
 package router
1
 package router
2
 
2
 
3
 import (
3
 import (
4
+	"context"
4
 	"net/http"
5
 	"net/http"
5
 	"regexp"
6
 	"regexp"
6
 	"strconv"
7
 	"strconv"
7
 	"strings"
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
 //Route struct de uma rota
14
 //Route struct de uma rota
14
 type Route struct {
15
 type Route struct {
31
 
32
 
32
 		items := regexSubmatch(pattern, url)
33
 		items := regexSubmatch(pattern, url)
33
 
34
 
35
+		ctx := context.WithValue(r.Context(), "parameters", items)
36
+		r = r.WithContext(ctx)
37
+
34
 		if items[0] == url {
38
 		if items[0] == url {
35
 			if element.Middlewares != nil && len(element.Middlewares) > 0 {
39
 			if element.Middlewares != nil && len(element.Middlewares) > 0 {
36
 				for _, mid := range element.Middlewares {
40
 				for _, mid := range element.Middlewares {
37
-					if !mid(w, r, items) {
41
+					if !mid(w, r) {
38
 						return false
42
 						return false
39
 					}
43
 					}
40
 				}
44
 				}
41
 			}
45
 			}
42
-			element.Handler(w, r, items)
46
+			element.Handler(w, r)
43
 			return true
47
 			return true
44
 		}
48
 		}
45
 	}
49
 	}

+ 0 - 5
main.go

1
 package main
1
 package main
2
 
2
 
3
 import (
3
 import (
4
-	"context"
5
 	"log"
4
 	"log"
6
 	"net/http"
5
 	"net/http"
7
 	"strconv"
6
 	"strconv"
8
 
7
 
9
 	"./core/database"
8
 	"./core/database"
10
-	"./core/errorHandler"
11
 	req "./core/request"
9
 	req "./core/request"
12
 	res "./core/response"
10
 	res "./core/response"
13
 	"./src/lib/auth"
11
 	"./src/lib/auth"
21
 	http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
19
 	http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
22
 		var Errors errorHandler.Errors
20
 		var Errors errorHandler.Errors
23
 
21
 
24
-		ctx := context.WithValue(r.Context(), "Username", "William")
25
-		r.WithContext(ctx)
26
-
27
 		res.SetResponseWriter(w)
22
 		res.SetResponseWriter(w)
28
 		req.SetRequest(r)
23
 		req.SetRequest(r)
29
 
24
 

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

17
 }
17
 }
18
 
18
 
19
 //Inicial : Func
19
 //Inicial : Func
20
-func Inicial(w http.ResponseWriter, r *http.Request, vars []string) {
21
-	fmt.Print(r.Context().Value("Username").(string))
20
+func Inicial(w http.ResponseWriter, r *http.Request) {
21
+	fmt.Println(r.Context().Value("parameters").([]string))
22
 	var Errors errorHandler.Errors
22
 	var Errors errorHandler.Errors
23
 
23
 
24
 	user, err := auth.GetUser(r)
24
 	user, err := auth.GetUser(r)

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

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