mirror of https://github.com/spf13/viper.git
refactor: move supported exts and remote providers to constants
This commit is contained in:
parent
0e82215118
commit
cd4fc7cd36
82
viper.go
82
viper.go
|
@ -297,13 +297,35 @@ func NewWithOptions(opts ...Option) *Viper {
|
||||||
return v
|
return v
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Supported Exts and Supported Remote Providers
|
||||||
|
const (
|
||||||
|
JSON = "json"
|
||||||
|
TOML = "toml"
|
||||||
|
YAML = "yaml"
|
||||||
|
YML = "yml"
|
||||||
|
PROPERTIES = "properties"
|
||||||
|
PROPS = "props"
|
||||||
|
PROP = "prop"
|
||||||
|
HCL = "hcl"
|
||||||
|
TFVARS = "tfvars"
|
||||||
|
DOTENV = "dotenv"
|
||||||
|
ENV = "env"
|
||||||
|
INI = "ini"
|
||||||
|
|
||||||
|
ETCD = "etcd"
|
||||||
|
ETCD3 = "etcd3"
|
||||||
|
CONSUL = "consul"
|
||||||
|
FIRESTORE = "firestore"
|
||||||
|
NATS = "nats"
|
||||||
|
)
|
||||||
|
|
||||||
// Reset is intended for testing, will reset all to default settings.
|
// Reset is intended for testing, will reset all to default settings.
|
||||||
// In the public interface for the viper package so applications
|
// In the public interface for the viper package so applications
|
||||||
// can use it in their testing as well.
|
// can use it in their testing as well.
|
||||||
func Reset() {
|
func Reset() {
|
||||||
v = New()
|
v = New()
|
||||||
SupportedExts = []string{"json", "toml", "yaml", "yml", "properties", "props", "prop", "hcl", "tfvars", "dotenv", "env", "ini"}
|
SupportedExts = []string{JSON, TOML, YAML, YML, PROPERTIES, PROPS, PROP, HCL, TFVARS, DOTENV, ENV, INI}
|
||||||
SupportedRemoteProviders = []string{"etcd", "etcd3", "consul", "firestore", "nats"}
|
SupportedRemoteProviders = []string{ETCD, ETCD3, CONSUL, FIRESTORE, NATS}
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: make this lazy initialization instead.
|
// TODO: make this lazy initialization instead.
|
||||||
|
@ -314,35 +336,35 @@ func (v *Viper) resetEncoding() {
|
||||||
{
|
{
|
||||||
codec := yaml.Codec{}
|
codec := yaml.Codec{}
|
||||||
|
|
||||||
encoderRegistry.RegisterEncoder("yaml", codec)
|
encoderRegistry.RegisterEncoder(YAML, codec)
|
||||||
decoderRegistry.RegisterDecoder("yaml", codec)
|
decoderRegistry.RegisterDecoder(YAML, codec)
|
||||||
|
|
||||||
encoderRegistry.RegisterEncoder("yml", codec)
|
encoderRegistry.RegisterEncoder(YML, codec)
|
||||||
decoderRegistry.RegisterDecoder("yml", codec)
|
decoderRegistry.RegisterDecoder(YML, codec)
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
codec := json.Codec{}
|
codec := json.Codec{}
|
||||||
|
|
||||||
encoderRegistry.RegisterEncoder("json", codec)
|
encoderRegistry.RegisterEncoder(JSON, codec)
|
||||||
decoderRegistry.RegisterDecoder("json", codec)
|
decoderRegistry.RegisterDecoder(JSON, codec)
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
codec := toml.Codec{}
|
codec := toml.Codec{}
|
||||||
|
|
||||||
encoderRegistry.RegisterEncoder("toml", codec)
|
encoderRegistry.RegisterEncoder(TOML, codec)
|
||||||
decoderRegistry.RegisterDecoder("toml", codec)
|
decoderRegistry.RegisterDecoder(TOML, codec)
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
codec := hcl.Codec{}
|
codec := hcl.Codec{}
|
||||||
|
|
||||||
encoderRegistry.RegisterEncoder("hcl", codec)
|
encoderRegistry.RegisterEncoder(HCL, codec)
|
||||||
decoderRegistry.RegisterDecoder("hcl", codec)
|
decoderRegistry.RegisterDecoder(HCL, codec)
|
||||||
|
|
||||||
encoderRegistry.RegisterEncoder("tfvars", codec)
|
encoderRegistry.RegisterEncoder(TFVARS, codec)
|
||||||
decoderRegistry.RegisterDecoder("tfvars", codec)
|
decoderRegistry.RegisterDecoder(TFVARS, codec)
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
|
@ -351,8 +373,8 @@ func (v *Viper) resetEncoding() {
|
||||||
LoadOptions: v.iniLoadOptions,
|
LoadOptions: v.iniLoadOptions,
|
||||||
}
|
}
|
||||||
|
|
||||||
encoderRegistry.RegisterEncoder("ini", codec)
|
encoderRegistry.RegisterEncoder(INI, codec)
|
||||||
decoderRegistry.RegisterDecoder("ini", codec)
|
decoderRegistry.RegisterDecoder(INI, codec)
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
|
@ -360,24 +382,24 @@ func (v *Viper) resetEncoding() {
|
||||||
KeyDelimiter: v.keyDelim,
|
KeyDelimiter: v.keyDelim,
|
||||||
}
|
}
|
||||||
|
|
||||||
encoderRegistry.RegisterEncoder("properties", codec)
|
encoderRegistry.RegisterEncoder(PROPERTIES, codec)
|
||||||
decoderRegistry.RegisterDecoder("properties", codec)
|
decoderRegistry.RegisterDecoder(PROPERTIES, codec)
|
||||||
|
|
||||||
encoderRegistry.RegisterEncoder("props", codec)
|
encoderRegistry.RegisterEncoder(PROPS, codec)
|
||||||
decoderRegistry.RegisterDecoder("props", codec)
|
decoderRegistry.RegisterDecoder(PROPS, codec)
|
||||||
|
|
||||||
encoderRegistry.RegisterEncoder("prop", codec)
|
encoderRegistry.RegisterEncoder(PROP, codec)
|
||||||
decoderRegistry.RegisterDecoder("prop", codec)
|
decoderRegistry.RegisterDecoder(PROP, codec)
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
codec := &dotenv.Codec{}
|
codec := &dotenv.Codec{}
|
||||||
|
|
||||||
encoderRegistry.RegisterEncoder("dotenv", codec)
|
encoderRegistry.RegisterEncoder(DOTENV, codec)
|
||||||
decoderRegistry.RegisterDecoder("dotenv", codec)
|
decoderRegistry.RegisterDecoder(DOTENV, codec)
|
||||||
|
|
||||||
encoderRegistry.RegisterEncoder("env", codec)
|
encoderRegistry.RegisterEncoder(ENV, codec)
|
||||||
decoderRegistry.RegisterDecoder("env", codec)
|
decoderRegistry.RegisterDecoder(ENV, codec)
|
||||||
}
|
}
|
||||||
|
|
||||||
v.encoderRegistry = encoderRegistry
|
v.encoderRegistry = encoderRegistry
|
||||||
|
@ -419,10 +441,10 @@ type RemoteProvider interface {
|
||||||
}
|
}
|
||||||
|
|
||||||
// SupportedExts are universally supported extensions.
|
// SupportedExts are universally supported extensions.
|
||||||
var SupportedExts = []string{"json", "toml", "yaml", "yml", "properties", "props", "prop", "hcl", "tfvars", "dotenv", "env", "ini"}
|
var SupportedExts = []string{JSON, TOML, YAML, YML, PROPERTIES, PROPS, PROP, HCL, TFVARS, DOTENV, ENV, INI}
|
||||||
|
|
||||||
// SupportedRemoteProviders are universally supported remote providers.
|
// SupportedRemoteProviders are universally supported remote providers.
|
||||||
var SupportedRemoteProviders = []string{"etcd", "etcd3", "consul", "firestore", "nats"}
|
var SupportedRemoteProviders = []string{ETCD, ETCD3, CONSUL, FIRESTORE, NATS}
|
||||||
|
|
||||||
// OnConfigChange sets the event handler that is called when a config file changes.
|
// OnConfigChange sets the event handler that is called when a config file changes.
|
||||||
func OnConfigChange(run func(in fsnotify.Event)) { v.OnConfigChange(run) }
|
func OnConfigChange(run func(in fsnotify.Event)) { v.OnConfigChange(run) }
|
||||||
|
@ -1802,7 +1824,7 @@ func (v *Viper) unmarshalReader(in io.Reader, c map[string]any) error {
|
||||||
buf.ReadFrom(in)
|
buf.ReadFrom(in)
|
||||||
|
|
||||||
switch format := strings.ToLower(v.getConfigType()); format {
|
switch format := strings.ToLower(v.getConfigType()); format {
|
||||||
case "yaml", "yml", "json", "toml", "hcl", "tfvars", "ini", "properties", "props", "prop", "dotenv", "env":
|
case YAML, YML, JSON, TOML, HCL, TFVARS, INI, PROPERTIES, PROPS, PROP, DOTENV, ENV:
|
||||||
err := v.decoderRegistry.Decode(format, buf.Bytes(), c)
|
err := v.decoderRegistry.Decode(format, buf.Bytes(), c)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return ConfigParseError{err}
|
return ConfigParseError{err}
|
||||||
|
@ -1817,7 +1839,7 @@ func (v *Viper) unmarshalReader(in io.Reader, c map[string]any) error {
|
||||||
func (v *Viper) marshalWriter(f afero.File, configType string) error {
|
func (v *Viper) marshalWriter(f afero.File, configType string) error {
|
||||||
c := v.AllSettings()
|
c := v.AllSettings()
|
||||||
switch configType {
|
switch configType {
|
||||||
case "yaml", "yml", "json", "toml", "hcl", "tfvars", "ini", "prop", "props", "properties", "dotenv", "env":
|
case YAML, YML, JSON, TOML, HCL, TFVARS, INI, PROPERTIES, PROPS, PROP, DOTENV, ENV:
|
||||||
b, err := v.encoderRegistry.Encode(configType, c)
|
b, err := v.encoderRegistry.Encode(configType, c)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return ConfigMarshalError{err}
|
return ConfigMarshalError{err}
|
||||||
|
|
Loading…
Reference in New Issue