Browse Source

Boototstraping

William Wiechorek 6 years ago
parent
commit
d62aedc1fb
5 changed files with 96 additions and 11 deletions
  1. BIN
      build
  2. 50 0
      core/request/request.go
  3. 26 0
      core/response/response.go
  4. 0 8
      core/router/router.go
  5. 20 3
      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
+}

+ 0 - 8
core/router/router.go

@@ -20,14 +20,6 @@ type Routes []Route
20 20
 
21 21
 var routes Routes
22 22
 
23
-//Add adicionar rota em routes
24
-// func Add(pattern string, handler closure) {
25
-// 	routes = append(routes, Route{
26
-// 		pattern,
27
-// 		handler,
28
-// 	})
29
-// }
30
-
31 23
 //Match retorna a rota encontrada
32 24
 func (routes Routes) Match(w http.ResponseWriter, r *http.Request) {
33 25
 	url := r.URL.Path

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

@@ -2,12 +2,29 @@ package test
2 2
 
3 3
 import (
4 4
 	"fmt"
5
-	"html"
6 5
 	"net/http"
6
+
7
+	req "../../../core/request"
8
+	res "../../../core/response"
7 9
 )
8 10
 
11
+type Profile struct {
12
+	Name    string
13
+	Hobbies []string
14
+}
15
+
9 16
 //Inicial : Func
10 17
 func Inicial(w http.ResponseWriter, r *http.Request, vars []string) {
11
-	fmt.Println(vars[0])
12
-	fmt.Fprintf(w, "Hello Route, %q", html.EscapeString(r.URL.Path))
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)
13 30
 }