Matheus Querido 6 years ago
parent
commit
464137bcab

+ 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"

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

@@ -6,7 +6,7 @@ import (
6 6
 
7 7
 	req "../../../core/request"
8 8
 	res "../../../core/response"
9
-	errorHandler "../../lib/errorhandler"
9
+	errorHandler "../../lib/error"
10 10
 )
11 11
 
12 12
 type Profile struct {

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

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

+ 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