Skip to content

Commit 672a4c7

Browse files
committed
feat: config file utils
1 parent 3e9d26f commit 672a4c7

File tree

5 files changed

+147
-22
lines changed

5 files changed

+147
-22
lines changed

cmd/root.go

+4-6
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@ package cmd
33
import (
44
"context"
55
"github.com/initia-labs/weave/models"
6+
"github.com/initia-labs/weave/utils"
67

78
tea "github.com/charmbracelet/bubbletea"
89
"github.com/spf13/cobra"
910
"github.com/spf13/viper"
10-
11-
"github.com/initia-labs/weave/states"
1211
)
1312

1413
func Execute() error {
@@ -17,13 +16,12 @@ func Execute() error {
1716
Use: "weave",
1817
Long: "Weave is a CLI for managing Initia deployments.",
1918
PersistentPreRunE: func(cmd *cobra.Command, args []string) error {
20-
if err := viper.BindPFlags(cmd.Flags()); err != nil {
21-
return err
22-
}
2319
viper.AutomaticEnv()
2420
viper.SetEnvPrefix("weave")
2521

26-
states.GetGlobalStorage() // Ensure global storage is initialized
22+
if err := utils.InitializeConfig(); err != nil {
23+
return err
24+
}
2725

2826
return nil
2927
},

models/homepage.go

+36-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package models
22

33
import (
4+
"fmt"
45
tea "github.com/charmbracelet/bubbletea"
56

67
"github.com/initia-labs/weave/models/weaveinit"
@@ -9,6 +10,8 @@ import (
910

1011
type Homepage struct {
1112
utils.Selector[HomepageOption]
13+
TextInput utils.TextInput
14+
isFirstTimeSetup bool
1215
}
1316

1417
type HomepageOption string
@@ -25,6 +28,8 @@ func NewHomepage() tea.Model {
2528
},
2629
Cursor: 0,
2730
},
31+
isFirstTimeSetup: utils.IsFirstTimeSetup(),
32+
TextInput: "",
2833
}
2934
}
3035

@@ -33,6 +38,19 @@ func (m *Homepage) Init() tea.Cmd {
3338
}
3439

3540
func (m *Homepage) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
41+
if m.isFirstTimeSetup {
42+
input, done := m.TextInput.Update(msg)
43+
if done {
44+
err := utils.SetConfig("common.gas_station_mnemonic", string(input))
45+
if err != nil {
46+
return nil, nil
47+
}
48+
return NewHomepage(), nil
49+
}
50+
m.TextInput = input
51+
return m, nil
52+
}
53+
3654
selected, cmd := m.Select(msg)
3755
if selected != nil {
3856
switch *selected {
@@ -46,12 +64,24 @@ func (m *Homepage) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
4664

4765
func (m *Homepage) View() string {
4866
view := "Hi 👋🏻 Weave is a CLI for managing Initia deployments.\n"
49-
for i, option := range m.Options {
50-
if i == m.Cursor {
51-
view += "(•) " + string(option) + "\n"
52-
} else {
53-
view += "( ) " + string(option) + "\n"
67+
68+
if m.isFirstTimeSetup {
69+
view += fmt.Sprintf(
70+
"It looks like this is your first time using Weave. Let's get started!\n"+
71+
"Please set up a Gas Station account (The account that will hold the funds required by the "+
72+
"OPinit-bots or relayer to send transactions):\n> %s\n", m.TextInput,
73+
)
74+
} else {
75+
view += "What would you like to do today?\n"
76+
for i, option := range m.Options {
77+
if i == m.Cursor {
78+
view += "(•) " + string(option) + "\n"
79+
} else {
80+
view += "( ) " + string(option) + "\n"
81+
}
5482
}
83+
view += "\nPress Enter to select, or q to quit."
5584
}
56-
return view + "\nPress Enter to select, or q to quit."
85+
86+
return view
5787
}

models/weaveinit/run_l1_node.go

+31-9
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,28 @@ import (
77
)
88

99
type RunL1Node struct {
10-
utils.TextInput
10+
utils.Selector[L1NodeNetworkOption]
1111
state *RunL1NodeState
1212
}
1313

14+
type L1NodeNetworkOption string
15+
16+
const (
17+
Mainnet L1NodeNetworkOption = "Mainnet"
18+
Testnet L1NodeNetworkOption = "Testnet"
19+
Local L1NodeNetworkOption = "Local"
20+
)
21+
1422
func NewRunL1Node(state *RunL1NodeState) *RunL1Node {
1523
return &RunL1Node{
16-
TextInput: "",
17-
state: state,
24+
Selector: utils.Selector[L1NodeNetworkOption]{
25+
Options: []L1NodeNetworkOption{
26+
Mainnet,
27+
Testnet,
28+
Local,
29+
},
30+
},
31+
state: state,
1832
}
1933
}
2034

@@ -23,16 +37,24 @@ func (m *RunL1Node) Init() tea.Cmd {
2337
}
2438

2539
func (m *RunL1Node) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
26-
input, done := m.TextInput.Update(msg)
27-
if done {
28-
m.state.gasStationMnemonic = string(input)
40+
selected, cmd := m.Select(msg)
41+
if selected != nil {
42+
m.state.network = string(*selected)
2943
fmt.Println("[info] state ", m.state)
3044
return m, tea.Quit
3145
}
32-
m.TextInput = input
33-
return m, nil
46+
47+
return m, cmd
3448
}
3549

3650
func (m *RunL1Node) View() string {
37-
return fmt.Sprintf("? Please set up a Gas Station account (The account that will hold the funds required by the OPinit-bots or relayer to send transactions)\nYou can also set this up later. Weave will not send any transactions without your confirmation.\n> %s\n", m.TextInput)
51+
view := "? Which network will your node participate in?\n"
52+
for i, option := range m.Options {
53+
if i == m.Cursor {
54+
view += "(•) " + string(option) + "\n"
55+
} else {
56+
view += "( ) " + string(option) + "\n"
57+
}
58+
}
59+
return view + "\nPress Enter to select, or q to quit."
3860
}

models/weaveinit/state.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package weaveinit
22

33
type RunL1NodeState struct {
4-
gasStationMnemonic string
4+
network string
55
}

utils/config.go

+75
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
package utils
2+
3+
import (
4+
"fmt"
5+
"os"
6+
"path/filepath"
7+
8+
"github.com/spf13/viper"
9+
)
10+
11+
func InitializeConfig() error {
12+
homeDir, err := os.UserHomeDir()
13+
if err != nil {
14+
return fmt.Errorf("failed to get user home directory: %v", err)
15+
}
16+
17+
configPath := filepath.Join(homeDir, ".weave", "config.json")
18+
if err := os.MkdirAll(filepath.Dir(configPath), os.ModePerm); err != nil {
19+
return fmt.Errorf("failed to create config directory: %v", err)
20+
}
21+
22+
viper.SetConfigFile(configPath)
23+
viper.SetConfigType("json")
24+
25+
if _, err := os.Stat(configPath); os.IsNotExist(err) {
26+
if err := createEmptyConfigFile(configPath); err != nil {
27+
return fmt.Errorf("failed to create default config file: %v", err)
28+
}
29+
}
30+
31+
return LoadConfig()
32+
}
33+
34+
func createEmptyConfigFile(filePath string) error {
35+
file, err := os.Create(filePath)
36+
if err != nil {
37+
return fmt.Errorf("failed to create config file: %v", err)
38+
}
39+
defer file.Close()
40+
41+
// Initialize with an empty JSON object
42+
_, err = file.WriteString("{}")
43+
if err != nil {
44+
return fmt.Errorf("failed to write to config file: %v", err)
45+
}
46+
47+
return nil
48+
}
49+
50+
func LoadConfig() error {
51+
if err := viper.ReadInConfig(); err != nil {
52+
return fmt.Errorf("failed to read config file: %v", err)
53+
}
54+
return nil
55+
}
56+
57+
func GetConfig(key string) interface{} {
58+
return viper.Get(key)
59+
}
60+
61+
func SetConfig(key string, value interface{}) error {
62+
viper.Set(key, value)
63+
return WriteConfig()
64+
}
65+
66+
func WriteConfig() error {
67+
if err := viper.WriteConfig(); err != nil {
68+
return fmt.Errorf("failed to write config file: %v", err)
69+
}
70+
return nil
71+
}
72+
73+
func IsFirstTimeSetup() bool {
74+
return viper.Get("common.gas_station_mnemonic") == nil
75+
}

0 commit comments

Comments
 (0)