Browse Source

Merge branch 'master' of http://208.97.141.22:3000/Matheus/go-bootstrap

Matheus Querido 6 years ago
parent
commit
e72ee0361d
6 changed files with 13 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. 3 2
      src/controller/Test/Test.go
  6. 1 1
      src/middleware/login/login.go

BIN
build


+ 1 - 1
config.go

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

+ 8 - 4
core/router/router.go

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

+ 0 - 5
main.go

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

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

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

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

@@ -2,6 +2,6 @@ package login
2 2
 
3 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 6
 	return true
7 7
 }