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
 	"./core/errors"
9
 	"./core/errors"
10
 	req "./core/request"
10
 	req "./core/request"
11
 	res "./core/response"
11
 	res "./core/response"
12
+	"./src/lib/auth"
12
 )
13
 )
13
 
14
 
14
 func main() {
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
 	http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
20
 	http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
26
 
21
 
36
 		Routes.Match(w, r)
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
 	"net/http"
7
 	"net/http"
8
 	"strconv"
8
 	"strconv"
9
 
9
 
10
-	"../../../config"
11
 	"../curl"
10
 	"../curl"
12
 )
11
 )
13
 
12
 
13
+type ServiceConfig struct {
14
+	Endpoint string
15
+}
16
+
17
+var serviceConfig ServiceConfig
18
+
14
 type UserData struct {
19
 type UserData struct {
15
 	UserId   string     `json:"id_user"`
20
 	UserId   string     `json:"id_user"`
16
 	Email    string     `json:"email"`
21
 	Email    string     `json:"email"`
78
 		headers["Auth"] = authToken
83
 		headers["Auth"] = authToken
79
 
84
 
80
 		curlReq := &curl.Request{
85
 		curlReq := &curl.Request{
81
-			Url:     config.AUTHENTICATION_SERVICE,
86
+			Url:     serviceConfig.Endpoint,
82
 			Method:  "POST",
87
 			Method:  "POST",
83
 			Headers: headers,
88
 			Headers: headers,
84
 		}
89
 		}
88
 
93
 
89
 	return nil, errors.New("No auth token found in http request")
94
 	return nil, errors.New("No auth token found in http request")
90
 }
95
 }
96
+
97
+func Config(config ServiceConfig) {
98
+	serviceConfig = config
99
+}