Browse Source

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

William Wiechorek 6 years ago
parent
commit
8fa84db82b

+ 21 - 0
.vscode/launch.json

@@ -0,0 +1,21 @@
1
+{
2
+    // Use IntelliSense to learn about possible attributes.
3
+    // Hover to view descriptions of existing attributes.
4
+    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
+    "version": "0.2.0",
6
+    "configurations": [
7
+        {
8
+            "name": "Launch",
9
+            "type": "go",
10
+            "request": "launch",
11
+            "mode": "debug",
12
+            "remotePath": "",
13
+            "port": 8081,
14
+            "host": "127.0.0.1",
15
+            "program": "${fileDirname}",
16
+            "env": {},
17
+            "args": [],
18
+            "showLog": true
19
+        }
20
+    ]
21
+}

+ 3 - 0
src/config/config.go

@@ -9,3 +9,6 @@ const DATABASE_PORT = "3306"
9 9
 const DATABASE_USER = "hml"
10 10
 const DATABASE_PASS = "spr777hml"
11 11
 const DATABASE_SCHEMA = "hml_mkt_sprinta"
12
+
13
+/* SERVICES ENDPOINTS */
14
+const AUTHENTICATION_SERVICE = "http://208.97.141.22/api/sign/user_data"

+ 5 - 1
src/controller/Test/Test.go

@@ -6,7 +6,8 @@ import (
6 6
 
7 7
 	req "../../../core/request"
8 8
 	res "../../../core/response"
9
-	errorHandler "../../lib/errorhandler"
9
+	"../../lib/auth"
10
+	errorHandler "../../lib/error"
10 11
 )
11 12
 
