generated from mrz1836/go-template
-
Notifications
You must be signed in to change notification settings - Fork 15
/
defaults.go
172 lines (155 loc) · 4.41 KB
/
defaults.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
package config
import (
"time"
"github.com/bitcoin-sv/spv-wallet/engine/datastore"
"github.com/google/uuid"
)
// DefaultAdminXpub is the default admin xpub used for authenticate requests.
const DefaultAdminXpub = "xpub661MyMwAqRbcFgfmdkPgE2m5UjHXu9dj124DbaGLSjaqVESTWfCD4VuNmEbVPkbYLCkykwVZvmA8Pbf8884TQr1FgdG2nPoHR8aB36YdDQh"
// TaskManagerQueueName is the default queue name for the task manager.
const TaskManagerQueueName = "spv_wallet_queue"
// GetDefaultAppConfig returns the default configuration for the application.
func GetDefaultAppConfig() *AppConfig {
return &AppConfig{
Version: "development",
Authentication: getAuthConfigDefaults(),
Cache: getCacheDefaults(),
Db: getDbDefaults(),
DebugProfiling: true,
DisableITC: true,
ImportBlockHeaders: "",
Logging: getLoggingDefaults(),
ARC: getARCDefaults(),
Notifications: getNotificationDefaults(),
Paymail: getPaymailDefaults(),
BHS: getBHSDefaults(),
RequestLogging: true,
Server: getServerDefaults(),
TaskManager: getTaskManagerDefault(),
Metrics: getMetricsDefaults(),
ExperimentalFeatures: getExperimentalFeaturesConfig(),
CustomFeeUnit: nil,
}
}
func getAuthConfigDefaults() *AuthenticationConfig {
return &AuthenticationConfig{
AdminKey: DefaultAdminXpub,
RequireSigning: false,
Scheme: "xpub",
}
}
func getCacheDefaults() *CacheConfig {
return &CacheConfig{
Engine: "freecache",
Cluster: &ClusterConfig{
Coordinator: "memory",
Prefix: "spv_wallet_cluster_",
Redis: nil,
},
Redis: &RedisConfig{
DependencyMode: true,
MaxActiveConnections: 0,
MaxConnectionLifetime: 60 * time.Second,
MaxIdleConnections: 10,
MaxIdleTimeout: 10 * time.Second,
URL: "redis://localhost:6379",
UseTLS: false,
},
}
}
func getDbDefaults() *DbConfig {
return &DbConfig{
Datastore: &DatastoreConfig{
Debug: false,
Engine: "sqlite",
TablePrefix: "xapi",
},
SQL: &datastore.SQLConfig{
Driver: "postgresql",
ExistingConnection: nil,
Host: "localhost",
Name: "xapi",
Password: "",
Port: "5432",
Replica: false,
TimeZone: "UTC",
TxTimeout: 10 * time.Second,
User: "postgres",
SslMode: "disable",
},
SQLite: &datastore.SQLiteConfig{
DatabasePath: "./spv-wallet.db",
ExistingConnection: nil,
Shared: true,
},
}
}
func getLoggingDefaults() *LoggingConfig {
return &LoggingConfig{
Level: "info",
Format: "console",
InstanceName: "spv-wallet",
LogOrigin: false,
}
}
func getARCDefaults() *ARCConfig {
depIDSufix, _ := uuid.NewUUID()
return &ARCConfig{
DeploymentID: "spv-wallet-" + depIDSufix.String(),
URL: "https://arc.taal.com",
Token: "mainnet_06770f425eb00298839a24a49cbdc02c",
Callback: &CallbackConfig{
Enabled: false,
Host: "https://example.com",
Token: "",
},
}
}
func getNotificationDefaults() *NotificationsConfig {
return &NotificationsConfig{
Enabled: true,
}
}
func getPaymailDefaults() *PaymailConfig {
return &PaymailConfig{
Beef: &BeefConfig{
UseBeef: true,
BlockHeadersServiceHeaderValidationURL: "http://localhost:8080/api/v1/chain/merkleroot/verify",
BlockHeadersServiceAuthToken: "mQZQ6WmxURxWz5ch", // #nosec G101
},
DefaultFromPaymail: "[email protected]",
Domains: []string{"localhost"},
DomainValidationEnabled: true,
SenderValidationEnabled: false,
}
}
func getBHSDefaults() *BHSConfig {
return &BHSConfig{
AuthToken: "mQZQ6WmxURxWz5ch",
URL: "http://localhost:8080",
}
}
func getTaskManagerDefault() *TaskManagerConfig {
return &TaskManagerConfig{
Factory: "memory",
}
}
func getServerDefaults() *ServerConfig {
return &ServerConfig{
IdleTimeout: 60 * time.Second,
ReadTimeout: 15 * time.Second,
WriteTimeout: 15 * time.Second,
Port: 3003,
}
}
func getMetricsDefaults() *MetricsConfig {
return &MetricsConfig{
Enabled: false,
}
}
func getExperimentalFeaturesConfig() *ExperimentalConfig {
return &ExperimentalConfig{
PikeContactsEnabled: false,
PikePaymentEnabled: false,
}
}