-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathconfig.go
39 lines (36 loc) · 823 Bytes
/
config.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package main
import (
"net/url"
"strings"
)
type RunConfig struct {
ApiKey string
ApiSecret string
BaseUrl string
UseTestNet bool
}
func NewRunConfig(apiKey string, apiSecret string, hostUsed *string) (*RunConfig, error) {
config := &RunConfig{
ApiKey: apiKey,
ApiSecret: apiSecret,
UseTestNet: false,
BaseUrl: *hostUsed,
}
if hostUsed == nil || *hostUsed == "" {
config.BaseUrl = "https://api.gateio.ws/api/v4"
}
if !strings.HasPrefix(config.BaseUrl, "http") {
config.BaseUrl = "https://" + config.BaseUrl
}
if !strings.HasSuffix(config.BaseUrl, "/api/v4") {
config.BaseUrl += "/api/v4"
}
parsedUrl, err := url.Parse(config.BaseUrl)
if err != nil {
return nil, err
}
if parsedUrl.Host == "fx-api-testnet.gateio.ws" {
config.UseTestNet = true
}
return config, nil
}