Browse Source

initDatabase and initAuthService

Matheus Querido 6 years ago
parent
commit
fb7a6798b7
2 changed files with 35 additions and 11 deletions
  1. 24 9
      main.go
  2. 11 2
      src/lib/auth/auth.go

+ 24 - 9
main.go

@@ -9,18 +9,13 @@ import (
9 9
 	"./core/errors"
10 10
 	req "./core/request"
11 11
 	res "./core/response"
12
+	"./src/lib/auth"
12 13
 )
13 14
 
14 15
 func main() {
15
-	dbConfig := database.Config{
16
-		config.DATABASE_HOST,
17
-		config.DATABASE_PORT,
18
-		config.DATABASE_USER,
19
-		config.DATABASE_PASS,
20
-		config.DATABASE_SCHEMA,
21
-	}
22 16
 
23
-	database.Init(dbConfig)
17
+	initDatabase()
18
+	initAuthService()
24 19
 
25 20
 	http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
26 21
 
@@ -36,5 +31,25 @@ func main() {
36 31
 		Routes.Match(w, r)
37 32
 	})
38 33
 
39
-	log.Fatal(http.ListenAndServe(":"+strconv.Itoa(config.SERVER_PORT), nil))
34
+	log.Fatal(http.ListenAndServe(":"+strconv.Itoa(SERVER_PORT), nil))
35
+}
36
+
37
+func initDatabase() {
38
+
39
+	database.Init(
40
+		database.Config{
41
+			DATABASE_HOST,
42
+			DATABASE_PORT,
43
+			DATABASE_USER,
44
+			DATABASE_PASS,
45
+			DATABASE_SCHEMA,
46
+		})
47
+}
48
+
49
+func initAuthService() {
50
+
51
+	auth.Config(
52
+		auth.ServiceConfig{
53
+			AUTHENTICATION_SERVICE,
54
+		})
40 55
 }

+ 11 - 2
src/lib/auth/auth.go

@@ -7,10 +7,15 @@ import (
7 7
 	"net/http"
8 8
 	"strconv"
9 9
 
10
-	"../../../config"
11 10
 	"../curl"
12 11
 )
13 12
 
13
+type ServiceConfig struct {
14
+	Endpoint string
15
+}
16
+
17
+var serviceConfig ServiceConfig
18
+
14 19
 type UserData struct {
15 20
 	UserId   string     `json:"id_user"`
16 21
 	Email    string     `json:"email"`
@@ -78,7 +83,7 @@ func curlRequest(request *http.Request) (*curl.Request, error) {
78 83
 		headers["Auth"] = authToken
79 84
 
80 85
 		curlReq := &curl.Request{
81
-			Url:     config.AUTHENTICATION_SERVICE,
86
+			Url:     serviceConfig.Endpoint,
82 87
 			Method:  "POST",
83 88
 			Headers: headers,
84 89
 		}
@@ -88,3 +93,7 @@ func curlRequest(request *http.Request) (*curl.Request, error) {
88 93
 
89 94
 	return nil, errors.New("No auth token found in http request")
90 95
 }
96
+
97
+func Config(config ServiceConfig) {
98
+	serviceConfig = config
99
+}