Browse Source

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

Matheus 6 years ago
parent
commit
e43dabb549
8 changed files with 128 additions and 24 deletions
  1. BIN
      build
  2. 50 0
      core/request/request.go
  3. 26 0
      core/response/response.go
  4. 4 11
      core/router/main.go
  5. 3 12
      main.go
  6. 1 1
      config.go
  7. 14 0
      src/config/routes.go
  8. 30 0
      src/controller/Test/Test.go

BIN
build


+ 50 - 0
core/request/request.go

@@ -0,0 +1,50 @@
1
+package response
2
+
3
+import (
4
+	"fmt"
5
+	"log"
6
+	"net/http"
7
+)
8
+
9
+//Method : retorna o metodo
10
+func Method(r *http.Request) string {
11
+	return r.Method
12
+}
13
+
14
+//Post : retorna um parametro post
15
+func Post(r *http.Request, parameter string) string {
16
+	if err := r.ParseForm(); err != nil {
17
+		fmt.Printf("ParseForm() err: %v", err)
18
+		return ""
19
+	}
20
+	return r.FormValue(parameter)
21
+}
22
+
23
+//Get : retorna um parametro get
24
+func Get(r *http.Request, parameter string) string {
25
+	keys, ok := r.URL.Query()["key"]
26
+
27
+	if !ok || len(keys[0]) < 1 {
28
+		log.Println("Url Param 'key' is missing")
29
+		return ""
30
+	}
31
+
32
+	key := keys[0]
33
+
34
+	return string(key)
35
+}
36
+
37
+//Parameter : retorna um parametro post ou get
38
+func Parameter(r *http.Request, parameter string) string {
39
+	var post = Post(r, parameter)
40
+	if post != "" {
41
+		return post
42
+	}
43
+
44
+	var get = Get(r, parameter)
45
+	if get != "" {
46
+		return get
47
+	}
48
+
49
+	return ""
50
+}

+ 26 - 0
core/response/response.go

@@ -0,0 +1,26 @@
1
+package response
2
+
3
+import (
4
+	"encoding/json"
5
+	"net/http"
6
+)
7
+
8
+var responseCode = 200
9
+
10
+//JSON :response json
11
+func JSON(w http.ResponseWriter, data interface{}) {
12
+	js, err := json.Marshal(data)
13
+	if err != nil {
14
+		http.Error(w, err.Error(), http.StatusInternalServerError)
15
+		return
16
+	}
17
+
18
+	w.Header().Set("Content-Type", "application/json")
19
+	w.WriteHeader(responseCode)
20
+	w.Write(js)
21
+}
22
+
23
+//SetCode :informa o código de resposta
24
+func SetCode(code int) {
25
+	responseCode = code
26
+}

+ 4 - 11
core/router/main.go

@@ -9,26 +9,19 @@ 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
-//Add adicionar rota em routes
23
-func Add(pattern string, handler closure) {
24
-	routes = append(routes, route{
25
-		pattern,
26
-		handler,
27
-	})
28
-}
29
-
30 23
 //Match retorna a rota encontrada
31
-func Match(w http.ResponseWriter, r *http.Request) {
24
+func (routes Routes) Match(w http.ResponseWriter, r *http.Request) {
32 25
 	url := r.URL.Path
33 26
 	for _, element := range routes {
34 27
 		when := element.Pattern

+ 3 - 12
main.go

@@ -1,26 +1,17 @@
1 1
 package main
2 2
 
3 3
 import (
4
-	"fmt"
5
-	"html"
6 4
 	"log"
7 5
 	"net/http"
8 6
 	"strconv"
9 7
 
10
-	"./core/router"
8
+	"./src/config"
11 9
 )
12 10
 
13 11
 func main() {
14
-
15 12
 	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)
13
+		config.Routes.Match(w, r)
23 14
 	})
24 15
 
25
-	log.Fatal(http.ListenAndServe(":"+strconv.Itoa(SERVER_PORT), nil))
16
+	log.Fatal(http.ListenAndServe(":"+strconv.Itoa(config.SERVER_PORT), nil))
26 17
 }

+ 1 - 1
config.go

@@ -1,4 +1,4 @@
1
-package main
1
+package config
2 2
 
3 3
 const SERVER_PORT = 8080
4 4
 

+ 14 - 0
src/config/routes.go

@@ -0,0 +1,14 @@
1
+package config
2
+
3
+import (
4
+	"../../core/router"
5
+	"../controller/test"
6
+)
7
+
8
+//Routes rotas de acesso
9
+var Routes = router.Routes{
10
+	router.Route{
11
+		`\/(.*)`,
12
+		test.Inicial,
13
+	},
14
+}

+ 30 - 0
src/controller/Test/Test.go

@@ -0,0 +1,30 @@
1
+package test
2
+
3
+import (
4
+	"fmt"
5
+	"net/http"
6
+
7
+	req "../../../core/request"
8
+	res "../../../core/response"
9
+)
10
+
11
+type Profile struct {
12
+	Name    string
13
+	Hobbies []string
14
+}
15
+
16
+//Inicial : Func
17
+func Inicial(w http.ResponseWriter, r *http.Request, vars []string) {
18
+	// fmt.Println(vars[0])
19
+	// fmt.Fprintf(w, "Hello Route, %q", html.EscapeString(r.URL.Path))
20
+	profile := Profile{"Alex", []string{"snowboarding", "programming"}}
21
+
22
+	if err := r.ParseForm(); err != nil {
23
+		fmt.Printf("ParseForm() err: %v", err)
24
+	}
25
+
26
+	fmt.Println(req.Method(r))
27
+
28
+	res.SetCode(404)
29
+	res.JSON(w, profile)
30
+}