|
@@ -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
|
+}
|