Browse Source

Bootstrap

William Wiechorek 6 years ago
parent
commit
a969bd2cf0
11 changed files with 70 additions and 155 deletions
  1. BIN
      .DS_Store
  2. BIN
      build
  3. 1 5
      config.go
  4. 9 29
      core/request/request.go
  5. 1 8
      core/response/response.go
  6. 17 4
      core/router/router.go
  7. 0 2
      exec.sh
  8. 7 38
      main.go
  9. 16 1
      routes.go
  10. 12 47
      src/controller/Test/Test.go
  11. 7 21
      src/middleware/login/login.go

BIN
.DS_Store


BIN
build


+ 1 - 5
config.go

@@ -3,12 +3,8 @@ package main
3 3
 /* SERVER CONFIGURATION */
4 4
 const SERVER_PORT = 8081
5 5
 
6
-/* DATABASE CONFIGURATION */
7
-const DATABASE_HOST = "208.97.141.22"
6
+const DATABASE_HOST = "homolog.sprinta.com.br"
8 7
 const DATABASE_PORT = "3306"
9 8
 const DATABASE_USER = "hml"
10 9
 const DATABASE_PASS = "spr777hml"
11 10
 const DATABASE_SCHEMA = "hml_sprinta"
12
-
13
-/* SERVICES ENDPOINTS */
14
-const AUTHENTICATION_SERVICE = "http://208.97.141.22/api/sign/user_data"

+ 9 - 29
core/request/request.go

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

+ 1 - 8
core/response/response.go

