mirror of
https://github.com/luxfi/node.git
synced 2026-07-27 03:39:39 +00:00
79 lines
1.9 KiB
Go
79 lines
1.9 KiB
Go
// Copyright (C) 2019-2025, Lux Industries Inc. All rights reserved.
|
|
// See the file LICENSE for licensing terms.
|
|
|
|
package config
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/base64"
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/spf13/pflag"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
const EnvPrefix = "luxd"
|
|
|
|
var DashesToUnderscores = strings.NewReplacer("-", "_")
|
|
|
|
func EnvVarName(prefix string, key string) string {
|
|
// e.g. MY_PREFIX, network-id -> MY_PREFIX_NETWORK_ID
|
|
return strings.ToUpper(prefix + "_" + DashesToUnderscores.Replace(key))
|
|
}
|
|
|
|
// BuildViper returns the viper environment from parsing config file from
|
|
// default search paths and any parsed command line flags
|
|
func BuildViper(fs *pflag.FlagSet, args []string) (*viper.Viper, error) {
|
|
if err := deprecateFlags(fs); err != nil {
|
|
return nil, err
|
|
}
|
|
if err := fs.Parse(args); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
v := viper.New()
|
|
v.AutomaticEnv()
|
|
v.SetEnvKeyReplacer(DashesToUnderscores)
|
|
v.SetEnvPrefix(EnvPrefix)
|
|
if err := v.BindPFlags(fs); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// load node configs from flags or file, depending on which flags are set
|
|
switch {
|
|
case v.IsSet(ConfigContentKey):
|
|
configContentB64 := v.GetString(ConfigContentKey)
|
|
configBytes, err := base64.StdEncoding.DecodeString(configContentB64)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("unable to decode base64 content: %w", err)
|
|
}
|
|
|
|
v.SetConfigType(v.GetString(ConfigContentTypeKey))
|
|
if err := v.ReadConfig(bytes.NewBuffer(configBytes)); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
case v.IsSet(ConfigFileKey):
|
|
filename := getExpandedArg(v, ConfigFileKey)
|
|
v.SetConfigFile(filename)
|
|
if err := v.ReadInConfig(); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
// Config deprecations must be after v.ReadInConfig
|
|
deprecateConfigs(v, os.Stdout)
|
|
return v, nil
|
|
}
|
|
|
|
func deprecateConfigs(v *viper.Viper, output io.Writer) {
|
|
for key, message := range deprecatedKeys {
|
|
if v.InConfig(key) {
|
|
fmt.Fprintf(output, "Config %s has been deprecated, %s\n", key, message)
|
|
}
|
|
}
|
|
}
|