William Wiechorek 6 gadi atpakaļ
vecāks
revīzija
a969bd2cf0
11 mainītis faili ar 70 papildinājumiem un 155 dzēšanām
  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
 /* SERVER CONFIGURATION */
3
 /* SERVER CONFIGURATION */
4
 const SERVER_PORT = 8081
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
 const DATABASE_PORT = "3306"
7
 const DATABASE_PORT = "3306"
9
 const DATABASE_USER = "hml"
8
 const DATABASE_USER = "hml"
10
 const DATABASE_PASS = "spr777hml"
9
 const DATABASE_PASS = "spr777hml"
11
 const DATABASE_SCHEMA = "hml_sprinta"
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
 package request
1
 package request
2
 
2
 
3
 import (
3
 import (
4
+	"context"
4
 	"fmt"
5
 	"fmt"
5
 	"log"
6
 	"log"
6
 	"net/http"
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
 //Post : retorna um parametro post
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
 	if err := r.ParseForm(); err != nil {
12
 	if err := r.ParseForm(); err != nil {
21
 		fmt.Printf("ParseForm() err: %v", err)
13
 		fmt.Printf("ParseForm() err: %v", err)
22
 		return ""
14
 		return ""
25
 }
17
 }
26
 
18
 
27
 //Get : retorna um parametro get
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
 	if !ok || len(keys[0]) < 1 {
23
 	if !ok || len(keys[0]) < 1 {
34
 		log.Println("Url Param 'key' is missing")
24
 		log.Println("Url Param 'key' is missing")
40
 	return string(key)
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
 
7
 
8
 var responseCode = 200
8
 var responseCode = 200
9
 
9
 
10
-var responseWriter *http.ResponseWriter
11
-
12
 //JSON :response json
10
 //JSON :response json
13
-func JSON(data interface{}) {
14
-	w := *responseWriter
11
+func JSON(w http.ResponseWriter, data interface{}) {
15
 	js, err := json.Marshal(data)
12
 	js, err := json.Marshal(data)
16
 	if err != nil {
13
 	if err != nil {
17
 		http.Error(w, err.Error(), http.StatusInternalServerError)
14
 		http.Error(w, err.Error(), http.StatusInternalServerError)
27
 func SetCode(code int) {
24
 func SetCode(code int) {
28
 	responseCode = code
25
 	responseCode = code
29
 }
26
 }
30
-
31
-func SetResponseWriter(w http.ResponseWriter) {
32
-	responseWriter = &w
33
-}

+ 17 - 4
core/router/router.go

9
 )
9
 )
10
 
10
 
11
 type closure func(http.ResponseWriter, *http.Request)
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
 //Route struct de uma rota
14
 //Route struct de uma rota
15
 type Route struct {
15
 type Route struct {
16
+	Method		string
16
 	Pattern     string
17
 	Pattern     string
17
 	Handler     closure
18
 	Handler     closure
18
 	Middlewares []Middleware
19
 	Middlewares []Middleware
32
 
33
 
33
 		items := regexSubmatch(pattern, url)
34
 		items := regexSubmatch(pattern, url)
34
 
35
 
35
-		ctx := context.WithValue(r.Context(), "parameters", items)
36
+		ctx := context.WithValue(r.Context(), "urlParameters", items)
36
 		r = r.WithContext(ctx)
37
 		r = r.WithContext(ctx)
37
 
38
 
38
 		if items[0] == url {
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
 			if element.Middlewares != nil && len(element.Middlewares) > 0 {
47
 			if element.Middlewares != nil && len(element.Middlewares) > 0 {
40
 				for _, mid := range element.Middlewares {
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
 						return false
54
 						return false
43
 					}
55
 					}
44
 				}
56
 				}
47
 			return true
59
 			return true
48
 		}
60
 		}
49
 	}
61
 	}
50
-
62
+	w.WriteHeader(404)
63
+	w.Write(nil)
51
 	return false
64
 	return false
52
 }
65
 }
53
 
66
 

+ 0 - 2
exec.sh

1
-go build -o build
2
-./build

+ 7 - 38
main.go

4
 	"log"
4
 	"log"
5
 	"net/http"
5
 	"net/http"
6
 	"strconv"
6
 	"strconv"
7
-
8
-	"./core/database"
9
-	"./core/errorHandler"
10
-	"./core/request"
11
-	"./core/response"
12
-	"./src/lib/auth"
13
 )
7
 )
14
 
8
 
15
 func main() {
9
 func main() {
16
-
17
-	initDatabase()
18
-	initAuthService()
10
+	// initDatabase()
19
 
11
 
20
 	http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
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
 		Routes.Match(w, r)
21
 		Routes.Match(w, r)
33
 	})
22
 	})
34
 
23
 
35
 	log.Fatal(http.ListenAndServe(":"+strconv.Itoa(SERVER_PORT), nil))
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
 //Routes rotas de acesso
9
 //Routes rotas de acesso
10
 var Routes = router.Routes{
10
 var Routes = router.Routes{
11
 	router.Route{
11
 	router.Route{
12
-		Pattern: `\/(.*)`,
12
+		Method: "GET",
13
+		Pattern: `/test1`,
13
 		Handler: test.Inicial,
14
 		Handler: test.Inicial,
14
 		Middlewares: []router.Middleware{
15
 		Middlewares: []router.Middleware{
15
 			login.Mandatory,
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
 	"../../../core/errorHandler"
7
 	"../../../core/errorHandler"
8
 	"../../../core/request"
8
 	"../../../core/request"
9
 	"../../../core/response"
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
 func Inicial(w http.ResponseWriter, r *http.Request) {
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
 package login
1
 package login
2
 
2
 
3
 import (
3
 import (
4
-	"context"
5
 	"net/http"
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
 }