Skip to content

Commit

Permalink
Load env variables into KwildConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
charithabandi committed May 8, 2024
1 parent 1e4abb3 commit c2d33fa
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 6 deletions.
44 changes: 38 additions & 6 deletions cmd/kwild/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -426,15 +426,28 @@ func LoadConfigFile(configPath string) (*KwildConfig, error) {

// LoadEnvConfig loads a config from environment variables.
func LoadEnvConfig() (*KwildConfig, error) {
viper.SetEnvPrefix("KWILD")
viper.AutomaticEnv()

var cfg KwildConfig
if err := viper.Unmarshal(&cfg); err != nil {
// Manually bind environment variables to viper keys.
for _, key := range viper.AllKeys() {
// Replace dashes with underscores in the key to match the flag name.
// This is required because there is inconsistency between our flag names
// and the struct tags. The struct tags use underscores, but the flag names
// use dashes. Viper uses the flag names to bind environment variables
// and this conversion is required to map it to the struct fields correctly.
bindKey := strings.ReplaceAll(key, "-", "_")
envKey := "KWILD_" + strings.ToUpper(strings.ReplaceAll(bindKey, ".", "_"))
viper.BindEnv(bindKey, envKey)
}

// var cfg KwildConfig, won't work because, viper won't be able to extract
// the heirarchical keys from the config structure as fields like cfg.app set to nil.
// It can only extract the first level keys [app, chain, log] in this case.
// To remedy that, we use DefaultEmptyConfig with all the sub fields initialized.
cfg := DefaultEmptyConfig()
if err := viper.Unmarshal(cfg); err != nil {
return nil, fmt.Errorf("decoding config: %v", err)
}

return &cfg, nil
return cfg, nil
}

var ErrConfigFileNotFound = fmt.Errorf("config file not found")
Expand All @@ -444,6 +457,25 @@ func fileExists(path string) bool {
return !os.IsNotExist(err)
}

// DefaultEmptyConfig returns a config with all fields set to their zero values.
// This is used by viper to extract all the heirarchical keys from the config
// structure.
func DefaultEmptyConfig() *KwildConfig {
return &KwildConfig{
AppCfg: &AppConfig{
Extensions: make(map[string]map[string]string),
},
ChainCfg: &ChainConfig{
P2P: &P2PConfig{},
RPC: &ChainRPCConfig{},
Mempool: &MempoolConfig{},
StateSync: &StateSyncConfig{},
Consensus: &ConsensusConfig{},
},
Logging: &Logging{},
}
}

func DefaultConfig() *KwildConfig {
return &KwildConfig{
AppCfg: &AppConfig{
Expand Down
2 changes: 2 additions & 0 deletions cmd/kwild/root/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import (
"github.com/kwilteam/kwil-db/internal/version"

"github.com/spf13/cobra"
"github.com/spf13/viper"
)

func RootCmd() *cobra.Command {
Expand Down Expand Up @@ -89,6 +90,7 @@ func RootCmd() *cobra.Command {
flagSet := cmd.Flags()
flagSet.SortFlags = false
config.AddConfigFlags(flagSet, flagCfg)
viper.BindPFlags(flagSet)

flagSet.BoolVarP(&autoGen, "autogen", "a", false,
"auto generate private key, genesis file, and config file if not exist")
Expand Down

0 comments on commit c2d33fa

Please sign in to comment.