@@ -7,11 +7,8 @@ import (
7 7
 
8 8
 var responseCode = 200
9 9
 
10
-var responseWriter *http.ResponseWriter
11
-
12 10
 //JSON :response json
13
-func JSON(data interface{}) {
14
-	w := *responseWriter
11
+func JSON(w http.ResponseWriter, data interface{}) {
15 12
 	js, err := json.Marshal(data)
16 13
 	if err != nil {
17 14
 		http.Error(w, err.Error(), http.StatusInternalServerError)
@@ -27,7 +24,3 @@ func JSON(data interface{}) {
27 24
 func SetCode(code int) {
28 25
 	responseCode = code
29 26
 }
30
-
31
-func SetResponseWriter(w http.ResponseWriter) {
32
-	responseWriter = &w
33
-}

+ 17 - 4
core/router/router.go

@@ -9,10 +9,11 @@ import (
9 9
 )
10 10
 
11 11
 type closure func(http.ResponseWriter, *http.Request)
12
-type Middleware func(http.ResponseWriter, *http.Request) bool
12
+type Middleware func(http.ResponseWriter, *http.Request) (bool, *http.Request)
13 13
 
14 14
 //Route struct de uma rota
15 15
 type Route struct {
16
+	Method		string
16 17
 	Pattern     string
17 18
 	Handler     closure
18 19
 	Middlewares []Middleware
@@ -32,13 +33,24 @@ func (routes Routes) Match(w http.ResponseWriter, r *http.Request) bool {
32 33
 
33 34
 		items := regexSubmatch(pattern, url)
34 35
 
35
-		ctx := context.WithValue(r.Context(), "parameters", items)
36
+		ctx := context.WithValue(r.Context(), "urlParameters", items)
36 37
 		r = r.WithContext(ctx)
37 38
 
38 39
 		if items[0] == url {
40
+			if element.Method != r.Method {
41
+				//method not allowed
42
+				w.WriteHeader(405)
43
+				w.Write(nil)
44
+				return false
45
+			}
46
+
39 47
 			if element.Middlewares != nil && len(element.Middlewares) > 0 {
40 48
 				for _, mid := range element.Middlewares {
41
-					if !mid(w, r) {
49
+					var validator bool
50
+					validator, r = mid(w, r)
51
+					if !validator {
52
+						w.WriteHeader(500)
53
+						w.Write(nil)
42 54
 						return false
43 55
 					}
44 56
 				}
@@ -47,7 +59,8 @@ func (routes Routes) Match(w http.ResponseWriter, r *http.Request) bool {
47 59
 			return true
48 60
 		}
49 61
 	}
50
-
62
+	w.WriteHeader(404)
63
+	w.Write(nil)
51 64
 	return false
52 65
 }
53 66
 

+ 0 - 2
exec.sh

@@ -1,2 +0,0 @@
1
-go build -o build
2
-./build

+ 7 - 38
main.go

@@ -4,53 +4,22 @@ import (
4 4
 	"log"
5 5
 	"net/http"
6 6
 	"strconv"
7
-
8
-	"./core/database"
9
-	"./core/errorHandler"
10
-	"./core/request"
11
-	"./core/response"
12
-	"./src/lib/auth"
13 7
 )
14 8
 
15 9
 func main() {
16
-
17
-	initDatabase()
18
-	initAuthService()
10
+	// initDatabase()
19 11
 
20 12
 	http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
21
-		var Errors errorHandler.Errors
22
-
23
-		response.SetResponseWriter(w)
24
-		request.SetRequest(r)
13
+		// var Errors errorHandler.Errors
25 14
 
26
-		if !database.IsConnected {
27
-			Errors.InternalError("Conexão com a base de dados falhou!")
28
-			response.JSON(Errors)
29
-			return
30
-		}
15
+		// if !database.IsConnected {
16
+		// 	Errors.InternalError("Conexão com a base de dados falhou!")
17
+		// 	response.JSON(w, Errors)
18
+		// 	return
19
+		// }
31 20
 
32 21
 		Routes.Match(w, r)
33 22
 	})
34 23
 
35 24
 	log.Fatal(http.ListenAndServe(":"+strconv.Itoa(SERVER_PORT), nil))
36 25
 }
37
-
38
-func initDatabase() {
39
-
40
-	database.Init(
41
-		database.Config{
42
-			DATABASE_HOST,
43
-			DATABASE_PORT,
44
-			DATABASE_USER,
45
-			DATABASE_PASS,
46
-			DATABASE_SCHEMA,
47
-		})
48
-}
49
-
50
-func initAuthService() {
51
-
52
-	auth.Config(
53
-		auth.ServiceConfig{
54
-			AUTHENTICATION_SERVICE,
55
-		})
56
-}

+ 16 - 1
routes.go

@@ -9,10 +9,25 @@ import (
9 9
 //Routes rotas de acesso
10 10
 var Routes = router.Routes{
11 11
 	router.Route{
12
-		Pattern: `\/(.*)`,
12
+		Method: "GET",
13
+		Pattern: `/test1`,
13 14
 		Handler: test.Inicial,
14 15
 		Middlewares: []router.Middleware{
15 16
 			login.Mandatory,
16 17
 		},
17 18
 	},
19
+	router.Route{
20
+		Method: "POST",
21
+		Pattern:     `/test2`,
22
+		Handler:     test.AddError,
23
+		Middlewares: nil,
24
+	},
25
+	router.Route{
26
+		Method: "GET",
27
+		Pattern:     `/test3`,
28
+		Handler:     test.Erro,
29
+		Middlewares: []router.Middleware{
30
+			login.Test,
31
+		},
32
+	},
18 33
 }

+ 12 - 47
src/controller/Test/Test.go

@@ -7,57 +7,22 @@ import (
7 7
 	"../../../core/errorHandler"
8 8
 	"../../../core/request"
9 9
 	"../../../core/response"
10
-
11
-	auth "../../lib/auth"
12 10
 )
13 11
 
14
-type Profile struct {
15
-	Name    string
16
-	Hobbies []string
17
-}
18
-
19
-/**
20
- * @api {get} /user/:id Request User information
21
- * @apiName GetUser
22
- * @apiGroup User
23
- *
24
- * @apiParam {Number} id Users unique ID.
25
- *
26
- * @apiSuccess {String} firstname Firstname of the User.
27
- * @apiSuccess {String} lastname  Lastname of the User.
28
- */
29 12
 func Inicial(w http.ResponseWriter, r *http.Request) {
30
-	fmt.Println(r.Context().Value("parameters"))
31
-
32
-	var Errors errorHandler.Errors
33
-
34
-	user, err := auth.GetUser(r)
35
-
36
-	fmt.Printf("%+v\n", user)
37
-	fmt.Printf("%+v\n", err)
38
-
39
-	//var errors errors.Errors
40
-	// fmt.Println(vars[0])
41
-	// fmt.Fprintf(w, "Hello Route, %q", html.EscapeString(r.URL.Path))
42
-	// profile := Profile{"Alex", []string{"snowboarding", "programming"}}
43
-
44
-	if err := r.ParseForm(); err != nil {
45
-		fmt.Printf("ParseForm() err: %v", err)
46
-		return
47
-	}
48
-
49
-	Errors.InvalidParameter("username", "Usuário não disponível")
50
-	Errors.InternalError("Ocorreu um erro interno")
51
-	Errors.ActionForbidden("Ocorreu um erro interno2")
13
+	fmt.Println(request.Get(r, "test"))
14
+	fmt.Println(request.GetContextValue(r, "user"))
15
+}
52 16
 
53
-	if Errors.Has() {
54
-		response.JSON(Errors)
55
-		return
56
-	}
17
+func AddError(w http.ResponseWriter, r *http.Request) {
18
+	fmt.Println(request.GetContextValue(r, "user"))
19
+	var err errorHandler.Errors
20
+	err.ActionForbidden("test")
57 21
 
58
-	fmt.Println(request.Method())
22
+	response.JSON(w, err)
23
+}
59 24
 
60
-	// res.SetCode(404)
61
-	// res.JSON(profile)
62 25
 
63
-}
26
+func Erro(w http.ResponseWriter, r *http.Request) {
27
+	
28
+}

+ 7 - 21
src/middleware/login/login.go

@@ -1,30 +1,16 @@
1 1
 package login
2 2
 
3 3
 import (
4
-	"context"
5 4
 	"net/http"
6 5
 
7
-	"../../../core/errorHandler"
8
-	"../../../core/response"
9
-	"../../lib/auth"
6
+	"../../../core/request"
10 7
 )
11 8
 
12
-func Mandatory(w http.ResponseWriter, r *http.Request) (logged bool) {
13
-
14
-	user, logged := auth.GetUser(r)
15
-
16
-	if logged {
17
-
18
-		ctx := context.WithValue(r.Context(), "user", user)
19
-		r = r.WithContext(ctx)
20
-
21
-	} else {
22
-
23
-		var Errors errorHandler.Errors
24
-		Errors.ActionForbidden("User must be logged in")
25
-		response.SetCode(errorHandler.ACTION_FORBIDDEN)
26
-		response.JSON(Errors)
27
-	}
9
+func Mandatory(w http.ResponseWriter, r *http.Request) (bool, *http.Request) {
10
+	r = request.SetContextValue(r, "user", "user")
11
+	return true, r
12
+}
28 13
 
29
-	return
14
+func Test(w http.ResponseWriter, r *http.Request) (bool, *http.Request) {
15
+	return false, nil
30 16
 }