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
 
9
 
10
 type closure func(http.ResponseWriter, *http.Request, []string)
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
 	Pattern string
14
 	Pattern string
14
 	Handler closure
15
 	Handler closure
15
 }
16
 }
16
 
17
 
17
 //Routes array of route
18
 //Routes array of route
18
-type Routes []route
19
+type Routes []Route
19
 
20
 
20
 var routes Routes
21
 var routes Routes
21
 
22
 
22
 //Add adicionar rota em routes
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
 //Match retorna a rota encontrada
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
 	url := r.URL.Path
33
 	url := r.URL.Path
33
 	for _, element := range routes {
34
 	for _, element := range routes {
34
 		when := element.Pattern
35
 		when := element.Pattern

+ 1 - 12
main.go

1
 package main
1
 package main
2
 
2
 
3
 import (
3
 import (
4
-	"fmt"
5
-	"html"
6
 	"log"
4
 	"log"
7
 	"net/http"
5
 	"net/http"
8
 	"strconv"
6
 	"strconv"
9
-
10
-	router "./core/router"
11
 )
7
 )
12
 
8
 
13
 func main() {
9
 func main() {
14
-
15
 	http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
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
 	log.Fatal(http.ListenAndServe(":"+strconv.Itoa(SERVER_PORT), nil))
14
 	log.Fatal(http.ListenAndServe(":"+strconv.Itoa(SERVER_PORT), nil))

+ 20 - 0
routes.go

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