forked from gnolang/gno
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_init.go
83 lines (66 loc) · 1.86 KB
/
config_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
package main
import (
"context"
"errors"
"flag"
"fmt"
"os"
"path/filepath"
"github.com/gnolang/gno/tm2/pkg/bft/config"
"github.com/gnolang/gno/tm2/pkg/commands"
osm "github.com/gnolang/gno/tm2/pkg/os"
)
var errInvalidConfigOutputPath = errors.New("invalid config output path provided")
type configInitCfg struct {
configCfg
forceOverwrite bool
}
// newConfigInitCmd creates the config init command
func newConfigInitCmd(io commands.IO) *commands.Command {
cfg := &configInitCfg{}
cmd := commands.NewCommand(
commands.Metadata{
Name: "init",
ShortUsage: "config init [flags]",
ShortHelp: "initializes the Gno node configuration",
LongHelp: "Initializes the Gno node configuration locally with default values, which includes" +
" the base and module configurations",
},
cfg,
func(_ context.Context, _ []string) error {
return execConfigInit(cfg, io)
},
)
return cmd
}
func (c *configInitCfg) RegisterFlags(fs *flag.FlagSet) {
c.configCfg.RegisterFlags(fs)
fs.BoolVar(
&c.forceOverwrite,
"force",
false,
"overwrite existing config.toml, if any",
)
}
func execConfigInit(cfg *configInitCfg, io commands.IO) error {
// Check the config output path
if cfg.configPath == "" {
return errInvalidConfigOutputPath
}
// Make sure overwriting the config is enabled
if osm.FileExists(cfg.configPath) && !cfg.forceOverwrite {
return errOverwriteNotEnabled
}
// Get the default config
c := config.DefaultConfig()
// Make sure the path is created
if err := os.MkdirAll(filepath.Dir(cfg.configPath), 0o755); err != nil {
return fmt.Errorf("unable to create config dir, %w", err)
}
// Save the config to the path
if err := config.WriteConfigFile(cfg.configPath, c); err != nil {
return fmt.Errorf("unable to initialize config, %w", err)
}
io.Printfln("Default configuration initialized at %s", cfg.configPath)
return nil
}