-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathConfig.go
95 lines (80 loc) · 3.47 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// Package config handles transforming configs from json file to a golang struct
package main
import (
"encoding/json"
"net/http"
"net/url"
"os"
"time"
)
// Config represents the config json as a golang struct
type Config struct {
Port string `json:"Port"`
FQDN string `json:"FQDN"`
AppName string `json:"AppName"`
TLSCertPath string `json:"TLSCertPath"`
TLSKeyPath string `json:"TLSKeyPath"`
TLSCAPath string `json:"TLSCAPath"`
MetricsDryRun bool `json:"MetricsDryRun"`
SenderDryRun bool `json:"SenderDryRun"`
IrisDryRun bool `json:"IrisDryRun"`
StorageDryRun bool `json:"StorageDryRun"`
OutboundProxyURL string `json:"OutboundProxyURL"`
OutboundProxyParsedURL *url.URL `json:"-"`
RunLoopDuration time.Duration `json:"RunLoopDuration"`
MySQLUser string `json:"MySQLUser"`
MySQLPassword string `json:"MySQLPassword"`
MySQLAddress string `json:"MySQLAddress"`
MySQLDBName string `json:"MySQLDBName"`
MySQLConnTimeout time.Duration `json:"MySQLConnTimeout"`
MySQLReadTimeout time.Duration `json:"MySQLReadTimeout"`
MySQLWriteTimeout time.Duration `json:"MySQLWriteTimeout"`
MySQLMaxConnLifeTime time.Duration `json:"MySQLMaxConnLifeTime"`
MySQLMaxConnIdleTime time.Duration `json:"MySQLMaxConnIdleTime"`
MySQLMaxOpenConns int `json:"MySQLMaxOpenConns"`
MySQLMaxIdleConns int `json:"MySQLMaxIdleConns"`
IrisBaseURL string `json:"IrisBaseURL"`
IrisAppName string `json:"IrisAppName"`
IrisKey string `json:"IrisKey"`
DebugAuth bool `json:"DebugAuth"`
MaxQueueLength int `json:"MaxQueueLength"`
IrisBatchSize int `json:"IrisBatchSize"`
MaxMessageRetries int `json:"MaxMessageRetries"`
VendorRateLimitMap map[string]int `json:"VendorRateLimitMap"`
PersistDroppedMsgs bool `json:"PersistDroppedMsgs"`
SMTPServerAddr string `json:"SMTPServerAddr"`
DefaultFromEmail string `json:"DefaultFromEmail"`
SMTPTimeout time.Duration `json:"SMTPTimeout"`
SlackAPIKey string `json:"SlackAPIKey"`
SlackTitleURL string `json:"SlackTitleURL"`
SlackTimeout time.Duration `json:"SlackTimeout"`
TwilioTimeout time.Duration `json:"TwilioTimeout"`
TwilioAccountSid string `json:"AccountSid"`
TwilioAuthToken string `json:"AuthToken"`
TwilioNumbers []string `json:"TwilioNumbers"`
ReservedNumbersMap map[string]string `json:"ReservedNumbersMap"`
IrisRelayBaseURL string `json:"IrisRelayBaseURL"`
StatusCallbackEndpoint string `json:"StatusCallbackEndpoint"`
SayEndpoint string `json:"SayEndpoint"`
GatherEndpoint string `json:"GatherEndpoint"`
FCMTimeout time.Duration `json:"FCMTimeout"`
FCMAPIKey string `json:"FCMAPIKey"`
LogPath string `json:"LogPath"`
Debug bool `json:"DebugLogging"`
MaxAgeDays int `json:"MaxAgeDays"`
// Smuggle a custom http client into tests
TestHttpClient *http.Client `json:"-"`
}
// Parse parsees configs from json file
func ParseConfig(jsonConfig string, appConfig *Config) error {
file, err := os.Open(jsonConfig)
if err != nil {
return err
}
defer file.Close()
err = json.NewDecoder(file).Decode(&appConfig)
if err != nil {
return err
}
return nil
}