Browse Source

Boototstraping

William Wiechorek 6 years ago
parent
commit
871530c7f1
4 changed files with 31 additions and 21 deletions
  1. BIN
      build
  2. 10 9
      core/router/main.go
  3. 1 12
      main.go
  4. 20 0
      routes.go

BIN
build


+ 10 - 9
core/router/main.go

@@ -9,26 +9,27 @@ import (
9 9
 
10 10
 type closure func(http.ResponseWriter, *http.Request, []string)
11 11
 
12
-type route struct {
12
+//Route struct de uma rota
13
+type Route struct {
13 14
 	Pattern string
14 15
 	Handler closure
15 16
 }
16 17
 
17 18
 //Routes array of route
18
-type Routes []route
19
+type Routes []Route
19 20
 
20 21
 var routes Routes
21 22
 
22 23
 //Add adicionar rota em routes
23
-func Add(pattern string, handler closure) {
24
-	routes = append(routes, route{
25
-		pattern,
26
-		handler,
27
-	})
28
-}
24
+// func Add(pattern string, handler closure) {
25
+// 	routes = append(routes, Route{
26
+// 		pattern,
27
+// 		handler,
28
+// 	})
29
+// }
29 30
 
30 31
 //Match retorna a rota encontrada
31
-func Match(w http.ResponseWriter, r *http.Request) {
32
+func (routes Routes) Match(w http.ResponseWriter, r *http.Request) {
32 33
 	url := r.URL.Path
33 34
 	for _, element := range routes {
34 35
 		when := element.Pattern

+ 1 - 12
main.go

@@ -1,25 +1,14 @@
1 1
 package main
2 2
 
3 3
 import (
4
-	"fmt"
5
-	"html"
6 4
 	"log"
7 5
 	"net/http"
8 6
 	"strconv"
9
-
10
-	router "./core/router"
11 7
 )
12 8
 
13 9
 func main() {
14
-
15 10
 	http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
16
-
17
-		router.Add(`\/(.*)`, func(w http.ResponseWriter, r *http.Request, vars []string) {
18
-			fmt.Println(vars)
19
-			fmt.Fprintf(w, "Hello Route, %q", html.EscapeString(r.URL.Path))
20
-		})
21
-
22
-		router.Match(w, r)
11
+		Routes.Match(w, r)
23 12
 	})
24 13
 
25 14
 	log.Fatal(http.ListenAndServe(":"+strconv.Itoa(SERVER_PORT), nil))

+ 20 - 0
routes.go

@@ -0,0 +1,20 @@
1
+package main
2
+
3
+import (
4
+	"fmt"
5
+	"html"
6
+	"net/http"
7
+
8
+	"./core/router"
9
+)
10
+
11
+//Routes rotas de acesso
12
+var Routes = router.Routes{
13
+	router.Route{
14
+		`\/(.*)`,
15
+		func(w http.ResponseWriter, r *http.Request, vars []string) {
16
+			fmt.Println(vars[0])
17
+			fmt.Fprintf(w, "Hello Route, %q", html.EscapeString(r.URL.Path))
18
+		},
19
+	},
20
+}