OSDN Git Service

update dashboard:politic (#1715)
[bytom/bytom.git] / config / config.go
1 package config
2
3 import (
4         "io"
5         "io/ioutil"
6         "os"
7         "os/user"
8         "path/filepath"
9         "runtime"
10
11         log "github.com/sirupsen/logrus"
12
13         "github.com/bytom/crypto/ed25519"
14 )
15
16 var (
17         // CommonConfig means config object
18         CommonConfig *Config
19 )
20
21 type Config struct {
22         // Top level options use an anonymous struct
23         BaseConfig `mapstructure:",squash"`
24         // Options for services
25         P2P       *P2PConfig       `mapstructure:"p2p"`
26         Wallet    *WalletConfig    `mapstructure:"wallet"`
27         Auth      *RPCAuthConfig   `mapstructure:"auth"`
28         Web       *WebConfig       `mapstructure:"web"`
29         Simd      *SimdConfig      `mapstructure:"simd"`
30         Websocket *WebsocketConfig `mapstructure:"ws"`
31 }
32
33 // Default configurable parameters.
34 func DefaultConfig() *Config {
35         return &Config{
36                 BaseConfig: DefaultBaseConfig(),
37                 P2P:        DefaultP2PConfig(),
38                 Wallet:     DefaultWalletConfig(),
39                 Auth:       DefaultRPCAuthConfig(),
40                 Web:        DefaultWebConfig(),
41                 Simd:       DefaultSimdConfig(),
42                 Websocket:  DefaultWebsocketConfig(),
43         }
44 }
45
46 // Set the RootDir for all Config structs
47 func (cfg *Config) SetRoot(root string) *Config {
48         cfg.BaseConfig.RootDir = root
49         return cfg
50 }
51
52 // NodeKey retrieves the currently configured private key of the node, checking
53 // first any manually set key, falling back to the one found in the configured
54 // data folder. If no key can be found, a new one is generated.
55 func (cfg *Config) NodeKey() (string, error) {
56         // Use any specifically configured key.
57         if cfg.P2P.PrivateKey != "" {
58                 return cfg.P2P.PrivateKey, nil
59         }
60
61         keyFile := rootify(cfg.P2P.NodeKeyFile, cfg.BaseConfig.RootDir)
62         buf := make([]byte, ed25519.PrivateKeySize*2)
63         fd, err := os.Open(keyFile)
64         defer fd.Close()
65         if err == nil {
66                 if _, err = io.ReadFull(fd, buf); err == nil {
67                         return string(buf), nil
68                 }
69         }
70
71         log.WithField("err", err).Warning("key file access failed")
72         _, privKey, err := ed25519.GenerateKey(nil)
73         if err != nil {
74                 return "", err
75         }
76
77         if err = ioutil.WriteFile(keyFile, []byte(privKey.String()), 0600); err != nil {
78                 return "", err
79         }
80         return privKey.String(), nil
81 }
82
83 //-----------------------------------------------------------------------------
84 // BaseConfig
85 type BaseConfig struct {
86         // The root directory for all data.
87         // This should be set in viper so it can unmarshal into this struct
88         RootDir string `mapstructure:"home"`
89
90         //The alias of the node
91         NodeAlias string `mapstructure:"node_alias"`
92
93         //The ID of the network to json
94         ChainID string `mapstructure:"chain_id"`
95
96         //log level to set
97         LogLevel string `mapstructure:"log_level"`
98
99         // A custom human readable name for this node
100         Moniker string `mapstructure:"moniker"`
101
102         // TCP or UNIX socket address for the profiling server to listen on
103         ProfListenAddress string `mapstructure:"prof_laddr"`
104
105         Mining bool `mapstructure:"mining"`
106
107         // Database backend: leveldb | memdb
108         DBBackend string `mapstructure:"db_backend"`
109
110         // Database directory
111         DBPath string `mapstructure:"db_dir"`
112
113         // Keystore directory
114         KeysPath string `mapstructure:"keys_dir"`
115
116         ApiAddress string `mapstructure:"api_addr"`
117
118         VaultMode bool `mapstructure:"vault_mode"`
119
120         // log file name
121         LogFile string `mapstructure:"log_file"`
122 }
123
124 // Default configurable base parameters.
125 func DefaultBaseConfig() BaseConfig {
126         return BaseConfig{
127                 Moniker:           "anonymous",
128                 ProfListenAddress: "",
129                 Mining:            false,
130                 DBBackend:         "leveldb",
131                 DBPath:            "data",
132                 KeysPath:          "keystore",
133                 NodeAlias:         "",
134         }
135 }
136
137 func (b BaseConfig) DBDir() string {
138         return rootify(b.DBPath, b.RootDir)
139 }
140
141 func (b BaseConfig) KeysDir() string {
142         return rootify(b.KeysPath, b.RootDir)
143 }
144
145 // P2PConfig
146 type P2PConfig struct {
147         ListenAddress    string `mapstructure:"laddr"`
148         Seeds            string `mapstructure:"seeds"`
149         PrivateKey       string `mapstructure:"node_key"`
150         NodeKeyFile      string `mapstructure:"node_key_file"`
151         SkipUPNP         bool   `mapstructure:"skip_upnp"`
152         MaxNumPeers      int    `mapstructure:"max_num_peers"`
153         HandshakeTimeout int    `mapstructure:"handshake_timeout"`
154         DialTimeout      int    `mapstructure:"dial_timeout"`
155         ProxyAddress     string `mapstructure:"proxy_address"`
156         ProxyUsername    string `mapstructure:"proxy_username"`
157         ProxyPassword    string `mapstructure:"proxy_password"`
158         KeepDial         string `mapstructure:"keep_dial"`
159 }
160
161 // Default configurable p2p parameters.
162 func DefaultP2PConfig() *P2PConfig {
163         return &P2PConfig{
164                 ListenAddress:    "tcp://0.0.0.0:46656",
165                 NodeKeyFile:      "nodekey",
166                 SkipUPNP:         false,
167                 MaxNumPeers:      50,
168                 HandshakeTimeout: 30,
169                 DialTimeout:      3,
170                 ProxyAddress:     "",
171                 ProxyUsername:    "",
172                 ProxyPassword:    "",
173         }
174 }
175
176 //-----------------------------------------------------------------------------
177 type WalletConfig struct {
178         Disable  bool   `mapstructure:"disable"`
179         Rescan   bool   `mapstructure:"rescan"`
180         TxIndex  bool   `mapstructure:"txindex"`
181         MaxTxFee uint64 `mapstructure:"max_tx_fee"`
182 }
183
184 type RPCAuthConfig struct {
185         Disable bool `mapstructure:"disable"`
186 }
187
188 type WebConfig struct {
189         Closed bool `mapstructure:"closed"`
190 }
191
192 type SimdConfig struct {
193         Enable bool `mapstructure:"enable"`
194 }
195
196 type WebsocketConfig struct {
197         MaxNumWebsockets     int `mapstructure:"max_num_websockets"`
198         MaxNumConcurrentReqs int `mapstructure:"max_num_concurrent_reqs"`
199 }
200
201 // Default configurable rpc's auth parameters.
202 func DefaultRPCAuthConfig() *RPCAuthConfig {
203         return &RPCAuthConfig{
204                 Disable: false,
205         }
206 }
207
208 // Default configurable web parameters.
209 func DefaultWebConfig() *WebConfig {
210         return &WebConfig{
211                 Closed: false,
212         }
213 }
214
215 // Default configurable wallet parameters.
216 func DefaultWalletConfig() *WalletConfig {
217         return &WalletConfig{
218                 Disable:  false,
219                 Rescan:   false,
220                 TxIndex:  false,
221                 MaxTxFee: uint64(1000000000),
222         }
223 }
224
225 // Default configurable web parameters.
226 func DefaultSimdConfig() *SimdConfig {
227         return &SimdConfig{
228                 Enable: false,
229         }
230 }
231
232 func DefaultWebsocketConfig() *WebsocketConfig {
233         return &WebsocketConfig{
234                 MaxNumWebsockets:     25,
235                 MaxNumConcurrentReqs: 20,
236         }
237 }
238
239 //-----------------------------------------------------------------------------
240 // Utils
241
242 // helper function to make config creation independent of root dir
243 func rootify(path, root string) string {
244         if filepath.IsAbs(path) {
245                 return path
246         }
247         return filepath.Join(root, path)
248 }
249
250 // DefaultDataDir is the default data directory to use for the databases and other
251 // persistence requirements.
252 func DefaultDataDir() string {
253         // Try to place the data folder in the user's home dir
254         home := homeDir()
255         if home == "" {
256                 return "./.bytom"
257         }
258         switch runtime.GOOS {
259         case "darwin":
260                 // In order to be compatible with old data path,
261                 // copy the data from the old path to the new path
262                 oldPath := filepath.Join(home, "Library", "Bytom")
263                 newPath := filepath.Join(home, "Library", "Application Support", "Bytom")
264                 if !isFolderNotExists(oldPath) && isFolderNotExists(newPath) {
265                         if err := os.Rename(oldPath, newPath); err != nil {
266                                 log.Errorf("DefaultDataDir: %v", err)
267                                 return oldPath
268                         }
269                 }
270                 return newPath
271         case "windows":
272                 return filepath.Join(home, "AppData", "Roaming", "Bytom")
273         default:
274                 return filepath.Join(home, ".bytom")
275         }
276 }
277
278 func isFolderNotExists(path string) bool {
279         _, err := os.Stat(path)
280         return os.IsNotExist(err)
281 }
282
283 func homeDir() string {
284         if home := os.Getenv("HOME"); home != "" {
285                 return home
286         }
287         if usr, err := user.Current(); err == nil {
288                 return usr.HomeDir
289         }
290         return ""
291 }