12 13
 type Profile struct {
@@ -16,6 +17,9 @@ type Profile struct {
16 17
 
17 18
 //Inicial : Func
18 19
 func Inicial(w http.ResponseWriter, r *http.Request, vars []string) {
20
+
21
+	auth.GetUser(r)
22
+
19 23
 	var Errors errorHandler.Errors
20 24
 	// fmt.Println(vars[0])
21 25
 	// fmt.Fprintf(w, "Hello Route, %q", html.EscapeString(r.URL.Path))

+ 89 - 0
src/lib/auth/auth.go

@@ -0,0 +1,89 @@
1
+package auth
2
+
3
+import (
4
+	"encoding/json"
5
+	"errors"
6
+	"log"
7
+	"net/http"
8
+
9
+	"../../config"
10
+	"../curl"
11
+)
12
+
13
+type UserData struct {
14
+	UserId   int        `json:"id_user"`
15
+	Email    string     `json:"email"`
16
+	Name     string     `json:"name"`
17
+	Username string     `json:"username"`
18
+	Token    string     `json:"token"`
19
+	UrlToken string     `json:"url_token"`
20
+	Avatar   string     `json:"avatar"`
21
+	Language string     `json:"language"`
22
+	Errors   []apiError `json:"errors"`
23
+}
24
+
25
+type apiError struct {
26
+	Type      string `json:"type"`
27
+	Parameter string `json:"parameter"`
28
+	Message   string `json:"message"`
29
+}
30
+
31
+// func (user UserData) getId() int {
32
+// 	id, _ := strconv.Atoi(user.UserId)
33
+// 	return id
34
+// }
35
+
36
+func GetUser(httpReq *http.Request) (*UserData, bool) {
37
+
38
+	curlReq, err := curlRequest(httpReq)
39
+
40
+	if err != nil {
41
+		return nil, false
42
+	}
43
+
44
+	response, err := curl.Curl(curlReq)
45
+
46
+	if err != nil {
47
+		log.Print(err)
48
+		return nil, false
49
+	}
50
+
51
+	var userData UserData
52
+
53
+	err = json.Unmarshal(response, &userData)
54
+
55
+	//fmt.Printf("%+v\n", userData)
56
+
57
+	if err != nil {
58
+		log.Print(err)
59
+		return nil, false
60
+	}
61
+
62
+	if len(userData.Errors) > 0 {
63
+		return nil, false
64
+	}
65
+
66
+	return &userData, true
67
+}
68
+
69
+func curlRequest(request *http.Request) (*curl.Request, error) {
70
+
71
+	authToken := request.Header.Get("Auth")
72
+
73
+	if authToken != "" {
74
+
75
+		headers := make(map[string]string)
76
+
77
+		headers["Auth"] = authToken
78
+
79
+		curlReq := &curl.Request{
80
+			Url:     config.AUTHENTICATION_SERVICE,
81
+			Method:  "POST",
82
+			Headers: headers,
83
+		}
84
+
85
+		return curlReq, nil
86
+	}
87
+
88
+	return nil, errors.New("No auth token found in http request")
89
+}

+ 0 - 34
src/lib/authentication.go

@@ -1,34 +0,0 @@
1
-package lib
2
-
3
-import (
4
-	"net/http"
5
-	"strconv"
6
-)
7
-
8
-type UserData struct {
9
-	Id_user   string
10
-	Email     string
11
-	Name      string
12
-	Username  string
13
-	Token     string
14
-	Url_token string
15
-	Avatar    string
16
-	Language  string
17
-	Errors    []apiError
18
-}
19
-
20
-func (user UserData) getId() int {
21
-	id, _ := strconv.Atoi(user.Id_user)
22
-	return id
23
-}
24
-
25
-func GetUser(r *http.Request) *UserData {
26
-
27
-	auth := r.Header.Get("Auth")
28
-	userData := curl(auth)
29
-
30
-	// debug only
31
-	//fmt.Printf("%+v\n", userData)
32
-
33
-	return userData
34
-}

+ 0 - 51
src/lib/curl.go

@@ -1,51 +0,0 @@
1
-package lib
2
-
3
-import (
4
-	"encoding/json"
5
-	"io/ioutil"
6
-	"log"
7
-	"net/http"
8
-)
9
-
10
-func curl(auth string) *UserData {
11
-
12
-	req, err := http.NewRequest("POST", "http://208.97.141.22/api/sign/user_data", nil)
13
-
14
-	if err != nil {
15
-		return nil
16
-	}
17
-
18
-	req.Header.Set("Auth", auth)
19
-
20
-	resp, err := http.DefaultClient.Do(req)
21
-
22
-	if err != nil {
23
-		log.Print(err)
24
-		return nil
25
-	}
26
-
27
-	defer resp.Body.Close()
28
-
29
-	body, _ := ioutil.ReadAll(resp.Body)
30
-
31
-	// debug only
32
-	//s := string(body[:])
33
-	//fmt.Println(s)
34
-
35
-	var userData UserData
36
-
37
-	err = json.Unmarshal(body, &userData)
38
-
39
-	//fmt.Printf("%+v\n", userData)
40
-
41
-	if err != nil {
42
-		log.Print(err)
43
-		return nil
44
-	}
45
-
46
-	if len(userData.Errors) > 0 {
47
-		return nil
48
-	}
49
-
50
-	return &userData
51
-}

+ 63 - 0
src/lib/curl/curl.go

@@ -0,0 +1,63 @@
1
+package curl
2
+
3
+import (
4
+	"bytes"
5
+	"io"
6
+	"io/ioutil"
7
+	"log"
8
+	"net/http"
9
+	"strings"
10
+)
11
+
12
+type Request struct {
13
+	Url        string
14
+	Method     string
15
+	Headers    map[string]string
16
+	Parameters map[string]string
17
+}
18
+
19
+func Curl(input *Request) ([]byte, error) {
20
+
21
+	req, err := http.NewRequest(input.Method, input.Url, getParams(input.Parameters))
22
+
23
+	if err != nil {
24
+		return nil, err
25
+	}
26
+
27
+	for key, value := range input.Headers {
28
+		req.Header.Set(key, value)
29
+	}
30
+
31
+	resp, err := http.DefaultClient.Do(req)
32
+
33
+	if err != nil {
34
+		log.Print(err)
35
+		return nil, err
36
+	}
37
+
38
+	defer resp.Body.Close()
39
+
40
+	body, err := ioutil.ReadAll(resp.Body)
41
+
42
+	// debug only
43
+	//s := string(body[:])
44
+	//fmt.Println(s)
45
+
46
+	return body, err
47
+}
48
+
49
+func getParams(params map[string]string) io.Reader {
50
+
51
+	if params != nil {
52
+
53
+		var buffer bytes.Buffer
54
+
55
+		for key, value := range params {
56
+			buffer.WriteString(key + "=" + value + "&")
57
+		}
58
+
59
+		return strings.NewReader(strings.TrimRight(buffer.String(), "&"))
60
+	}
61
+
62
+	return nil
63
+}

src/lib/errorhandler/errorhandler.go → src/lib/error/error.go