forked from solana-labs/solana-ping-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.go
313 lines (294 loc) · 7.99 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
package main
import (
"bufio"
"log"
"os"
"strings"
// jww "github.com/spf13/jwalterweatherman"
"github.com/spf13/viper"
)
// ConnectionMode is a type of client connection
type ConnectionMode string
const (
HTTP ConnectionMode = "http"
HTTPS ConnectionMode = "https"
BOTH ConnectionMode = "both"
)
type PingConfig struct {
Receiver string
NumWorkers int
BatchCount int
BatchInverval int
TxTimeout int64
WaitConfirmationTimeout int64
StatusCheckInterval int64
MinPerPingTime int64
ComputeFeeDualMode bool
RequestUnits uint32
ComputeUnitPrice uint64
}
type WebHookConfig struct {
Enabled bool
Webhook string
}
type SlackReport struct {
Report WebHookConfig
Alert WebHookConfig
}
type DiscordReport struct {
BotName string
BotAvatarURL string
Report WebHookConfig
Alert WebHookConfig
}
type Report struct {
Enabled bool
Interval int
LossThreshold float64
LevelFilePath string
Slack SlackReport
Discord DiscordReport
}
type APIServer struct {
Enabled bool
Mode ConnectionMode
IP string
SSLIP string
KeyPath string
CrtPath string
}
type Database struct {
UseGoogleCloud bool
GCloudCredentialPath string
DBConn string
}
type InfluxdbConfig struct {
Enabled bool
InfluxdbURL string
AccessToken string
Orgnization string
Bucket string
}
type Retension struct {
Enabled bool
KeepHours int64
UpdateIntervalSec int64
}
type SolanaCLIConfig struct {
JsonRPCURL string
WebsocketURL string
KeypairPath string
AddressLabels map[string]string
Commitment string
}
type ClusterCLIConfig struct {
Dir string
MainnetPath string
TestnetPath string
DevnetPath string
ConfigMain SolanaCLIConfig
ConfigTestnet SolanaCLIConfig
ConfigDevnet SolanaCLIConfig
}
type RPCEndpoint struct {
Endpoint string
AccessToken string
Piority int
MaxRetry int
}
type EndpointAlert struct {
Enabled bool
Webhook string
}
type AlternativeEnpoint struct {
HostList []RPCEndpoint
SlackAlert EndpointAlert
DiscordAlert EndpointAlert
}
type ClusterPing struct {
APIServer
PingServiceEnabled bool
AlternativeEnpoint
PingConfig
Report
}
type ClusterConfig struct {
Cluster
HostName string
ClusterPing
}
type Config struct {
Database
InfluxdbConfig
Mainnet ClusterConfig
Testnet ClusterConfig
Devnet ClusterConfig
ClusterCLIConfig
Retension
}
func loadConfig() Config {
// jww.SetLogThreshold(jww.LevelTrace)
// jww.SetStdoutThreshold(jww.LevelTrace)
c := Config{}
v := viper.New()
userHome, err := os.UserHomeDir()
if err != nil {
panic("loadConfig error:" + err.Error())
}
v.AddConfigPath(userHome + "/.config/ping-api")
v.SetConfigType("yaml")
v.AutomaticEnv()
hostname, err := os.Hostname()
if err != nil {
hostname = "unknown"
}
// setup config.yaml
v.SetConfigName("config")
v.ReadInConfig()
// setup config.yaml (Database)
c.Database.UseGoogleCloud = v.GetBool("Database.UseGoogleCloud")
c.Database.GCloudCredentialPath = v.GetString("Database.GCloudCredentialPath")
c.DBConn = v.GetString("Database.DBConn")
gcloudCredential := os.Getenv("GOOGLE_APPLICATION_CREDENTIALS")
if len(gcloudCredential) == 0 && len(c.Database.GCloudCredentialPath) != 0 {
os.Setenv("GOOGLE_APPLICATION_CREDENTIALS", c.Database.GCloudCredentialPath)
}
log.Println("GOOGLE_APPLICATION_CREDENTIALS=", os.Getenv("GOOGLE_APPLICATION_CREDENTIALS"))
// setup influxdb in config.yaml
c.InfluxdbConfig = InfluxdbConfig{
Enabled: v.GetBool("InfluxdbConfig.Enabled"),
InfluxdbURL: v.GetString("InfluxdbConfig.InfluxdbURL"),
AccessToken: v.GetString("InfluxdbConfig.AccessToken"),
Orgnization: v.GetString("InfluxdbConfig.Orgnization"),
Bucket: v.GetString("InfluxdbConfig.Bucket"),
}
// setup config.yaml (Retension)
c.Retension = Retension{
Enabled: v.GetBool("Retension.Enabled"),
KeepHours: v.GetInt64("Retension.KeepHours"),
UpdateIntervalSec: v.GetInt64("Retension.UpdateIntervalSec"),
}
// setup config.yaml (ClusterConfigFile)
c.ClusterCLIConfig = ClusterCLIConfig{
Dir: v.GetString("SolanaCliFile.Dir"),
MainnetPath: v.GetString("SolanaCliFile.MainnetPath"),
TestnetPath: v.GetString("SolanaCliFile.TestnetPath"),
DevnetPath: v.GetString("SolanaCliFile.DevnetPath"),
}
if len(c.ClusterCLIConfig.MainnetPath) > 0 {
sConfig, err := ReadSolanaCLIConfigFile(c.ClusterCLIConfig.Dir + c.ClusterCLIConfig.MainnetPath)
if err != nil {
log.Fatal(err)
}
c.ClusterCLIConfig.ConfigMain = sConfig
}
if len(c.ClusterCLIConfig.TestnetPath) > 0 {
sConfig, err := ReadSolanaCLIConfigFile(c.ClusterCLIConfig.Dir + c.ClusterCLIConfig.TestnetPath)
if err != nil {
log.Fatal(err)
}
c.ClusterCLIConfig.ConfigTestnet = sConfig
}
if len(c.ClusterCLIConfig.DevnetPath) > 0 {
sConfig, err := ReadSolanaCLIConfigFile(c.ClusterCLIConfig.Dir + c.ClusterCLIConfig.DevnetPath)
if err != nil {
log.Fatal(err)
}
c.ClusterCLIConfig.ConfigDevnet = sConfig
}
// setup config.yaml (SolanaCliFile) all cluster services
configMainnetFile := v.GetString("ClusterConfigFile.Mainnet")
configTestnetFile := v.GetString("ClusterConfigFile.Testnet")
configDevnetFile := v.GetString("ClusterConfigFile.Devnet")
// Read Each Cluster Configurations
// setup config.yaml for mainnet
v.SetConfigName(configMainnetFile)
v.ReadInConfig()
c.Mainnet = ClusterConfig{
Cluster: MainnetBeta,
HostName: hostname,
ClusterPing: ReadClusterPingConfig(v),
}
if c.Mainnet.APIServer.Mode != HTTP &&
c.Mainnet.APIServer.Mode != HTTPS && c.Mainnet.APIServer.Mode != BOTH {
c.Mainnet.APIServer.Mode = HTTP
log.Println("Mainnet API server mode not support! use default mode")
}
v.SetConfigName(configTestnetFile)
v.ReadInConfig()
c.Testnet = ClusterConfig{
Cluster: Testnet,
HostName: hostname,
ClusterPing: ReadClusterPingConfig(v),
}
if c.Testnet.APIServer.Mode != HTTP &&
c.Testnet.APIServer.Mode != HTTPS && c.Testnet.APIServer.Mode != BOTH {
c.Testnet.APIServer.Mode = HTTP
log.Println("Mainnet API server mode not support! use default mode")
}
v.SetConfigName(configDevnetFile)
v.ReadInConfig()
c.Devnet = ClusterConfig{
Cluster: Devnet,
HostName: hostname,
ClusterPing: ReadClusterPingConfig(v),
}
if c.Devnet.APIServer.Mode != HTTP &&
c.Devnet.APIServer.Mode != HTTPS && c.Devnet.APIServer.Mode != BOTH {
c.Devnet.APIServer.Mode = HTTP
log.Println("Devnet API server mode not support! use default mode")
}
return c
}
func ReadSolanaCLIConfigFile(filepath string) (SolanaCLIConfig, error) {
configmap := make(map[string]string, 1)
addressmap := make(map[string]string, 1)
f, err := os.Open(filepath)
if err != nil {
log.Printf("error opening file: %v\n", err)
return SolanaCLIConfig{}, err
}
r := bufio.NewReader(f)
line, _, err := r.ReadLine()
for err == nil {
k, v := ToKeyPair(string(line))
if k == "address_labels" {
line, _, err := r.ReadLine()
lKey, lVal := ToKeyPair(string(line))
if err == nil && string(line)[0:1] == " " {
if len(lKey) > 0 && len(lVal) > 0 {
addressmap[lKey] = lVal
}
} else {
configmap[k] = v
}
} else {
configmap[k] = v
}
line, _, err = r.ReadLine()
}
return SolanaCLIConfig{
JsonRPCURL: configmap["json_rpc_url"],
WebsocketURL: configmap["websocket_url:"],
KeypairPath: configmap["keypair_path"],
AddressLabels: addressmap,
Commitment: configmap["commitment"],
}, nil
}
func ToKeyPair(line string) (key string, val string) {
noSpaceLine := strings.TrimSpace(string(line))
idx := strings.Index(noSpaceLine, ":")
if idx == -1 || idx == 0 { // not found or only have :
return "", ""
}
if (len(noSpaceLine) - 1) == idx { // no value
return strings.TrimSpace(noSpaceLine[0:idx]), ""
}
return strings.TrimSpace(noSpaceLine[0:idx]), strings.TrimSpace(noSpaceLine[idx+1:])
}
func ReadClusterPingConfig(v *viper.Viper) ClusterPing {
v.Debug()
clusterConf := ClusterPing{}
v.Unmarshal(&clusterConf)
return clusterConf
}