-
Notifications
You must be signed in to change notification settings - Fork 22
/
init.go
97 lines (80 loc) · 2.85 KB
/
init.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
// Copyright (c) 2022 Gobalsky Labs Limited
//
// Use of this software is governed by the Business Source License included
// in the LICENSE file and at https://www.mariadb.com/bsl11.
//
// Change Date: 18 months from the later of the date of the first publicly
// available Distribution of this version of the repository, and 25 June 2022.
//
// On the date above, in accordance with the Business Source License, use
// of this software will be governed by version 3 or later of the GNU General
// Public License.
package faucet
import (
"fmt"
"code.vegaprotocol.io/vega/core/config"
"code.vegaprotocol.io/vega/core/faucet"
vgjson "code.vegaprotocol.io/vega/libs/json"
"code.vegaprotocol.io/vega/logging"
"code.vegaprotocol.io/vega/paths"
)
type faucetInit struct {
config.VegaHomeFlag
config.PassphraseFlag
config.OutputFlag
Force bool `short:"f" long:"force" description:"Erase existing configuration at specified path"`
UpdateInPlace bool `long:"update-in-place" description:"Update the Vega node configuration with the faucet public key"`
}
func (opts *faucetInit) Execute(_ []string) error {
logDefaultConfig := logging.NewDefaultConfig()
log := logging.NewLoggerFromConfig(logDefaultConfig)
defer log.AtExit()
output, err := opts.OutputFlag.GetOutput()
if err != nil {
return err
}
pass, err := opts.PassphraseFile.Get("faucet wallet", true)
if err != nil {
return err
}
vegaPaths := paths.New(opts.VegaHome)
initResult, err := faucet.Initialise(vegaPaths, pass, opts.Force)
if err != nil {
return fmt.Errorf("couldn't initialise faucet: %w", err)
}
var nodeCfgFilePath string
if opts.UpdateInPlace {
nodeCfgLoader, nodeCfg, err := config.EnsureNodeConfig(vegaPaths)
if err != nil {
return err
}
// add the faucet public key to the allowlist
nodeCfg.EvtForward.BlockchainQueueAllowlist = append(
nodeCfg.EvtForward.BlockchainQueueAllowlist, initResult.Wallet.PublicKey)
if err := nodeCfgLoader.Save(nodeCfg); err != nil {
return fmt.Errorf("couldn't update node configuration: %w", err)
}
nodeCfgFilePath = nodeCfgLoader.ConfigFilePath()
}
result := struct {
PublicKey string `json:"publicKey"`
NodeConfigFilePath string `json:"nodeConfigFilePath,omitempty"`
FaucetConfigFilePath string `json:"faucetConfigFilePath"`
FaucetWalletFilePath string `json:"faucetWalletFilePath"`
}{
NodeConfigFilePath: nodeCfgFilePath,
FaucetConfigFilePath: initResult.ConfigFilePath,
FaucetWalletFilePath: initResult.Wallet.FilePath,
PublicKey: initResult.Wallet.PublicKey,
}
if output.IsHuman() {
log.Info("faucet initialised successfully", logging.String("public-key", initResult.Wallet.PublicKey))
err := vgjson.PrettyPrint(result)
if err != nil {
return fmt.Errorf("couldn't pretty print result: %w", err)
}
} else if output.IsJSON() {
return vgjson.Print(result)
}
return nil
}