Browse Source

Boototstraping

William Wiechorek 6 years ago
parent
commit
74d81a9a0c
4 changed files with 80 additions and 10 deletions
  1. BIN
      build
  2. 14 3
      src/controller/Test/Test.go
  3. 0 7
      src/lib/error.go
  4. 66 0
      src/lib/errorhandler/errorhandler.go

BIN
build


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

@@ -6,6 +6,7 @@ import (
6 6
 
7 7
 	req "../../../core/request"
8 8
 	res "../../../core/response"
9
+	errorHandler "../../lib/errorhandler"
9 10
 )
10 11
 
11 12
 type Profile struct {
@@ -15,17 +16,27 @@ type Profile struct {
15 16
 
16 17
 //Inicial : Func
17 18
 func Inicial(w http.ResponseWriter, r *http.Request, vars []string) {
19
+	var Errors errorHandler.Errors
18 20
 	// fmt.Println(vars[0])
19 21
 	// fmt.Fprintf(w, "Hello Route, %q", html.EscapeString(r.URL.Path))
20
-	profile := Profile{"Alex", []string{"snowboarding", "programming"}}
22
+	// profile := Profile{"Alex", []string{"snowboarding", "programming"}}
21 23
 
22 24
 	if err := r.ParseForm(); err != nil {
23 25
 		fmt.Printf("ParseForm() err: %v", err)
24 26
 		return
25 27
 	}
26 28
 
29
+	Errors.InvalidParameter("username", "Usuário não disponível")
30
+	Errors.InternalError("Ocorreu um erro interno")
31
+	Errors.ActionForbidden("Ocorreu um erro interno2")
32
+	if Errors.Has() {
33
+		res.JSON(Errors)
34
+		return
35
+	}
36
+
27 37
 	fmt.Println(req.Method())
28 38
 
29
-	res.SetCode(404)
30
-	res.JSON(profile)
39
+	// res.SetCode(404)
40
+	// res.JSON(profile)
41
+
31 42
 }

+ 0 - 7
src/lib/error.go

@@ -1,7 +0,0 @@
1
-package lib
2
-
3
-type apiError struct {
4
-	ErrorType string `json:type`
5
-	Parameter string `json:parameter`
6
-	Message   string `json:message`
7
-}

+ 66 - 0
src/lib/errorhandler/errorhandler.go

@@ -0,0 +1,66 @@
1
+package lib
2
+
3
+const InvalidParameter = 400
4
+const ActionForbidden = 401
5
+const NotFound = 404
6
+const InternalError = 500
7
+
8
+type apiErrorParameter struct {
9
+	ErrorType string `json:"type"`
10
+	Parameter string `json:"parameter"`
11
+	Message   string `json:"message"`
12
+}
13
+
14
+type apiError struct {
15
+	ErrorType string `json:"type"`
16
+	Message   string `json:"message"`
17
+}
18
+
19
+type Errors struct {
20
+	Errors []interface{} `json:"errors"`
21
+}
22
+
23
+func (err *Errors) InvalidParameter(parameter string, message string) {
24
+	var e = apiErrorParameter{
25
+		"invalid_parameter",
26
+		parameter,
27
+		message,
28
+	}
29
+
30
+	err.Errors = append(err.Errors, e)
31
+}
32
+
33
+func (err *Errors) ActionForbidden(message string) {
34
+	var e = apiError{
35
+		"action_forbidden",
36
+		message,
37
+	}
38
+
39
+	err.Errors = append(err.Errors, e)
40
+}
41
+
42
+func (err *Errors) InternalError(message string) {
43
+	var e = apiError{
44
+		"internal_error",
45
+		message,
46
+	}
47
+
48
+	err.Errors = append(err.Errors, e)
49
+}
50
+
51
+func (err *Errors) NotFound(message string) {
52
+	var e = apiError{
53
+		"not_found",
54
+		message,
55
+	}
56
+
57
+	err.Errors = append(err.Errors, e)
58
+}
59
+
60
+func (err *Errors) Has() bool {
61
+	if len(err.Errors) > 0 {
62
+		return true
63
+	}
64
+
65
+	return false
66
+}