2014-04-04 21:21:59 +00:00
|
|
|
// Copyright © 2014 Steve Francia <spf@spf13.com>.
|
|
|
|
//
|
|
|
|
// Use of this source code is governed by an MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2014-09-27 21:03:00 +00:00
|
|
|
// Viper is a application configuration system.
|
|
|
|
// It believes that applications can be configured a variety of ways
|
2014-10-24 19:38:01 +00:00
|
|
|
// via flags, ENVIRONMENT variables, configuration files retrieved
|
|
|
|
// from the file system, or a remote key/value store.
|
2014-09-27 21:03:00 +00:00
|
|
|
|
|
|
|
// Each item takes precedence over the item below it:
|
|
|
|
|
2015-04-01 21:08:42 +00:00
|
|
|
// overrides
|
2014-09-27 21:03:00 +00:00
|
|
|
// flag
|
|
|
|
// env
|
|
|
|
// config
|
2014-10-24 19:38:01 +00:00
|
|
|
// key/value store
|
2014-09-27 21:03:00 +00:00
|
|
|
// default
|
|
|
|
|
2014-04-04 21:21:59 +00:00
|
|
|
package viper
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
2015-11-10 04:22:04 +00:00
|
|
|
"log"
|
2014-04-04 21:21:59 +00:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2014-10-24 19:38:01 +00:00
|
|
|
"reflect"
|
2014-04-05 05:19:39 +00:00
|
|
|
"strings"
|
2014-04-04 21:21:59 +00:00
|
|
|
"time"
|
|
|
|
|
2016-04-20 13:51:22 +00:00
|
|
|
"github.com/fsnotify/fsnotify"
|
2014-06-26 21:58:55 +00:00
|
|
|
"github.com/mitchellh/mapstructure"
|
2016-08-05 07:24:49 +00:00
|
|
|
"github.com/spf13/afero"
|
2015-07-30 20:44:12 +00:00
|
|
|
"github.com/spf13/cast"
|
2014-04-04 21:21:59 +00:00
|
|
|
jww "github.com/spf13/jwalterweatherman"
|
2014-06-27 16:29:37 +00:00
|
|
|
"github.com/spf13/pflag"
|
2014-04-04 21:21:59 +00:00
|
|
|
)
|
|
|
|
|
2015-02-17 14:22:37 +00:00
|
|
|
var v *Viper
|
2014-12-05 02:55:51 +00:00
|
|
|
|
|
|
|
func init() {
|
|
|
|
v = New()
|
|
|
|
}
|
|
|
|
|
2015-05-30 19:28:33 +00:00
|
|
|
type remoteConfigFactory interface {
|
|
|
|
Get(rp RemoteProvider) (io.Reader, error)
|
|
|
|
Watch(rp RemoteProvider) (io.Reader, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemoteConfig is optional, see the remote package
|
|
|
|
var RemoteConfig remoteConfigFactory
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// UnsupportedConfigError denotes encountering an unsupported
|
2015-04-01 21:08:42 +00:00
|
|
|
// configuration filetype.
|
2014-12-05 02:55:51 +00:00
|
|
|
type UnsupportedConfigError string
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// Error returns the formatted configuration error.
|
2014-12-05 02:55:51 +00:00
|
|
|
func (str UnsupportedConfigError) Error() string {
|
|
|
|
return fmt.Sprintf("Unsupported Config Type %q", string(str))
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// UnsupportedRemoteProviderError denotes encountering an unsupported remote
|
2015-11-25 19:51:57 +00:00
|
|
|
// provider. Currently only etcd and Consul are
|
2015-04-01 21:08:42 +00:00
|
|
|
// supported.
|
2014-12-05 02:55:51 +00:00
|
|
|
type UnsupportedRemoteProviderError string
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// Error returns the formatted remote provider error.
|
2014-12-05 02:55:51 +00:00
|
|
|
func (str UnsupportedRemoteProviderError) Error() string {
|
|
|
|
return fmt.Sprintf("Unsupported Remote Provider Type %q", string(str))
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// RemoteConfigError denotes encountering an error while trying to
|
2015-04-01 21:08:42 +00:00
|
|
|
// pull the configuration from the remote provider.
|
2014-12-05 02:55:51 +00:00
|
|
|
type RemoteConfigError string
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// Error returns the formatted remote provider error
|
2014-12-05 02:55:51 +00:00
|
|
|
func (rce RemoteConfigError) Error() string {
|
|
|
|
return fmt.Sprintf("Remote Configurations Error: %s", string(rce))
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// ConfigFileNotFoundError denotes failing to find configuration file.
|
2015-08-02 00:37:27 +00:00
|
|
|
type ConfigFileNotFoundError struct {
|
|
|
|
name, locations string
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// Error returns the formatted configuration error.
|
2015-08-02 00:37:27 +00:00
|
|
|
func (fnfe ConfigFileNotFoundError) Error() string {
|
|
|
|
return fmt.Sprintf("Config File %q Not Found in %q", fnfe.name, fnfe.locations)
|
|
|
|
}
|
|
|
|
|
2015-04-01 21:08:42 +00:00
|
|
|
// Viper is a prioritized configuration registry. It
|
|
|
|
// maintains a set of configuration sources, fetches
|
|
|
|
// values to populate those, and provides them according
|
|
|
|
// to the source's priority.
|
|
|
|
// The priority of the sources is the following:
|
|
|
|
// 1. overrides
|
|
|
|
// 2. flags
|
|
|
|
// 3. env. variables
|
|
|
|
// 4. config file
|
|
|
|
// 5. key/value store
|
|
|
|
// 6. defaults
|
|
|
|
//
|
|
|
|
// For example, if values from the following sources were loaded:
|
|
|
|
//
|
|
|
|
// Defaults : {
|
|
|
|
// "secret": "",
|
|
|
|
// "user": "default",
|
2015-12-02 10:15:48 +00:00
|
|
|
// "endpoint": "https://localhost"
|
2015-04-01 21:08:42 +00:00
|
|
|
// }
|
|
|
|
// Config : {
|
|
|
|
// "user": "root"
|
2015-12-02 10:15:48 +00:00
|
|
|
// "secret": "defaultsecret"
|
2015-04-01 21:08:42 +00:00
|
|
|
// }
|
|
|
|
// Env : {
|
|
|
|
// "secret": "somesecretkey"
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// The resulting config will have the following values:
|
|
|
|
//
|
|
|
|
// {
|
|
|
|
// "secret": "somesecretkey",
|
|
|
|
// "user": "root",
|
|
|
|
// "endpoint": "https://localhost"
|
|
|
|
// }
|
2015-02-17 14:22:37 +00:00
|
|
|
type Viper struct {
|
2015-04-26 19:02:19 +00:00
|
|
|
// Delimiter that separates a list of keys
|
|
|
|
// used to access a nested value in one go
|
|
|
|
keyDelim string
|
|
|
|
|
2014-12-05 02:55:51 +00:00
|
|
|
// A set of paths to look for the config file in
|
|
|
|
configPaths []string
|
|
|
|
|
2016-08-05 07:45:58 +00:00
|
|
|
// The filesystem to read config from.
|
|
|
|
fs afero.Fs
|
|
|
|
|
2014-12-05 02:55:51 +00:00
|
|
|
// A set of remote providers to search for the configuration
|
2015-05-30 19:28:33 +00:00
|
|
|
remoteProviders []*defaultRemoteProvider
|
2014-12-05 02:55:51 +00:00
|
|
|
|
|
|
|
// Name of file to look for inside the path
|
|
|
|
configName string
|
|
|
|
configFile string
|
|
|
|
configType string
|
2014-12-22 23:31:11 +00:00
|
|
|
envPrefix string
|
2014-12-05 02:55:51 +00:00
|
|
|
|
2014-12-23 03:47:25 +00:00
|
|
|
automaticEnvApplied bool
|
2015-03-06 19:21:17 +00:00
|
|
|
envKeyReplacer *strings.Replacer
|
2014-12-23 03:47:25 +00:00
|
|
|
|
[110] Default Values Specify Type
This patch adds a feature, if enabled, will infer a value's type from
its default value no matter from where else the value is set. This is
particularly important when working with environment variables. For
example:
package main
import (
"fmt"
"os"
"github.com/spf13/viper"
)
func print(name string, val interface{}) {
fmt.Printf("%-15[1]s%-15[2]T%[2]v\n", name, val)
}
func main() {
viper.BindEnv("mykey", "MYPREFIX_MYKEY")
viper.SetDefault("mykey", []string{})
os.Setenv("MYPREFIX_MYKEY", "a b c")
v1 := viper.GetStringSlice("mykey")
v2 := viper.Get("mykey")
print("v1", v1)
print("v2", v2)
}
When this program is executed the following is emitted:
[0]akutz@pax:ex$ ./ex1
v1 []string [a b c]
v2 string a b c
[0]akutz@pax:ex$
You may wonder, why is this important? Just use the GetStringSlice
function. Well, it *becomes* important when dealing with marshaling.
If we update the above program to this:
package main
import (
"fmt"
"os"
"github.com/spf13/viper"
)
type Data struct {
MyKey []string
}
func print(name string, val interface{}) {
fmt.Printf("%-15[1]s%-15[2]T%[2]v\n", name, val)
}
func main() {
viper.BindEnv("mykey", "MYPREFIX_MYKEY")
viper.SetDefault("mykey", []string{})
os.Setenv("MYPREFIX_MYKEY", "a b c")
v1 := viper.GetStringSlice("mykey")
v2 := viper.Get("mykey")
print("v1", v1)
print("v2", v2)
d := &Data{}
viper.Marshal(d)
print("d.MyKey", d.MyKey)
}
Now we can see the issue when we execute the updated program:
[0]akutz@pax:ex$ ./ex2
v1 []string [a b c]
v2 string a b c
d.MyKey []string []
[0]akutz@pax:ex$
The marshalled data structure's field MyKey is empty when in fact it
should have a string slice equal to, in value, []string {"a", "b",
"c"}.
The problem is that viper's Marshal function calls AllSettings which
ultimately uses the Get function. The Get function does try to infer
the value's type, but it does so using the type of the value retrieved
using this logic:
Get has the behavior of returning the value associated with the
first place from where it is set. Viper will check in the
following order:
* override
* flag
* env
* config file
* key/value store
* default
While the above order is the one we want when retrieving the values,
this patch enables users to decide if it's the order they want to be
used when inferring a value's type. To that end the function
SetTypeByDefaultValue is introduced. When SetTypeByDefaultValue(true)
is called, a call to the Get function will now first check a key's
default value, if set, when inferring a value's type. This is
demonstrated using a modified version of the same program above:
package main
import (
"fmt"
"os"
"github.com/spf13/viper"
)
type Data struct {
MyKey []string
}
func print(name string, val interface{}) {
fmt.Printf("%-15[1]s%-15[2]T%[2]v\n", name, val)
}
func main() {
viper.BindEnv("mykey", "MYPREFIX_MYKEY")
viper.SetDefault("mykey", []string{})
os.Setenv("MYPREFIX_MYKEY", "a b c")
v1 := viper.GetStringSlice("mykey")
v2 := viper.Get("mykey")
print("v1", v1)
print("v2", v2)
d1 := &Data{}
viper.Marshal(d1)
print("d1.MyKey", d1.MyKey)
viper.SetTypeByDefaultValue(true)
d2 := &Data{}
viper.Marshal(d2)
print("d2.MyKey", d2.MyKey)
}
Now the following is emitted:
[0]akutz@pax:ex$ ./ex3
v1 []string [a b c]
v2 string a b c
d1.MyKey []string []
d2.MyKey []string [a b c]
[0]akutz@pax:ex$
2015-08-29 15:54:20 +00:00
|
|
|
config map[string]interface{}
|
|
|
|
override map[string]interface{}
|
|
|
|
defaults map[string]interface{}
|
|
|
|
kvstore map[string]interface{}
|
2015-12-10 18:14:17 +00:00
|
|
|
pflags map[string]FlagValue
|
[110] Default Values Specify Type
This patch adds a feature, if enabled, will infer a value's type from
its default value no matter from where else the value is set. This is
particularly important when working with environment variables. For
example:
package main
import (
"fmt"
"os"
"github.com/spf13/viper"
)
func print(name string, val interface{}) {
fmt.Printf("%-15[1]s%-15[2]T%[2]v\n", name, val)
}
func main() {
viper.BindEnv("mykey", "MYPREFIX_MYKEY")
viper.SetDefault("mykey", []string{})
os.Setenv("MYPREFIX_MYKEY", "a b c")
v1 := viper.GetStringSlice("mykey")
v2 := viper.Get("mykey")
print("v1", v1)
print("v2", v2)
}
When this program is executed the following is emitted:
[0]akutz@pax:ex$ ./ex1
v1 []string [a b c]
v2 string a b c
[0]akutz@pax:ex$
You may wonder, why is this important? Just use the GetStringSlice
function. Well, it *becomes* important when dealing with marshaling.
If we update the above program to this:
package main
import (
"fmt"
"os"
"github.com/spf13/viper"
)
type Data struct {
MyKey []string
}
func print(name string, val interface{}) {
fmt.Printf("%-15[1]s%-15[2]T%[2]v\n", name, val)
}
func main() {
viper.BindEnv("mykey", "MYPREFIX_MYKEY")
viper.SetDefault("mykey", []string{})
os.Setenv("MYPREFIX_MYKEY", "a b c")
v1 := viper.GetStringSlice("mykey")
v2 := viper.Get("mykey")
print("v1", v1)
print("v2", v2)
d := &Data{}
viper.Marshal(d)
print("d.MyKey", d.MyKey)
}
Now we can see the issue when we execute the updated program:
[0]akutz@pax:ex$ ./ex2
v1 []string [a b c]
v2 string a b c
d.MyKey []string []
[0]akutz@pax:ex$
The marshalled data structure's field MyKey is empty when in fact it
should have a string slice equal to, in value, []string {"a", "b",
"c"}.
The problem is that viper's Marshal function calls AllSettings which
ultimately uses the Get function. The Get function does try to infer
the value's type, but it does so using the type of the value retrieved
using this logic:
Get has the behavior of returning the value associated with the
first place from where it is set. Viper will check in the
following order:
* override
* flag
* env
* config file
* key/value store
* default
While the above order is the one we want when retrieving the values,
this patch enables users to decide if it's the order they want to be
used when inferring a value's type. To that end the function
SetTypeByDefaultValue is introduced. When SetTypeByDefaultValue(true)
is called, a call to the Get function will now first check a key's
default value, if set, when inferring a value's type. This is
demonstrated using a modified version of the same program above:
package main
import (
"fmt"
"os"
"github.com/spf13/viper"
)
type Data struct {
MyKey []string
}
func print(name string, val interface{}) {
fmt.Printf("%-15[1]s%-15[2]T%[2]v\n", name, val)
}
func main() {
viper.BindEnv("mykey", "MYPREFIX_MYKEY")
viper.SetDefault("mykey", []string{})
os.Setenv("MYPREFIX_MYKEY", "a b c")
v1 := viper.GetStringSlice("mykey")
v2 := viper.Get("mykey")
print("v1", v1)
print("v2", v2)
d1 := &Data{}
viper.Marshal(d1)
print("d1.MyKey", d1.MyKey)
viper.SetTypeByDefaultValue(true)
d2 := &Data{}
viper.Marshal(d2)
print("d2.MyKey", d2.MyKey)
}
Now the following is emitted:
[0]akutz@pax:ex$ ./ex3
v1 []string [a b c]
v2 string a b c
d1.MyKey []string []
d2.MyKey []string [a b c]
[0]akutz@pax:ex$
2015-08-29 15:54:20 +00:00
|
|
|
env map[string]string
|
|
|
|
aliases map[string]string
|
|
|
|
typeByDefValue bool
|
2015-11-10 04:22:04 +00:00
|
|
|
|
|
|
|
onConfigChange func(fsnotify.Event)
|
2014-12-05 02:55:51 +00:00
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// New returns an initialized Viper instance.
|
2015-02-17 14:22:37 +00:00
|
|
|
func New() *Viper {
|
|
|
|
v := new(Viper)
|
2015-04-26 19:02:19 +00:00
|
|
|
v.keyDelim = "."
|
2014-12-05 02:55:51 +00:00
|
|
|
v.configName = "config"
|
2016-08-05 07:45:58 +00:00
|
|
|
v.fs = afero.NewOsFs()
|
2014-12-05 02:55:51 +00:00
|
|
|
v.config = make(map[string]interface{})
|
|
|
|
v.override = make(map[string]interface{})
|
|
|
|
v.defaults = make(map[string]interface{})
|
|
|
|
v.kvstore = make(map[string]interface{})
|
2015-12-10 18:14:17 +00:00
|
|
|
v.pflags = make(map[string]FlagValue)
|
2014-12-05 02:55:51 +00:00
|
|
|
v.env = make(map[string]string)
|
|
|
|
v.aliases = make(map[string]string)
|
[110] Default Values Specify Type
This patch adds a feature, if enabled, will infer a value's type from
its default value no matter from where else the value is set. This is
particularly important when working with environment variables. For
example:
package main
import (
"fmt"
"os"
"github.com/spf13/viper"
)
func print(name string, val interface{}) {
fmt.Printf("%-15[1]s%-15[2]T%[2]v\n", name, val)
}
func main() {
viper.BindEnv("mykey", "MYPREFIX_MYKEY")
viper.SetDefault("mykey", []string{})
os.Setenv("MYPREFIX_MYKEY", "a b c")
v1 := viper.GetStringSlice("mykey")
v2 := viper.Get("mykey")
print("v1", v1)
print("v2", v2)
}
When this program is executed the following is emitted:
[0]akutz@pax:ex$ ./ex1
v1 []string [a b c]
v2 string a b c
[0]akutz@pax:ex$
You may wonder, why is this important? Just use the GetStringSlice
function. Well, it *becomes* important when dealing with marshaling.
If we update the above program to this:
package main
import (
"fmt"
"os"
"github.com/spf13/viper"
)
type Data struct {
MyKey []string
}
func print(name string, val interface{}) {
fmt.Printf("%-15[1]s%-15[2]T%[2]v\n", name, val)
}
func main() {
viper.BindEnv("mykey", "MYPREFIX_MYKEY")
viper.SetDefault("mykey", []string{})
os.Setenv("MYPREFIX_MYKEY", "a b c")
v1 := viper.GetStringSlice("mykey")
v2 := viper.Get("mykey")
print("v1", v1)
print("v2", v2)
d := &Data{}
viper.Marshal(d)
print("d.MyKey", d.MyKey)
}
Now we can see the issue when we execute the updated program:
[0]akutz@pax:ex$ ./ex2
v1 []string [a b c]
v2 string a b c
d.MyKey []string []
[0]akutz@pax:ex$
The marshalled data structure's field MyKey is empty when in fact it
should have a string slice equal to, in value, []string {"a", "b",
"c"}.
The problem is that viper's Marshal function calls AllSettings which
ultimately uses the Get function. The Get function does try to infer
the value's type, but it does so using the type of the value retrieved
using this logic:
Get has the behavior of returning the value associated with the
first place from where it is set. Viper will check in the
following order:
* override
* flag
* env
* config file
* key/value store
* default
While the above order is the one we want when retrieving the values,
this patch enables users to decide if it's the order they want to be
used when inferring a value's type. To that end the function
SetTypeByDefaultValue is introduced. When SetTypeByDefaultValue(true)
is called, a call to the Get function will now first check a key's
default value, if set, when inferring a value's type. This is
demonstrated using a modified version of the same program above:
package main
import (
"fmt"
"os"
"github.com/spf13/viper"
)
type Data struct {
MyKey []string
}
func print(name string, val interface{}) {
fmt.Printf("%-15[1]s%-15[2]T%[2]v\n", name, val)
}
func main() {
viper.BindEnv("mykey", "MYPREFIX_MYKEY")
viper.SetDefault("mykey", []string{})
os.Setenv("MYPREFIX_MYKEY", "a b c")
v1 := viper.GetStringSlice("mykey")
v2 := viper.Get("mykey")
print("v1", v1)
print("v2", v2)
d1 := &Data{}
viper.Marshal(d1)
print("d1.MyKey", d1.MyKey)
viper.SetTypeByDefaultValue(true)
d2 := &Data{}
viper.Marshal(d2)
print("d2.MyKey", d2.MyKey)
}
Now the following is emitted:
[0]akutz@pax:ex$ ./ex3
v1 []string [a b c]
v2 string a b c
d1.MyKey []string []
d2.MyKey []string [a b c]
[0]akutz@pax:ex$
2015-08-29 15:54:20 +00:00
|
|
|
v.typeByDefValue = false
|
2014-12-05 02:55:51 +00:00
|
|
|
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
|
2015-02-19 15:39:44 +00:00
|
|
|
// Intended for testing, will reset all to default settings.
|
|
|
|
// In the public interface for the viper package so applications
|
|
|
|
// can use it in their testing as well.
|
|
|
|
func Reset() {
|
|
|
|
v = New()
|
2015-12-11 22:51:11 +00:00
|
|
|
SupportedExts = []string{"json", "toml", "yaml", "yml", "hcl"}
|
2015-02-19 15:39:44 +00:00
|
|
|
SupportedRemoteProviders = []string{"etcd", "consul"}
|
|
|
|
}
|
|
|
|
|
2015-05-30 19:28:33 +00:00
|
|
|
type defaultRemoteProvider struct {
|
2014-10-24 19:38:01 +00:00
|
|
|
provider string
|
|
|
|
endpoint string
|
|
|
|
path string
|
|
|
|
secretKeyring string
|
|
|
|
}
|
|
|
|
|
2015-05-30 19:28:33 +00:00
|
|
|
func (rp defaultRemoteProvider) Provider() string {
|
|
|
|
return rp.provider
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rp defaultRemoteProvider) Endpoint() string {
|
|
|
|
return rp.endpoint
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rp defaultRemoteProvider) Path() string {
|
|
|
|
return rp.path
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rp defaultRemoteProvider) SecretKeyring() string {
|
|
|
|
return rp.secretKeyring
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemoteProvider stores the configuration necessary
|
|
|
|
// to connect to a remote key/value store.
|
|
|
|
// Optional secretKeyring to unencrypt encrypted values
|
|
|
|
// can be provided.
|
|
|
|
type RemoteProvider interface {
|
|
|
|
Provider() string
|
|
|
|
Endpoint() string
|
|
|
|
Path() string
|
|
|
|
SecretKeyring() string
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// SupportedExts are universally supported extensions.
|
|
|
|
var SupportedExts = []string{"json", "toml", "yaml", "yml", "properties", "props", "prop", "hcl"}
|
2014-04-04 21:21:59 +00:00
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// SupportedRemoteProviders are universally supported remote providers.
|
|
|
|
var SupportedRemoteProviders = []string{"etcd", "consul"}
|
2014-04-04 21:21:59 +00:00
|
|
|
|
2015-11-10 04:22:04 +00:00
|
|
|
func OnConfigChange(run func(in fsnotify.Event)) { v.OnConfigChange(run) }
|
|
|
|
func (v *Viper) OnConfigChange(run func(in fsnotify.Event)) {
|
|
|
|
v.onConfigChange = run
|
|
|
|
}
|
|
|
|
|
|
|
|
func WatchConfig() { v.WatchConfig() }
|
|
|
|
func (v *Viper) WatchConfig() {
|
|
|
|
go func() {
|
|
|
|
watcher, err := fsnotify.NewWatcher()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
defer watcher.Close()
|
|
|
|
|
2016-01-11 15:07:23 +00:00
|
|
|
// we have to watch the entire directory to pick up renames/atomic saves in a cross-platform way
|
|
|
|
configFile := filepath.Clean(v.getConfigFile())
|
|
|
|
configDir, _ := filepath.Split(configFile)
|
|
|
|
|
2015-11-10 04:22:04 +00:00
|
|
|
done := make(chan bool)
|
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case event := <-watcher.Events:
|
2016-01-11 15:07:23 +00:00
|
|
|
// we only care about the config file
|
|
|
|
if filepath.Clean(event.Name) == configFile {
|
|
|
|
if event.Op&fsnotify.Write == fsnotify.Write || event.Op&fsnotify.Create == fsnotify.Create {
|
|
|
|
err := v.ReadInConfig()
|
|
|
|
if err != nil {
|
|
|
|
log.Println("error:", err)
|
|
|
|
}
|
|
|
|
v.onConfigChange(event)
|
2015-11-10 04:22:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
case err := <-watcher.Errors:
|
|
|
|
log.Println("error:", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2016-01-11 15:07:23 +00:00
|
|
|
watcher.Add(configDir)
|
2015-11-10 04:22:04 +00:00
|
|
|
<-done
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// SetConfigFile explicitly defines the path, name and extension of the config file
|
2014-07-11 14:42:07 +00:00
|
|
|
// Viper will use this and not check any of the config paths
|
2014-12-05 02:55:51 +00:00
|
|
|
func SetConfigFile(in string) { v.SetConfigFile(in) }
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) SetConfigFile(in string) {
|
2014-04-04 21:21:59 +00:00
|
|
|
if in != "" {
|
2014-12-05 02:55:51 +00:00
|
|
|
v.configFile = in
|
2014-04-04 21:21:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// SetEnvPrefix defines a prefix that ENVIRONMENT variables will use.
|
2015-04-01 21:08:42 +00:00
|
|
|
// E.g. if your prefix is "spf", the env registry
|
|
|
|
// will look for env. variables that start with "SPF_"
|
2014-12-22 23:31:11 +00:00
|
|
|
func SetEnvPrefix(in string) { v.SetEnvPrefix(in) }
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) SetEnvPrefix(in string) {
|
2014-12-22 23:31:11 +00:00
|
|
|
if in != "" {
|
|
|
|
v.envPrefix = in
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) mergeWithEnvPrefix(in string) string {
|
2014-12-22 23:31:11 +00:00
|
|
|
if v.envPrefix != "" {
|
2014-12-23 03:47:25 +00:00
|
|
|
return strings.ToUpper(v.envPrefix + "_" + in)
|
2014-12-22 23:31:11 +00:00
|
|
|
}
|
|
|
|
|
2014-12-23 03:47:25 +00:00
|
|
|
return strings.ToUpper(in)
|
2014-12-22 23:31:11 +00:00
|
|
|
}
|
|
|
|
|
2015-03-06 19:21:17 +00:00
|
|
|
// TODO: should getEnv logic be moved into find(). Can generalize the use of
|
|
|
|
// rewriting keys many things, Ex: Get('someKey') -> some_key
|
|
|
|
// (cammel case to snake case for JSON keys perhaps)
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// getEnv is a wrapper around os.Getenv which replaces characters in the original
|
2015-03-06 19:21:17 +00:00
|
|
|
// key. This allows env vars which have different keys then the config object
|
|
|
|
// keys
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) getEnv(key string) string {
|
2015-03-06 19:21:17 +00:00
|
|
|
if v.envKeyReplacer != nil {
|
|
|
|
key = v.envKeyReplacer.Replace(key)
|
|
|
|
}
|
|
|
|
return os.Getenv(key)
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// ConfigFileUsed returns the file used to populate the config registry
|
2014-12-05 02:55:51 +00:00
|
|
|
func ConfigFileUsed() string { return v.ConfigFileUsed() }
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) ConfigFileUsed() string { return v.configFile }
|
2014-04-08 03:35:40 +00:00
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// AddConfigPath adds a path for Viper to search for the config file in.
|
2014-07-11 14:42:07 +00:00
|
|
|
// Can be called multiple times to define multiple search paths.
|
2014-12-05 02:55:51 +00:00
|
|
|
func AddConfigPath(in string) { v.AddConfigPath(in) }
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) AddConfigPath(in string) {
|
2014-04-04 21:21:59 +00:00
|
|
|
if in != "" {
|
|
|
|
absin := absPathify(in)
|
|
|
|
jww.INFO.Println("adding", absin, "to paths to search")
|
2014-12-05 02:55:51 +00:00
|
|
|
if !stringInSlice(absin, v.configPaths) {
|
|
|
|
v.configPaths = append(v.configPaths, absin)
|
2014-04-04 21:21:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-24 19:38:01 +00:00
|
|
|
// AddRemoteProvider adds a remote configuration source.
|
|
|
|
// Remote Providers are searched in the order they are added.
|
|
|
|
// provider is a string value, "etcd" or "consul" are currently supported.
|
|
|
|
// endpoint is the url. etcd requires http://ip:port consul requires ip:port
|
|
|
|
// path is the path in the k/v store to retrieve configuration
|
|
|
|
// To retrieve a config file called myapp.json from /configs/myapp.json
|
|
|
|
// you should set path to /configs and set config name (SetConfigName()) to
|
|
|
|
// "myapp"
|
|
|
|
func AddRemoteProvider(provider, endpoint, path string) error {
|
2014-12-05 02:55:51 +00:00
|
|
|
return v.AddRemoteProvider(provider, endpoint, path)
|
|
|
|
}
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) AddRemoteProvider(provider, endpoint, path string) error {
|
2014-10-24 19:38:01 +00:00
|
|
|
if !stringInSlice(provider, SupportedRemoteProviders) {
|
|
|
|
return UnsupportedRemoteProviderError(provider)
|
|
|
|
}
|
|
|
|
if provider != "" && endpoint != "" {
|
|
|
|
jww.INFO.Printf("adding %s:%s to remote provider list", provider, endpoint)
|
2015-05-30 19:28:33 +00:00
|
|
|
rp := &defaultRemoteProvider{
|
2014-10-24 19:38:01 +00:00
|
|
|
endpoint: endpoint,
|
|
|
|
provider: provider,
|
2014-10-27 16:21:03 +00:00
|
|
|
path: path,
|
2014-10-24 19:38:01 +00:00
|
|
|
}
|
2014-12-05 02:55:51 +00:00
|
|
|
if !v.providerPathExists(rp) {
|
|
|
|
v.remoteProviders = append(v.remoteProviders, rp)
|
2014-10-24 19:38:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddSecureRemoteProvider adds a remote configuration source.
|
|
|
|
// Secure Remote Providers are searched in the order they are added.
|
|
|
|
// provider is a string value, "etcd" or "consul" are currently supported.
|
|
|
|
// endpoint is the url. etcd requires http://ip:port consul requires ip:port
|
|
|
|
// secretkeyring is the filepath to your openpgp secret keyring. e.g. /etc/secrets/myring.gpg
|
|
|
|
// path is the path in the k/v store to retrieve configuration
|
|
|
|
// To retrieve a config file called myapp.json from /configs/myapp.json
|
|
|
|
// you should set path to /configs and set config name (SetConfigName()) to
|
|
|
|
// "myapp"
|
|
|
|
// Secure Remote Providers are implemented with github.com/xordataexchange/crypt
|
2014-10-27 16:21:03 +00:00
|
|
|
func AddSecureRemoteProvider(provider, endpoint, path, secretkeyring string) error {
|
2014-12-05 02:55:51 +00:00
|
|
|
return v.AddSecureRemoteProvider(provider, endpoint, path, secretkeyring)
|
|
|
|
}
|
|
|
|
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) AddSecureRemoteProvider(provider, endpoint, path, secretkeyring string) error {
|
2014-10-24 19:38:01 +00:00
|
|
|
if !stringInSlice(provider, SupportedRemoteProviders) {
|
|
|
|
return UnsupportedRemoteProviderError(provider)
|
|
|
|
}
|
|
|
|
if provider != "" && endpoint != "" {
|
|
|
|
jww.INFO.Printf("adding %s:%s to remote provider list", provider, endpoint)
|
2015-05-30 19:28:33 +00:00
|
|
|
rp := &defaultRemoteProvider{
|
2015-06-21 23:19:00 +00:00
|
|
|
endpoint: endpoint,
|
|
|
|
provider: provider,
|
|
|
|
path: path,
|
|
|
|
secretKeyring: secretkeyring,
|
2014-10-24 19:38:01 +00:00
|
|
|
}
|
2014-12-05 02:55:51 +00:00
|
|
|
if !v.providerPathExists(rp) {
|
|
|
|
v.remoteProviders = append(v.remoteProviders, rp)
|
2014-10-24 19:38:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-05-30 19:28:33 +00:00
|
|
|
func (v *Viper) providerPathExists(p *defaultRemoteProvider) bool {
|
2014-12-05 02:55:51 +00:00
|
|
|
for _, y := range v.remoteProviders {
|
2014-10-24 19:38:01 +00:00
|
|
|
if reflect.DeepEqual(y, p) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2015-04-26 19:02:19 +00:00
|
|
|
func (v *Viper) searchMap(source map[string]interface{}, path []string) interface{} {
|
|
|
|
|
|
|
|
if len(path) == 0 {
|
|
|
|
return source
|
|
|
|
}
|
|
|
|
|
2015-10-26 22:52:14 +00:00
|
|
|
var ok bool
|
|
|
|
var next interface{}
|
|
|
|
for k, v := range source {
|
|
|
|
if strings.ToLower(k) == strings.ToLower(path[0]) {
|
|
|
|
ok = true
|
|
|
|
next = v
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ok {
|
2015-04-26 19:02:19 +00:00
|
|
|
switch next.(type) {
|
2015-05-27 15:15:02 +00:00
|
|
|
case map[interface{}]interface{}:
|
|
|
|
return v.searchMap(cast.ToStringMap(next), path[1:])
|
2015-04-26 19:02:19 +00:00
|
|
|
case map[string]interface{}:
|
|
|
|
// Type assertion is safe here since it is only reached
|
|
|
|
// if the type of `next` is the same as the type being asserted
|
|
|
|
return v.searchMap(next.(map[string]interface{}), path[1:])
|
|
|
|
default:
|
|
|
|
return next
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
[110] Default Values Specify Type
This patch adds a feature, if enabled, will infer a value's type from
its default value no matter from where else the value is set. This is
particularly important when working with environment variables. For
example:
package main
import (
"fmt"
"os"
"github.com/spf13/viper"
)
func print(name string, val interface{}) {
fmt.Printf("%-15[1]s%-15[2]T%[2]v\n", name, val)
}
func main() {
viper.BindEnv("mykey", "MYPREFIX_MYKEY")
viper.SetDefault("mykey", []string{})
os.Setenv("MYPREFIX_MYKEY", "a b c")
v1 := viper.GetStringSlice("mykey")
v2 := viper.Get("mykey")
print("v1", v1)
print("v2", v2)
}
When this program is executed the following is emitted:
[0]akutz@pax:ex$ ./ex1
v1 []string [a b c]
v2 string a b c
[0]akutz@pax:ex$
You may wonder, why is this important? Just use the GetStringSlice
function. Well, it *becomes* important when dealing with marshaling.
If we update the above program to this:
package main
import (
"fmt"
"os"
"github.com/spf13/viper"
)
type Data struct {
MyKey []string
}
func print(name string, val interface{}) {
fmt.Printf("%-15[1]s%-15[2]T%[2]v\n", name, val)
}
func main() {
viper.BindEnv("mykey", "MYPREFIX_MYKEY")
viper.SetDefault("mykey", []string{})
os.Setenv("MYPREFIX_MYKEY", "a b c")
v1 := viper.GetStringSlice("mykey")
v2 := viper.Get("mykey")
print("v1", v1)
print("v2", v2)
d := &Data{}
viper.Marshal(d)
print("d.MyKey", d.MyKey)
}
Now we can see the issue when we execute the updated program:
[0]akutz@pax:ex$ ./ex2
v1 []string [a b c]
v2 string a b c
d.MyKey []string []
[0]akutz@pax:ex$
The marshalled data structure's field MyKey is empty when in fact it
should have a string slice equal to, in value, []string {"a", "b",
"c"}.
The problem is that viper's Marshal function calls AllSettings which
ultimately uses the Get function. The Get function does try to infer
the value's type, but it does so using the type of the value retrieved
using this logic:
Get has the behavior of returning the value associated with the
first place from where it is set. Viper will check in the
following order:
* override
* flag
* env
* config file
* key/value store
* default
While the above order is the one we want when retrieving the values,
this patch enables users to decide if it's the order they want to be
used when inferring a value's type. To that end the function
SetTypeByDefaultValue is introduced. When SetTypeByDefaultValue(true)
is called, a call to the Get function will now first check a key's
default value, if set, when inferring a value's type. This is
demonstrated using a modified version of the same program above:
package main
import (
"fmt"
"os"
"github.com/spf13/viper"
)
type Data struct {
MyKey []string
}
func print(name string, val interface{}) {
fmt.Printf("%-15[1]s%-15[2]T%[2]v\n", name, val)
}
func main() {
viper.BindEnv("mykey", "MYPREFIX_MYKEY")
viper.SetDefault("mykey", []string{})
os.Setenv("MYPREFIX_MYKEY", "a b c")
v1 := viper.GetStringSlice("mykey")
v2 := viper.Get("mykey")
print("v1", v1)
print("v2", v2)
d1 := &Data{}
viper.Marshal(d1)
print("d1.MyKey", d1.MyKey)
viper.SetTypeByDefaultValue(true)
d2 := &Data{}
viper.Marshal(d2)
print("d2.MyKey", d2.MyKey)
}
Now the following is emitted:
[0]akutz@pax:ex$ ./ex3
v1 []string [a b c]
v2 string a b c
d1.MyKey []string []
d2.MyKey []string [a b c]
[0]akutz@pax:ex$
2015-08-29 15:54:20 +00:00
|
|
|
// SetTypeByDefaultValue enables or disables the inference of a key value's
|
|
|
|
// type when the Get function is used based upon a key's default value as
|
|
|
|
// opposed to the value returned based on the normal fetch logic.
|
|
|
|
//
|
|
|
|
// For example, if a key has a default value of []string{} and the same key
|
|
|
|
// is set via an environment variable to "a b c", a call to the Get function
|
|
|
|
// would return a string slice for the key if the key's type is inferred by
|
|
|
|
// the default value and the Get function would return:
|
|
|
|
//
|
|
|
|
// []string {"a", "b", "c"}
|
|
|
|
//
|
|
|
|
// Otherwise the Get function would return:
|
|
|
|
//
|
|
|
|
// "a b c"
|
|
|
|
func SetTypeByDefaultValue(enable bool) { v.SetTypeByDefaultValue(enable) }
|
|
|
|
func (v *Viper) SetTypeByDefaultValue(enable bool) {
|
|
|
|
v.typeByDefValue = enable
|
|
|
|
}
|
|
|
|
|
2016-08-06 16:06:49 +00:00
|
|
|
// GetViper gets the global Viper instance.
|
|
|
|
func GetViper() *Viper {
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// Get can retrieve any value given the key to use.
|
2014-12-05 16:04:40 +00:00
|
|
|
// Get has the behavior of returning the value associated with the first
|
|
|
|
// place from where it is set. Viper will check in the following order:
|
2015-04-01 21:08:42 +00:00
|
|
|
// override, flag, env, config file, key/value store, default
|
2014-12-05 16:04:40 +00:00
|
|
|
//
|
|
|
|
// Get returns an interface. For a specific value use one of the Get____ methods.
|
|
|
|
func Get(key string) interface{} { return v.Get(key) }
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) Get(key string) interface{} {
|
2015-04-26 19:02:19 +00:00
|
|
|
path := strings.Split(key, v.keyDelim)
|
|
|
|
|
[110] Default Values Specify Type
This patch adds a feature, if enabled, will infer a value's type from
its default value no matter from where else the value is set. This is
particularly important when working with environment variables. For
example:
package main
import (
"fmt"
"os"
"github.com/spf13/viper"
)
func print(name string, val interface{}) {
fmt.Printf("%-15[1]s%-15[2]T%[2]v\n", name, val)
}
func main() {
viper.BindEnv("mykey", "MYPREFIX_MYKEY")
viper.SetDefault("mykey", []string{})
os.Setenv("MYPREFIX_MYKEY", "a b c")
v1 := viper.GetStringSlice("mykey")
v2 := viper.Get("mykey")
print("v1", v1)
print("v2", v2)
}
When this program is executed the following is emitted:
[0]akutz@pax:ex$ ./ex1
v1 []string [a b c]
v2 string a b c
[0]akutz@pax:ex$
You may wonder, why is this important? Just use the GetStringSlice
function. Well, it *becomes* important when dealing with marshaling.
If we update the above program to this:
package main
import (
"fmt"
"os"
"github.com/spf13/viper"
)
type Data struct {
MyKey []string
}
func print(name string, val interface{}) {
fmt.Printf("%-15[1]s%-15[2]T%[2]v\n", name, val)
}
func main() {
viper.BindEnv("mykey", "MYPREFIX_MYKEY")
viper.SetDefault("mykey", []string{})
os.Setenv("MYPREFIX_MYKEY", "a b c")
v1 := viper.GetStringSlice("mykey")
v2 := viper.Get("mykey")
print("v1", v1)
print("v2", v2)
d := &Data{}
viper.Marshal(d)
print("d.MyKey", d.MyKey)
}
Now we can see the issue when we execute the updated program:
[0]akutz@pax:ex$ ./ex2
v1 []string [a b c]
v2 string a b c
d.MyKey []string []
[0]akutz@pax:ex$
The marshalled data structure's field MyKey is empty when in fact it
should have a string slice equal to, in value, []string {"a", "b",
"c"}.
The problem is that viper's Marshal function calls AllSettings which
ultimately uses the Get function. The Get function does try to infer
the value's type, but it does so using the type of the value retrieved
using this logic:
Get has the behavior of returning the value associated with the
first place from where it is set. Viper will check in the
following order:
* override
* flag
* env
* config file
* key/value store
* default
While the above order is the one we want when retrieving the values,
this patch enables users to decide if it's the order they want to be
used when inferring a value's type. To that end the function
SetTypeByDefaultValue is introduced. When SetTypeByDefaultValue(true)
is called, a call to the Get function will now first check a key's
default value, if set, when inferring a value's type. This is
demonstrated using a modified version of the same program above:
package main
import (
"fmt"
"os"
"github.com/spf13/viper"
)
type Data struct {
MyKey []string
}
func print(name string, val interface{}) {
fmt.Printf("%-15[1]s%-15[2]T%[2]v\n", name, val)
}
func main() {
viper.BindEnv("mykey", "MYPREFIX_MYKEY")
viper.SetDefault("mykey", []string{})
os.Setenv("MYPREFIX_MYKEY", "a b c")
v1 := viper.GetStringSlice("mykey")
v2 := viper.Get("mykey")
print("v1", v1)
print("v2", v2)
d1 := &Data{}
viper.Marshal(d1)
print("d1.MyKey", d1.MyKey)
viper.SetTypeByDefaultValue(true)
d2 := &Data{}
viper.Marshal(d2)
print("d2.MyKey", d2.MyKey)
}
Now the following is emitted:
[0]akutz@pax:ex$ ./ex3
v1 []string [a b c]
v2 string a b c
d1.MyKey []string []
d2.MyKey []string [a b c]
[0]akutz@pax:ex$
2015-08-29 15:54:20 +00:00
|
|
|
lcaseKey := strings.ToLower(key)
|
|
|
|
val := v.find(lcaseKey)
|
2014-12-05 16:04:40 +00:00
|
|
|
|
|
|
|
if val == nil {
|
2015-10-26 22:52:14 +00:00
|
|
|
source := v.find(strings.ToLower(path[0]))
|
2015-11-09 22:58:46 +00:00
|
|
|
if source != nil {
|
|
|
|
if reflect.TypeOf(source).Kind() == reflect.Map {
|
|
|
|
val = v.searchMap(cast.ToStringMap(source), path[1:])
|
|
|
|
}
|
2015-04-26 19:02:19 +00:00
|
|
|
}
|
2015-11-09 22:58:46 +00:00
|
|
|
}
|
2015-04-26 19:02:19 +00:00
|
|
|
|
2015-11-09 22:58:46 +00:00
|
|
|
// if no other value is returned and a flag does exist for the value,
|
|
|
|
// get the flag's value even if the flag's value has not changed
|
|
|
|
if val == nil {
|
|
|
|
if flag, exists := v.pflags[lcaseKey]; exists {
|
|
|
|
jww.TRACE.Println(key, "get pflag default", val)
|
2015-12-10 18:14:17 +00:00
|
|
|
switch flag.ValueType() {
|
2015-11-09 22:58:46 +00:00
|
|
|
case "int", "int8", "int16", "int32", "int64":
|
2015-12-10 18:14:17 +00:00
|
|
|
val = cast.ToInt(flag.ValueString())
|
2015-11-09 22:58:46 +00:00
|
|
|
case "bool":
|
2015-12-10 18:14:17 +00:00
|
|
|
val = cast.ToBool(flag.ValueString())
|
2015-11-09 22:58:46 +00:00
|
|
|
default:
|
2015-12-10 18:14:17 +00:00
|
|
|
val = flag.ValueString()
|
2015-11-09 22:58:46 +00:00
|
|
|
}
|
2015-04-26 19:02:19 +00:00
|
|
|
}
|
2014-12-05 16:04:40 +00:00
|
|
|
}
|
|
|
|
|
2015-11-09 22:58:46 +00:00
|
|
|
if val == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
[110] Default Values Specify Type
This patch adds a feature, if enabled, will infer a value's type from
its default value no matter from where else the value is set. This is
particularly important when working with environment variables. For
example:
package main
import (
"fmt"
"os"
"github.com/spf13/viper"
)
func print(name string, val interface{}) {
fmt.Printf("%-15[1]s%-15[2]T%[2]v\n", name, val)
}
func main() {
viper.BindEnv("mykey", "MYPREFIX_MYKEY")
viper.SetDefault("mykey", []string{})
os.Setenv("MYPREFIX_MYKEY", "a b c")
v1 := viper.GetStringSlice("mykey")
v2 := viper.Get("mykey")
print("v1", v1)
print("v2", v2)
}
When this program is executed the following is emitted:
[0]akutz@pax:ex$ ./ex1
v1 []string [a b c]
v2 string a b c
[0]akutz@pax:ex$
You may wonder, why is this important? Just use the GetStringSlice
function. Well, it *becomes* important when dealing with marshaling.
If we update the above program to this:
package main
import (
"fmt"
"os"
"github.com/spf13/viper"
)
type Data struct {
MyKey []string
}
func print(name string, val interface{}) {
fmt.Printf("%-15[1]s%-15[2]T%[2]v\n", name, val)
}
func main() {
viper.BindEnv("mykey", "MYPREFIX_MYKEY")
viper.SetDefault("mykey", []string{})
os.Setenv("MYPREFIX_MYKEY", "a b c")
v1 := viper.GetStringSlice("mykey")
v2 := viper.Get("mykey")
print("v1", v1)
print("v2", v2)
d := &Data{}
viper.Marshal(d)
print("d.MyKey", d.MyKey)
}
Now we can see the issue when we execute the updated program:
[0]akutz@pax:ex$ ./ex2
v1 []string [a b c]
v2 string a b c
d.MyKey []string []
[0]akutz@pax:ex$
The marshalled data structure's field MyKey is empty when in fact it
should have a string slice equal to, in value, []string {"a", "b",
"c"}.
The problem is that viper's Marshal function calls AllSettings which
ultimately uses the Get function. The Get function does try to infer
the value's type, but it does so using the type of the value retrieved
using this logic:
Get has the behavior of returning the value associated with the
first place from where it is set. Viper will check in the
following order:
* override
* flag
* env
* config file
* key/value store
* default
While the above order is the one we want when retrieving the values,
this patch enables users to decide if it's the order they want to be
used when inferring a value's type. To that end the function
SetTypeByDefaultValue is introduced. When SetTypeByDefaultValue(true)
is called, a call to the Get function will now first check a key's
default value, if set, when inferring a value's type. This is
demonstrated using a modified version of the same program above:
package main
import (
"fmt"
"os"
"github.com/spf13/viper"
)
type Data struct {
MyKey []string
}
func print(name string, val interface{}) {
fmt.Printf("%-15[1]s%-15[2]T%[2]v\n", name, val)
}
func main() {
viper.BindEnv("mykey", "MYPREFIX_MYKEY")
viper.SetDefault("mykey", []string{})
os.Setenv("MYPREFIX_MYKEY", "a b c")
v1 := viper.GetStringSlice("mykey")
v2 := viper.Get("mykey")
print("v1", v1)
print("v2", v2)
d1 := &Data{}
viper.Marshal(d1)
print("d1.MyKey", d1.MyKey)
viper.SetTypeByDefaultValue(true)
d2 := &Data{}
viper.Marshal(d2)
print("d2.MyKey", d2.MyKey)
}
Now the following is emitted:
[0]akutz@pax:ex$ ./ex3
v1 []string [a b c]
v2 string a b c
d1.MyKey []string []
d2.MyKey []string [a b c]
[0]akutz@pax:ex$
2015-08-29 15:54:20 +00:00
|
|
|
var valType interface{}
|
|
|
|
if !v.typeByDefValue {
|
|
|
|
valType = val
|
|
|
|
} else {
|
|
|
|
defVal, defExists := v.defaults[lcaseKey]
|
|
|
|
if defExists {
|
|
|
|
valType = defVal
|
|
|
|
} else {
|
|
|
|
valType = val
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch valType.(type) {
|
2014-12-05 16:04:40 +00:00
|
|
|
case bool:
|
|
|
|
return cast.ToBool(val)
|
|
|
|
case string:
|
|
|
|
return cast.ToString(val)
|
|
|
|
case int64, int32, int16, int8, int:
|
|
|
|
return cast.ToInt(val)
|
|
|
|
case float64, float32:
|
|
|
|
return cast.ToFloat64(val)
|
|
|
|
case time.Time:
|
|
|
|
return cast.ToTime(val)
|
2015-02-19 03:03:20 +00:00
|
|
|
case time.Duration:
|
|
|
|
return cast.ToDuration(val)
|
2014-12-05 16:04:40 +00:00
|
|
|
case []string:
|
[110] Default Values Specify Type
This patch adds a feature, if enabled, will infer a value's type from
its default value no matter from where else the value is set. This is
particularly important when working with environment variables. For
example:
package main
import (
"fmt"
"os"
"github.com/spf13/viper"
)
func print(name string, val interface{}) {
fmt.Printf("%-15[1]s%-15[2]T%[2]v\n", name, val)
}
func main() {
viper.BindEnv("mykey", "MYPREFIX_MYKEY")
viper.SetDefault("mykey", []string{})
os.Setenv("MYPREFIX_MYKEY", "a b c")
v1 := viper.GetStringSlice("mykey")
v2 := viper.Get("mykey")
print("v1", v1)
print("v2", v2)
}
When this program is executed the following is emitted:
[0]akutz@pax:ex$ ./ex1
v1 []string [a b c]
v2 string a b c
[0]akutz@pax:ex$
You may wonder, why is this important? Just use the GetStringSlice
function. Well, it *becomes* important when dealing with marshaling.
If we update the above program to this:
package main
import (
"fmt"
"os"
"github.com/spf13/viper"
)
type Data struct {
MyKey []string
}
func print(name string, val interface{}) {
fmt.Printf("%-15[1]s%-15[2]T%[2]v\n", name, val)
}
func main() {
viper.BindEnv("mykey", "MYPREFIX_MYKEY")
viper.SetDefault("mykey", []string{})
os.Setenv("MYPREFIX_MYKEY", "a b c")
v1 := viper.GetStringSlice("mykey")
v2 := viper.Get("mykey")
print("v1", v1)
print("v2", v2)
d := &Data{}
viper.Marshal(d)
print("d.MyKey", d.MyKey)
}
Now we can see the issue when we execute the updated program:
[0]akutz@pax:ex$ ./ex2
v1 []string [a b c]
v2 string a b c
d.MyKey []string []
[0]akutz@pax:ex$
The marshalled data structure's field MyKey is empty when in fact it
should have a string slice equal to, in value, []string {"a", "b",
"c"}.
The problem is that viper's Marshal function calls AllSettings which
ultimately uses the Get function. The Get function does try to infer
the value's type, but it does so using the type of the value retrieved
using this logic:
Get has the behavior of returning the value associated with the
first place from where it is set. Viper will check in the
following order:
* override
* flag
* env
* config file
* key/value store
* default
While the above order is the one we want when retrieving the values,
this patch enables users to decide if it's the order they want to be
used when inferring a value's type. To that end the function
SetTypeByDefaultValue is introduced. When SetTypeByDefaultValue(true)
is called, a call to the Get function will now first check a key's
default value, if set, when inferring a value's type. This is
demonstrated using a modified version of the same program above:
package main
import (
"fmt"
"os"
"github.com/spf13/viper"
)
type Data struct {
MyKey []string
}
func print(name string, val interface{}) {
fmt.Printf("%-15[1]s%-15[2]T%[2]v\n", name, val)
}
func main() {
viper.BindEnv("mykey", "MYPREFIX_MYKEY")
viper.SetDefault("mykey", []string{})
os.Setenv("MYPREFIX_MYKEY", "a b c")
v1 := viper.GetStringSlice("mykey")
v2 := viper.Get("mykey")
print("v1", v1)
print("v2", v2)
d1 := &Data{}
viper.Marshal(d1)
print("d1.MyKey", d1.MyKey)
viper.SetTypeByDefaultValue(true)
d2 := &Data{}
viper.Marshal(d2)
print("d2.MyKey", d2.MyKey)
}
Now the following is emitted:
[0]akutz@pax:ex$ ./ex3
v1 []string [a b c]
v2 string a b c
d1.MyKey []string []
d2.MyKey []string [a b c]
[0]akutz@pax:ex$
2015-08-29 15:54:20 +00:00
|
|
|
return cast.ToStringSlice(val)
|
2014-12-05 16:04:40 +00:00
|
|
|
}
|
|
|
|
return val
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// Sub returns new Viper instance representing a sub tree of this instance.
|
2015-12-24 11:44:44 +00:00
|
|
|
func Sub(key string) *Viper { return v.Sub(key) }
|
|
|
|
func (v *Viper) Sub(key string) *Viper {
|
2015-12-25 04:29:33 +00:00
|
|
|
subv := New()
|
|
|
|
data := v.Get(key)
|
|
|
|
if reflect.TypeOf(data).Kind() == reflect.Map {
|
|
|
|
subv.config = cast.ToStringMap(data)
|
|
|
|
return subv
|
2015-12-24 11:44:44 +00:00
|
|
|
}
|
2016-09-20 08:17:41 +00:00
|
|
|
return nil
|
2015-12-24 11:44:44 +00:00
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// GetString returns the value associated with the key as a string.
|
2014-12-05 02:55:51 +00:00
|
|
|
func GetString(key string) string { return v.GetString(key) }
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) GetString(key string) string {
|
2014-12-09 12:42:09 +00:00
|
|
|
return cast.ToString(v.Get(key))
|
2014-04-04 21:21:59 +00:00
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// GetBool returns the value associated with the key as a boolean.
|
2014-12-05 02:55:51 +00:00
|
|
|
func GetBool(key string) bool { return v.GetBool(key) }
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) GetBool(key string) bool {
|
2014-12-09 12:42:09 +00:00
|
|
|
return cast.ToBool(v.Get(key))
|
2014-04-04 21:21:59 +00:00
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// GetInt returns the value associated with the key as an integer.
|
2014-12-05 02:55:51 +00:00
|
|
|
func GetInt(key string) int { return v.GetInt(key) }
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) GetInt(key string) int {
|
2014-12-09 12:42:09 +00:00
|
|
|
return cast.ToInt(v.Get(key))
|
2014-04-04 21:21:59 +00:00
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// GetInt64 returns the value associated with the key as an integer.
|
2016-08-05 07:16:55 +00:00
|
|
|
func GetInt64(key string) int64 { return v.GetInt64(key) }
|
|
|
|
func (v *Viper) GetInt64(key string) int64 {
|
|
|
|
return cast.ToInt64(v.Get(key))
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// GetFloat64 returns the value associated with the key as a float64.
|
2014-12-05 02:55:51 +00:00
|
|
|
func GetFloat64(key string) float64 { return v.GetFloat64(key) }
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) GetFloat64(key string) float64 {
|
2014-12-09 12:42:09 +00:00
|
|
|
return cast.ToFloat64(v.Get(key))
|
2014-04-04 21:21:59 +00:00
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// GetTime returns the value associated with the key as time.
|
2014-12-05 02:55:51 +00:00
|
|
|
func GetTime(key string) time.Time { return v.GetTime(key) }
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) GetTime(key string) time.Time {
|
2014-12-09 12:42:09 +00:00
|
|
|
return cast.ToTime(v.Get(key))
|
2014-04-04 21:21:59 +00:00
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// GetDuration returns the value associated with the key as a duration.
|
2015-02-19 03:03:20 +00:00
|
|
|
func GetDuration(key string) time.Duration { return v.GetDuration(key) }
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) GetDuration(key string) time.Duration {
|
2015-02-19 03:03:20 +00:00
|
|
|
return cast.ToDuration(v.Get(key))
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// GetStringSlice returns the value associated with the key as a slice of strings.
|
2014-12-05 02:55:51 +00:00
|
|
|
func GetStringSlice(key string) []string { return v.GetStringSlice(key) }
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) GetStringSlice(key string) []string {
|
2014-12-09 12:42:09 +00:00
|
|
|
return cast.ToStringSlice(v.Get(key))
|
2014-04-05 05:19:39 +00:00
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// GetStringMap returns the value associated with the key as a map of interfaces.
|
2014-12-05 02:55:51 +00:00
|
|
|
func GetStringMap(key string) map[string]interface{} { return v.GetStringMap(key) }
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) GetStringMap(key string) map[string]interface{} {
|
2014-12-09 12:42:09 +00:00
|
|
|
return cast.ToStringMap(v.Get(key))
|
2014-04-05 05:19:39 +00:00
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// GetStringMapString returns the value associated with the key as a map of strings.
|
2014-12-05 02:55:51 +00:00
|
|
|
func GetStringMapString(key string) map[string]string { return v.GetStringMapString(key) }
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) GetStringMapString(key string) map[string]string {
|
2014-12-09 12:42:09 +00:00
|
|
|
return cast.ToStringMapString(v.Get(key))
|
2014-04-04 21:21:59 +00:00
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// GetStringMapStringSlice returns the value associated with the key as a map to a slice of strings.
|
2015-07-30 20:43:18 +00:00
|
|
|
func GetStringMapStringSlice(key string) map[string][]string { return v.GetStringMapStringSlice(key) }
|
2015-07-30 20:46:38 +00:00
|
|
|
func (v *Viper) GetStringMapStringSlice(key string) map[string][]string {
|
2015-07-30 20:27:34 +00:00
|
|
|
return cast.ToStringMapStringSlice(v.Get(key))
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// GetSizeInBytes returns the size of the value associated with the given key
|
2015-04-01 21:08:42 +00:00
|
|
|
// in bytes.
|
2015-02-28 21:03:22 +00:00
|
|
|
func GetSizeInBytes(key string) uint { return v.GetSizeInBytes(key) }
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) GetSizeInBytes(key string) uint {
|
2015-02-28 21:03:22 +00:00
|
|
|
sizeStr := cast.ToString(v.Get(key))
|
|
|
|
return parseSizeInBytes(sizeStr)
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// UnmarshalKey takes a single key and unmarshals it into a Struct.
|
2015-08-24 03:40:56 +00:00
|
|
|
func UnmarshalKey(key string, rawVal interface{}) error { return v.UnmarshalKey(key, rawVal) }
|
|
|
|
func (v *Viper) UnmarshalKey(key string, rawVal interface{}) error {
|
2014-12-09 12:42:09 +00:00
|
|
|
return mapstructure.Decode(v.Get(key), rawVal)
|
2014-06-26 21:58:55 +00:00
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// Unmarshal unmarshals the config into a Struct. Make sure that the tags
|
2015-04-01 21:08:42 +00:00
|
|
|
// on the fields of the structure are properly set.
|
2015-08-24 03:40:56 +00:00
|
|
|
func Unmarshal(rawVal interface{}) error { return v.Unmarshal(rawVal) }
|
|
|
|
func (v *Viper) Unmarshal(rawVal interface{}) error {
|
2016-09-23 23:20:44 +00:00
|
|
|
err := decode(v.AllSettings(), defaultDecoderConfig(rawVal))
|
2015-12-30 06:11:39 +00:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
v.insensitiviseMaps()
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-09-23 23:20:44 +00:00
|
|
|
// defaultDecoderConfig returns default mapsstructure.DecoderConfig with suppot
|
|
|
|
// of time.Duration values
|
|
|
|
func defaultDecoderConfig(output interface{}) *mapstructure.DecoderConfig {
|
|
|
|
return &mapstructure.DecoderConfig{
|
2015-12-30 06:11:39 +00:00
|
|
|
Metadata: nil,
|
|
|
|
Result: output,
|
|
|
|
WeaklyTypedInput: true,
|
2016-09-23 23:20:44 +00:00
|
|
|
DecodeHook: mapstructure.StringToTimeDurationHookFunc(),
|
2015-12-30 06:11:39 +00:00
|
|
|
}
|
2016-09-23 23:20:44 +00:00
|
|
|
}
|
2015-12-30 06:11:39 +00:00
|
|
|
|
2016-09-23 23:20:44 +00:00
|
|
|
// A wrapper around mapstructure.Decode that mimics the WeakDecode functionality
|
|
|
|
func decode(input interface{}, config *mapstructure.DecoderConfig) error {
|
2015-12-30 06:11:39 +00:00
|
|
|
decoder, err := mapstructure.NewDecoder(config)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return decoder.Decode(input)
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// UnmarshalExact unmarshals the config into a Struct, erroring if a field is nonexistent
|
|
|
|
// in the destination struct.
|
2015-12-30 06:11:39 +00:00
|
|
|
func (v *Viper) UnmarshalExact(rawVal interface{}) error {
|
2016-09-23 23:20:44 +00:00
|
|
|
config := defaultDecoderConfig(rawVal)
|
|
|
|
config.ErrorUnused = true
|
|
|
|
|
|
|
|
err := decode(v.AllSettings(), config)
|
2015-02-17 04:42:08 +00:00
|
|
|
|
2014-10-24 19:38:01 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2014-08-05 11:35:21 +00:00
|
|
|
|
2015-01-22 07:43:42 +00:00
|
|
|
v.insensitiviseMaps()
|
2014-08-05 11:35:21 +00:00
|
|
|
|
|
|
|
return nil
|
2014-06-26 21:58:55 +00:00
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// BindPFlags binds a full flag set to the configuration, using each flag's long
|
2015-04-02 01:38:54 +00:00
|
|
|
// name as the config key.
|
2016-09-20 08:17:41 +00:00
|
|
|
func BindPFlags(flags *pflag.FlagSet) error { return v.BindPFlags(flags) }
|
|
|
|
func (v *Viper) BindPFlags(flags *pflag.FlagSet) error {
|
2015-12-10 18:14:17 +00:00
|
|
|
return v.BindFlagValues(pflagValueSet{flags})
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// BindPFlag binds a specific key to a pflag (as used by cobra).
|
2016-08-05 07:25:24 +00:00
|
|
|
// Example (where serverCmd is a Cobra instance):
|
2015-12-10 18:14:17 +00:00
|
|
|
//
|
|
|
|
// serverCmd.Flags().Int("port", 1138, "Port to run Application server on")
|
|
|
|
// Viper.BindPFlag("port", serverCmd.Flags().Lookup("port"))
|
|
|
|
//
|
2016-09-20 08:17:41 +00:00
|
|
|
func BindPFlag(key string, flag *pflag.Flag) error { return v.BindPFlag(key, flag) }
|
|
|
|
func (v *Viper) BindPFlag(key string, flag *pflag.Flag) error {
|
2015-12-10 18:14:17 +00:00
|
|
|
return v.BindFlagValue(key, pflagValue{flag})
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// BindFlagValues binds a full FlagValue set to the configuration, using each flag's long
|
2015-12-10 18:14:17 +00:00
|
|
|
// name as the config key.
|
2016-09-20 08:17:41 +00:00
|
|
|
func BindFlagValues(flags FlagValueSet) error { return v.BindFlagValues(flags) }
|
2015-12-10 18:14:17 +00:00
|
|
|
func (v *Viper) BindFlagValues(flags FlagValueSet) (err error) {
|
|
|
|
flags.VisitAll(func(flag FlagValue) {
|
|
|
|
if err = v.BindFlagValue(flag.Name(), flag); err != nil {
|
2015-04-02 01:38:54 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
})
|
2015-11-09 22:58:46 +00:00
|
|
|
return nil
|
2015-04-02 01:38:54 +00:00
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// BindFlagValue binds a specific key to a FlagValue.
|
2015-04-01 21:08:42 +00:00
|
|
|
// Example(where serverCmd is a Cobra instance):
|
2014-07-11 14:42:07 +00:00
|
|
|
//
|
|
|
|
// serverCmd.Flags().Int("port", 1138, "Port to run Application server on")
|
2015-12-10 18:14:17 +00:00
|
|
|
// Viper.BindFlagValue("port", serverCmd.Flags().Lookup("port"))
|
2014-07-11 14:42:07 +00:00
|
|
|
//
|
2016-09-20 08:17:41 +00:00
|
|
|
func BindFlagValue(key string, flag FlagValue) error { return v.BindFlagValue(key, flag) }
|
|
|
|
func (v *Viper) BindFlagValue(key string, flag FlagValue) error {
|
2014-06-27 16:29:37 +00:00
|
|
|
if flag == nil {
|
|
|
|
return fmt.Errorf("flag for %q is nil", key)
|
|
|
|
}
|
2014-12-05 02:55:51 +00:00
|
|
|
v.pflags[strings.ToLower(key)] = flag
|
2014-06-27 16:29:37 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// BindEnv binds a Viper key to a ENV variable.
|
|
|
|
// ENV variables are case sensitive.
|
2014-09-27 21:03:00 +00:00
|
|
|
// If only a key is provided, it will use the env key matching the key, uppercased.
|
2014-12-22 23:31:11 +00:00
|
|
|
// EnvPrefix will be used when set when env name is not provided.
|
2016-09-20 08:17:41 +00:00
|
|
|
func BindEnv(input ...string) error { return v.BindEnv(input...) }
|
|
|
|
func (v *Viper) BindEnv(input ...string) error {
|
2014-09-27 21:03:00 +00:00
|
|
|
var key, envkey string
|
|
|
|
if len(input) == 0 {
|
|
|
|
return fmt.Errorf("BindEnv missing key to bind to")
|
|
|
|
}
|
|
|
|
|
2014-10-09 20:39:24 +00:00
|
|
|
key = strings.ToLower(input[0])
|
2014-09-27 21:03:00 +00:00
|
|
|
|
|
|
|
if len(input) == 1 {
|
2014-12-23 03:47:25 +00:00
|
|
|
envkey = v.mergeWithEnvPrefix(key)
|
2014-09-27 21:03:00 +00:00
|
|
|
} else {
|
|
|
|
envkey = input[1]
|
|
|
|
}
|
|
|
|
|
2014-12-05 02:55:51 +00:00
|
|
|
v.env[key] = envkey
|
2014-09-27 21:03:00 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// Given a key, find the value.
|
2014-12-05 16:04:40 +00:00
|
|
|
// Viper will check in the following order:
|
2016-09-20 08:17:41 +00:00
|
|
|
// flag, env, config file, key/value store, default.
|
|
|
|
// Viper will check to see if an alias exists first.
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) find(key string) interface{} {
|
2014-04-04 21:21:59 +00:00
|
|
|
var val interface{}
|
|
|
|
var exists bool
|
|
|
|
|
2014-04-05 05:19:39 +00:00
|
|
|
// if the requested key is an alias, then return the proper key
|
2014-12-05 02:55:51 +00:00
|
|
|
key = v.realKey(key)
|
2014-04-04 21:21:59 +00:00
|
|
|
|
2014-06-27 16:29:37 +00:00
|
|
|
// PFlag Override first
|
2014-12-05 02:55:51 +00:00
|
|
|
flag, exists := v.pflags[key]
|
2015-12-10 18:14:17 +00:00
|
|
|
if exists && flag.HasChanged() {
|
2016-09-22 18:19:24 +00:00
|
|
|
jww.TRACE.Printf("%q found in pflag override (%s): %s", key, flag.ValueType(), flag.ValueString())
|
2015-12-10 18:14:17 +00:00
|
|
|
switch flag.ValueType() {
|
2015-11-09 22:58:46 +00:00
|
|
|
case "int", "int8", "int16", "int32", "int64":
|
2015-12-10 18:14:17 +00:00
|
|
|
return cast.ToInt(flag.ValueString())
|
2015-11-09 22:58:46 +00:00
|
|
|
case "bool":
|
2015-12-10 18:14:17 +00:00
|
|
|
return cast.ToBool(flag.ValueString())
|
2016-09-22 18:19:24 +00:00
|
|
|
case "stringSlice":
|
|
|
|
s := strings.TrimPrefix(flag.ValueString(), "[")
|
|
|
|
return strings.TrimSuffix(s, "]")
|
2015-11-09 22:58:46 +00:00
|
|
|
default:
|
2015-12-10 18:14:17 +00:00
|
|
|
return flag.ValueString()
|
2014-06-27 16:29:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-05 02:55:51 +00:00
|
|
|
val, exists = v.override[key]
|
2014-04-04 21:21:59 +00:00
|
|
|
if exists {
|
2016-09-22 18:19:24 +00:00
|
|
|
jww.TRACE.Printf("%q found in override: %s", key, val)
|
2014-04-04 21:21:59 +00:00
|
|
|
return val
|
|
|
|
}
|
|
|
|
|
2014-12-23 03:47:25 +00:00
|
|
|
if v.automaticEnvApplied {
|
|
|
|
// even if it hasn't been registered, if automaticEnv is used,
|
|
|
|
// check any Get request
|
2015-03-06 19:21:17 +00:00
|
|
|
if val = v.getEnv(v.mergeWithEnvPrefix(key)); val != "" {
|
2016-09-22 18:19:24 +00:00
|
|
|
jww.TRACE.Printf("%q found in environment: %s", key, val)
|
2014-12-23 03:47:25 +00:00
|
|
|
return val
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-05 02:55:51 +00:00
|
|
|
envkey, exists := v.env[key]
|
2014-09-27 21:03:00 +00:00
|
|
|
if exists {
|
2016-09-22 18:19:24 +00:00
|
|
|
jww.TRACE.Printf("%q registered as env var %q", key, envkey)
|
2015-03-06 19:21:17 +00:00
|
|
|
if val = v.getEnv(envkey); val != "" {
|
2016-09-22 18:19:24 +00:00
|
|
|
jww.TRACE.Printf("%q found in environment: %s", envkey, val)
|
2014-09-27 21:03:00 +00:00
|
|
|
return val
|
|
|
|
}
|
2016-09-22 18:19:24 +00:00
|
|
|
jww.TRACE.Printf("%q env value unset", envkey)
|
2014-09-27 21:03:00 +00:00
|
|
|
}
|
|
|
|
|
2014-12-05 02:55:51 +00:00
|
|
|
val, exists = v.config[key]
|
2014-04-04 21:21:59 +00:00
|
|
|
if exists {
|
2016-09-22 18:19:24 +00:00
|
|
|
jww.TRACE.Printf("%q found in config (%T): %s", key, val, val)
|
2014-04-04 21:21:59 +00:00
|
|
|
return val
|
|
|
|
}
|
|
|
|
|
2015-10-13 22:31:32 +00:00
|
|
|
// Test for nested config parameter
|
|
|
|
if strings.Contains(key, v.keyDelim) {
|
|
|
|
path := strings.Split(key, v.keyDelim)
|
|
|
|
|
|
|
|
source := v.find(path[0])
|
|
|
|
if source != nil {
|
|
|
|
if reflect.TypeOf(source).Kind() == reflect.Map {
|
|
|
|
val := v.searchMap(cast.ToStringMap(source), path[1:])
|
2016-09-19 17:37:56 +00:00
|
|
|
if val != nil {
|
2016-09-22 18:19:24 +00:00
|
|
|
jww.TRACE.Printf("%q found in nested config: %s", key, val)
|
2016-09-19 17:37:56 +00:00
|
|
|
return val
|
|
|
|
}
|
2015-10-13 22:31:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-05 02:55:51 +00:00
|
|
|
val, exists = v.kvstore[key]
|
2014-10-24 19:38:01 +00:00
|
|
|
if exists {
|
2016-09-22 18:19:24 +00:00
|
|
|
jww.TRACE.Printf("%q found in key/value store: %s", key, val)
|
2014-10-24 19:38:01 +00:00
|
|
|
return val
|
|
|
|
}
|
|
|
|
|
2014-12-05 02:55:51 +00:00
|
|
|
val, exists = v.defaults[key]
|
2014-04-04 21:21:59 +00:00
|
|
|
if exists {
|
2016-09-22 18:19:24 +00:00
|
|
|
jww.TRACE.Printf("%q found in defaults: ", key, val)
|
2014-04-04 21:21:59 +00:00
|
|
|
return val
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// IsSet checks to see if the key has been set in any of the data locations.
|
2014-12-05 02:55:51 +00:00
|
|
|
func IsSet(key string) bool { return v.IsSet(key) }
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) IsSet(key string) bool {
|
2015-11-29 23:16:21 +00:00
|
|
|
path := strings.Split(key, v.keyDelim)
|
|
|
|
|
|
|
|
lcaseKey := strings.ToLower(key)
|
|
|
|
val := v.find(lcaseKey)
|
|
|
|
|
|
|
|
if val == nil {
|
|
|
|
source := v.find(strings.ToLower(path[0]))
|
|
|
|
if source != nil {
|
|
|
|
if reflect.TypeOf(source).Kind() == reflect.Map {
|
|
|
|
val = v.searchMap(cast.ToStringMap(source), path[1:])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return val != nil
|
2014-04-04 21:21:59 +00:00
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// AutomaticEnv has Viper check ENV variables for all.
|
2014-09-27 21:01:11 +00:00
|
|
|
// keys set in config, default & flags
|
2014-12-05 02:55:51 +00:00
|
|
|
func AutomaticEnv() { v.AutomaticEnv() }
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) AutomaticEnv() {
|
2014-12-23 03:47:25 +00:00
|
|
|
v.automaticEnvApplied = true
|
2014-09-27 21:01:11 +00:00
|
|
|
}
|
|
|
|
|
2015-03-06 19:21:17 +00:00
|
|
|
// SetEnvKeyReplacer sets the strings.Replacer on the viper object
|
2015-04-01 21:08:42 +00:00
|
|
|
// Useful for mapping an environmental variable to a key that does
|
|
|
|
// not match it.
|
2015-03-06 19:21:17 +00:00
|
|
|
func SetEnvKeyReplacer(r *strings.Replacer) { v.SetEnvKeyReplacer(r) }
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) SetEnvKeyReplacer(r *strings.Replacer) {
|
2015-03-06 19:21:17 +00:00
|
|
|
v.envKeyReplacer = r
|
|
|
|
}
|
|
|
|
|
2014-07-11 14:42:07 +00:00
|
|
|
// Aliases provide another accessor for the same key.
|
|
|
|
// This enables one to change a name without breaking the application
|
2014-12-05 02:55:51 +00:00
|
|
|
func RegisterAlias(alias string, key string) { v.RegisterAlias(alias, key) }
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) RegisterAlias(alias string, key string) {
|
2014-12-05 02:55:51 +00:00
|
|
|
v.registerAlias(alias, strings.ToLower(key))
|
2014-04-05 05:19:39 +00:00
|
|
|
}
|
|
|
|
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) registerAlias(alias string, key string) {
|
2014-04-05 05:19:39 +00:00
|
|
|
alias = strings.ToLower(alias)
|
2014-12-05 02:55:51 +00:00
|
|
|
if alias != key && alias != v.realKey(key) {
|
|
|
|
_, exists := v.aliases[alias]
|
2014-08-05 11:35:21 +00:00
|
|
|
|
2014-04-05 05:19:39 +00:00
|
|
|
if !exists {
|
2014-08-05 11:35:21 +00:00
|
|
|
// if we alias something that exists in one of the maps to another
|
|
|
|
// name, we'll never be able to get that value using the original
|
|
|
|
// name, so move the config value to the new realkey.
|
2014-12-05 02:55:51 +00:00
|
|
|
if val, ok := v.config[alias]; ok {
|
|
|
|
delete(v.config, alias)
|
|
|
|
v.config[key] = val
|
2014-08-05 11:35:21 +00:00
|
|
|
}
|
2014-12-05 02:55:51 +00:00
|
|
|
if val, ok := v.kvstore[alias]; ok {
|
|
|
|
delete(v.kvstore, alias)
|
|
|
|
v.kvstore[key] = val
|
2014-10-24 19:38:01 +00:00
|
|
|
}
|
2014-12-05 02:55:51 +00:00
|
|
|
if val, ok := v.defaults[alias]; ok {
|
|
|
|
delete(v.defaults, alias)
|
|
|
|
v.defaults[key] = val
|
2014-08-05 11:35:21 +00:00
|
|
|
}
|
2014-12-05 02:55:51 +00:00
|
|
|
if val, ok := v.override[alias]; ok {
|
|
|
|
delete(v.override, alias)
|
|
|
|
v.override[key] = val
|
2014-08-05 11:35:21 +00:00
|
|
|
}
|
2014-12-05 02:55:51 +00:00
|
|
|
v.aliases[alias] = key
|
2014-04-05 05:19:39 +00:00
|
|
|
}
|
|
|
|
} else {
|
2014-12-05 02:55:51 +00:00
|
|
|
jww.WARN.Println("Creating circular reference alias", alias, key, v.realKey(key))
|
2014-04-05 05:19:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) realKey(key string) string {
|
2014-12-05 02:55:51 +00:00
|
|
|
newkey, exists := v.aliases[key]
|
2014-04-05 05:19:39 +00:00
|
|
|
if exists {
|
|
|
|
jww.DEBUG.Println("Alias", key, "to", newkey)
|
2014-12-05 02:55:51 +00:00
|
|
|
return v.realKey(newkey)
|
2014-04-05 05:19:39 +00:00
|
|
|
}
|
2016-09-20 08:17:41 +00:00
|
|
|
return key
|
2014-04-04 21:21:59 +00:00
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// InConfig checks to see if the given key (or an alias) is in the config file.
|
2014-12-05 02:55:51 +00:00
|
|
|
func InConfig(key string) bool { return v.InConfig(key) }
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) InConfig(key string) bool {
|
2014-04-05 05:19:39 +00:00
|
|
|
// if the requested key is an alias, then return the proper key
|
2014-12-05 02:55:51 +00:00
|
|
|
key = v.realKey(key)
|
2014-04-05 05:19:39 +00:00
|
|
|
|
2014-12-05 02:55:51 +00:00
|
|
|
_, exists := v.config[key]
|
2014-04-04 21:21:59 +00:00
|
|
|
return exists
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// SetDefault sets the default value for this key.
|
2014-07-11 14:42:07 +00:00
|
|
|
// Default only used when no value is provided by the user via flag, config or ENV.
|
2014-12-05 02:55:51 +00:00
|
|
|
func SetDefault(key string, value interface{}) { v.SetDefault(key, value) }
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) SetDefault(key string, value interface{}) {
|
2014-04-04 21:21:59 +00:00
|
|
|
// If alias passed in, then set the proper default
|
2014-12-05 02:55:51 +00:00
|
|
|
key = v.realKey(strings.ToLower(key))
|
|
|
|
v.defaults[key] = value
|
2014-04-04 21:21:59 +00:00
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// Set sets the value for the key in the override regiser.
|
2014-10-24 19:38:01 +00:00
|
|
|
// Will be used instead of values obtained via
|
2016-09-20 08:17:41 +00:00
|
|
|
// flags, config file, ENV, default, or key/value store.
|
2014-12-05 02:55:51 +00:00
|
|
|
func Set(key string, value interface{}) { v.Set(key, value) }
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) Set(key string, value interface{}) {
|
2014-04-04 21:21:59 +00:00
|
|
|
// If alias passed in, then set the proper override
|
2014-12-05 02:55:51 +00:00
|
|
|
key = v.realKey(strings.ToLower(key))
|
|
|
|
v.override[key] = value
|
2014-04-08 22:57:45 +00:00
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// ReadInConfig will discover and load the configuration file from disk
|
2014-10-24 19:38:01 +00:00
|
|
|
// and key/value stores, searching in one of the defined paths.
|
2014-12-05 02:55:51 +00:00
|
|
|
func ReadInConfig() error { return v.ReadInConfig() }
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) ReadInConfig() error {
|
2014-04-04 21:21:59 +00:00
|
|
|
jww.INFO.Println("Attempting to read in config file")
|
2014-12-05 02:55:51 +00:00
|
|
|
if !stringInSlice(v.getConfigType(), SupportedExts) {
|
|
|
|
return UnsupportedConfigError(v.getConfigType())
|
2014-04-04 21:21:59 +00:00
|
|
|
}
|
|
|
|
|
2016-08-05 07:45:58 +00:00
|
|
|
file, err := afero.ReadFile(v.fs, v.getConfigFile())
|
2014-04-08 22:57:45 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
2014-04-04 21:21:59 +00:00
|
|
|
}
|
2014-04-08 22:57:45 +00:00
|
|
|
|
2015-04-26 19:08:10 +00:00
|
|
|
v.config = make(map[string]interface{})
|
|
|
|
|
2015-08-24 03:40:56 +00:00
|
|
|
return v.unmarshalReader(bytes.NewReader(file), v.config)
|
2014-04-04 21:21:59 +00:00
|
|
|
}
|
2014-12-05 02:55:51 +00:00
|
|
|
|
2015-11-12 20:20:40 +00:00
|
|
|
// MergeInConfig merges a new configuration with an existing config.
|
|
|
|
func MergeInConfig() error { return v.MergeInConfig() }
|
|
|
|
func (v *Viper) MergeInConfig() error {
|
|
|
|
jww.INFO.Println("Attempting to merge in config file")
|
|
|
|
if !stringInSlice(v.getConfigType(), SupportedExts) {
|
|
|
|
return UnsupportedConfigError(v.getConfigType())
|
|
|
|
}
|
|
|
|
|
2016-08-05 07:45:58 +00:00
|
|
|
file, err := afero.ReadFile(v.fs, v.getConfigFile())
|
2015-11-12 20:20:40 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return v.MergeConfig(bytes.NewReader(file))
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// ReadConfig will read a configuration file, setting existing keys to nil if the
|
2015-11-12 20:20:40 +00:00
|
|
|
// key does not exist in the file.
|
2015-05-14 09:40:59 +00:00
|
|
|
func ReadConfig(in io.Reader) error { return v.ReadConfig(in) }
|
|
|
|
func (v *Viper) ReadConfig(in io.Reader) error {
|
2015-05-08 09:13:33 +00:00
|
|
|
v.config = make(map[string]interface{})
|
2015-08-24 03:40:56 +00:00
|
|
|
return v.unmarshalReader(in, v.config)
|
2015-05-08 09:13:33 +00:00
|
|
|
}
|
|
|
|
|
2015-11-12 20:20:40 +00:00
|
|
|
// MergeConfig merges a new configuration with an existing config.
|
|
|
|
func MergeConfig(in io.Reader) error { return v.MergeConfig(in) }
|
|
|
|
func (v *Viper) MergeConfig(in io.Reader) error {
|
|
|
|
if v.config == nil {
|
|
|
|
v.config = make(map[string]interface{})
|
|
|
|
}
|
|
|
|
cfg := make(map[string]interface{})
|
|
|
|
if err := v.unmarshalReader(in, cfg); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
mergeMaps(cfg, v.config, nil)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func keyExists(k string, m map[string]interface{}) string {
|
|
|
|
lk := strings.ToLower(k)
|
|
|
|
for mk := range m {
|
|
|
|
lmk := strings.ToLower(mk)
|
|
|
|
if lmk == lk {
|
|
|
|
return mk
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func castToMapStringInterface(
|
|
|
|
src map[interface{}]interface{}) map[string]interface{} {
|
|
|
|
tgt := map[string]interface{}{}
|
|
|
|
for k, v := range src {
|
|
|
|
tgt[fmt.Sprintf("%v", k)] = v
|
|
|
|
}
|
|
|
|
return tgt
|
|
|
|
}
|
|
|
|
|
|
|
|
// mergeMaps merges two maps. The `itgt` parameter is for handling go-yaml's
|
|
|
|
// insistence on parsing nested structures as `map[interface{}]interface{}`
|
|
|
|
// instead of using a `string` as the key for nest structures beyond one level
|
|
|
|
// deep. Both map types are supported as there is a go-yaml fork that uses
|
|
|
|
// `map[string]interface{}` instead.
|
|
|
|
func mergeMaps(
|
|
|
|
src, tgt map[string]interface{}, itgt map[interface{}]interface{}) {
|
|
|
|
for sk, sv := range src {
|
|
|
|
tk := keyExists(sk, tgt)
|
|
|
|
if tk == "" {
|
|
|
|
jww.TRACE.Printf("tk=\"\", tgt[%s]=%v", sk, sv)
|
|
|
|
tgt[sk] = sv
|
|
|
|
if itgt != nil {
|
|
|
|
itgt[sk] = sv
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
tv, ok := tgt[tk]
|
|
|
|
if !ok {
|
|
|
|
jww.TRACE.Printf("tgt[%s] != ok, tgt[%s]=%v", tk, sk, sv)
|
|
|
|
tgt[sk] = sv
|
|
|
|
if itgt != nil {
|
|
|
|
itgt[sk] = sv
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
svType := reflect.TypeOf(sv)
|
|
|
|
tvType := reflect.TypeOf(tv)
|
|
|
|
if svType != tvType {
|
|
|
|
jww.ERROR.Printf(
|
|
|
|
"svType != tvType; key=%s, st=%v, tt=%v, sv=%v, tv=%v",
|
|
|
|
sk, svType, tvType, sv, tv)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
jww.TRACE.Printf("processing key=%s, st=%v, tt=%v, sv=%v, tv=%v",
|
|
|
|
sk, svType, tvType, sv, tv)
|
|
|
|
|
|
|
|
switch ttv := tv.(type) {
|
|
|
|
case map[interface{}]interface{}:
|
|
|
|
jww.TRACE.Printf("merging maps (must convert)")
|
|
|
|
tsv := sv.(map[interface{}]interface{})
|
|
|
|
ssv := castToMapStringInterface(tsv)
|
|
|
|
stv := castToMapStringInterface(ttv)
|
|
|
|
mergeMaps(ssv, stv, ttv)
|
|
|
|
case map[string]interface{}:
|
|
|
|
jww.TRACE.Printf("merging maps")
|
|
|
|
mergeMaps(sv.(map[string]interface{}), ttv, nil)
|
|
|
|
default:
|
|
|
|
jww.TRACE.Printf("setting value")
|
|
|
|
tgt[tk] = sv
|
|
|
|
if itgt != nil {
|
|
|
|
itgt[tk] = sv
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// ReadRemoteConfig attempts to get configuration from a remote source
|
2015-04-01 21:08:42 +00:00
|
|
|
// and read it in the remote configuration registry.
|
2014-12-05 02:55:51 +00:00
|
|
|
func ReadRemoteConfig() error { return v.ReadRemoteConfig() }
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) ReadRemoteConfig() error {
|
2016-09-20 08:17:41 +00:00
|
|
|
return v.getKeyValueConfig()
|
2014-10-27 14:14:45 +00:00
|
|
|
}
|
2014-12-05 02:55:51 +00:00
|
|
|
|
2015-05-08 09:13:33 +00:00
|
|
|
func WatchRemoteConfig() error { return v.WatchRemoteConfig() }
|
|
|
|
func (v *Viper) WatchRemoteConfig() error {
|
2016-09-20 08:17:41 +00:00
|
|
|
return v.watchKeyValueConfig()
|
2015-05-08 09:13:33 +00:00
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// Unmarshall a Reader into a map.
|
|
|
|
// Should probably be an unexported function.
|
2015-08-24 03:40:56 +00:00
|
|
|
func unmarshalReader(in io.Reader, c map[string]interface{}) error {
|
|
|
|
return v.unmarshalReader(in, c)
|
2015-08-02 01:32:35 +00:00
|
|
|
}
|
|
|
|
|
2015-08-24 03:40:56 +00:00
|
|
|
func (v *Viper) unmarshalReader(in io.Reader, c map[string]interface{}) error {
|
|
|
|
return unmarshallConfigReader(in, c, v.getConfigType())
|
2014-08-05 11:35:21 +00:00
|
|
|
}
|
|
|
|
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) insensitiviseMaps() {
|
2015-01-22 07:43:42 +00:00
|
|
|
insensitiviseMap(v.config)
|
|
|
|
insensitiviseMap(v.defaults)
|
|
|
|
insensitiviseMap(v.override)
|
|
|
|
insensitiviseMap(v.kvstore)
|
2014-10-24 19:38:01 +00:00
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// Retrieve the first found remote configuration.
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) getKeyValueConfig() error {
|
2015-05-30 19:28:33 +00:00
|
|
|
if RemoteConfig == nil {
|
|
|
|
return RemoteConfigError("Enable the remote features by doing a blank import of the viper/remote package: '_ github.com/spf13/viper/remote'")
|
|
|
|
}
|
|
|
|
|
2014-12-05 02:55:51 +00:00
|
|
|
for _, rp := range v.remoteProviders {
|
|
|
|
val, err := v.getRemoteConfig(rp)
|
2014-10-24 19:38:01 +00:00
|
|
|
if err != nil {
|
2014-10-26 13:42:03 +00:00
|
|
|
continue
|
2014-10-24 19:38:01 +00:00
|
|
|
}
|
2014-12-05 02:55:51 +00:00
|
|
|
v.kvstore = val
|
2014-10-26 13:42:03 +00:00
|
|
|
return nil
|
2014-10-24 19:38:01 +00:00
|
|
|
}
|
2014-10-27 15:03:11 +00:00
|
|
|
return RemoteConfigError("No Files Found")
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
func (v *Viper) getRemoteConfig(provider RemoteProvider) (map[string]interface{}, error) {
|
2015-05-30 19:28:33 +00:00
|
|
|
reader, err := RemoteConfig.Get(provider)
|
2014-10-26 13:42:03 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-08-24 03:40:56 +00:00
|
|
|
err = v.unmarshalReader(reader, v.kvstore)
|
2014-12-05 02:55:51 +00:00
|
|
|
return v.kvstore, err
|
2015-05-08 09:13:33 +00:00
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// Retrieve the first found remote configuration.
|
2015-05-08 09:13:33 +00:00
|
|
|
func (v *Viper) watchKeyValueConfig() error {
|
|
|
|
for _, rp := range v.remoteProviders {
|
|
|
|
val, err := v.watchRemoteConfig(rp)
|
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
v.kvstore = val
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return RemoteConfigError("No Files Found")
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
func (v *Viper) watchRemoteConfig(provider RemoteProvider) (map[string]interface{}, error) {
|
2015-05-30 19:28:33 +00:00
|
|
|
reader, err := RemoteConfig.Watch(provider)
|
2015-05-08 09:13:33 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-08-24 03:40:56 +00:00
|
|
|
err = v.unmarshalReader(reader, v.kvstore)
|
2015-05-08 09:13:33 +00:00
|
|
|
return v.kvstore, err
|
2014-10-26 13:42:03 +00:00
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// AllKeys returns all keys regardless where they are set.
|
2014-12-05 02:55:51 +00:00
|
|
|
func AllKeys() []string { return v.AllKeys() }
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) AllKeys() []string {
|
2014-09-27 21:00:51 +00:00
|
|
|
m := map[string]struct{}{}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
for key := range v.defaults {
|
2015-10-29 17:57:16 +00:00
|
|
|
m[strings.ToLower(key)] = struct{}{}
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
for key := range v.pflags {
|
2015-10-29 17:57:16 +00:00
|
|
|
m[strings.ToLower(key)] = struct{}{}
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
for key := range v.env {
|
2015-10-29 17:57:16 +00:00
|
|
|
m[strings.ToLower(key)] = struct{}{}
|
2014-09-27 21:00:51 +00:00
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
for key := range v.config {
|
2015-10-29 17:57:16 +00:00
|
|
|
m[strings.ToLower(key)] = struct{}{}
|
2014-09-27 21:00:51 +00:00
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
for key := range v.kvstore {
|
2015-10-29 17:57:16 +00:00
|
|
|
m[strings.ToLower(key)] = struct{}{}
|
2014-10-24 19:38:01 +00:00
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
for key := range v.override {
|
2015-10-29 17:57:16 +00:00
|
|
|
m[strings.ToLower(key)] = struct{}{}
|
2014-09-27 21:00:51 +00:00
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
for key := range v.aliases {
|
2016-01-20 21:15:43 +00:00
|
|
|
m[strings.ToLower(key)] = struct{}{}
|
|
|
|
}
|
|
|
|
|
2014-09-27 21:00:51 +00:00
|
|
|
a := []string{}
|
2016-09-20 08:17:41 +00:00
|
|
|
for x := range m {
|
2014-09-27 21:00:51 +00:00
|
|
|
a = append(a, x)
|
|
|
|
}
|
|
|
|
|
|
|
|
return a
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// AllSettings returns all settings as a map[string]interface{}.
|
2014-12-05 02:55:51 +00:00
|
|
|
func AllSettings() map[string]interface{} { return v.AllSettings() }
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) AllSettings() map[string]interface{} {
|
2014-09-27 21:00:51 +00:00
|
|
|
m := map[string]interface{}{}
|
2014-12-05 02:55:51 +00:00
|
|
|
for _, x := range v.AllKeys() {
|
|
|
|
m[x] = v.Get(x)
|
2014-09-27 21:00:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// SetFs sets the filesystem to use to read configuration.
|
2016-08-05 07:45:58 +00:00
|
|
|
func SetFs(fs afero.Fs) { v.SetFs(fs) }
|
|
|
|
func (v *Viper) SetFs(fs afero.Fs) {
|
|
|
|
v.fs = fs
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// SetConfigName sets name for the config file.
|
2014-07-11 14:42:07 +00:00
|
|
|
// Does not include extension.
|
2014-12-05 02:55:51 +00:00
|
|
|
func SetConfigName(in string) { v.SetConfigName(in) }
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) SetConfigName(in string) {
|
2014-04-04 21:21:59 +00:00
|
|
|
if in != "" {
|
2014-12-05 02:55:51 +00:00
|
|
|
v.configName = in
|
2016-08-05 07:18:19 +00:00
|
|
|
v.configFile = ""
|
2014-04-04 21:21:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// SetConfigType sets the type of the configuration returned by the
|
2015-04-01 21:08:42 +00:00
|
|
|
// remote source, e.g. "json".
|
2014-12-05 02:55:51 +00:00
|
|
|
func SetConfigType(in string) { v.SetConfigType(in) }
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) SetConfigType(in string) {
|
2014-04-04 21:21:59 +00:00
|
|
|
if in != "" {
|
2014-12-05 02:55:51 +00:00
|
|
|
v.configType = in
|
2014-04-04 21:21:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) getConfigType() string {
|
2014-12-05 02:55:51 +00:00
|
|
|
if v.configType != "" {
|
|
|
|
return v.configType
|
2014-04-04 21:21:59 +00:00
|
|
|
}
|
|
|
|
|
2014-12-05 02:55:51 +00:00
|
|
|
cf := v.getConfigFile()
|
2014-11-13 19:43:51 +00:00
|
|
|
ext := filepath.Ext(cf)
|
2014-04-04 21:21:59 +00:00
|
|
|
|
|
|
|
if len(ext) > 1 {
|
|
|
|
return ext[1:]
|
|
|
|
}
|
2016-09-20 08:17:41 +00:00
|
|
|
|
|
|
|
return ""
|
2014-04-04 21:21:59 +00:00
|
|
|
}
|
|
|
|
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) getConfigFile() string {
|
2014-04-04 21:21:59 +00:00
|
|
|
// if explicitly set, then use it
|
2014-12-05 02:55:51 +00:00
|
|
|
if v.configFile != "" {
|
|
|
|
return v.configFile
|
2014-04-04 21:21:59 +00:00
|
|
|
}
|
|
|
|
|
2014-12-05 02:55:51 +00:00
|
|
|
cf, err := v.findConfigFile()
|
2014-04-04 21:21:59 +00:00
|
|
|
if err != nil {
|
2014-04-08 22:57:45 +00:00
|
|
|
return ""
|
2014-04-04 21:21:59 +00:00
|
|
|
}
|
2014-04-08 22:57:45 +00:00
|
|
|
|
2014-12-05 02:55:51 +00:00
|
|
|
v.configFile = cf
|
|
|
|
return v.getConfigFile()
|
2014-04-04 21:21:59 +00:00
|
|
|
}
|
|
|
|
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) searchInPath(in string) (filename string) {
|
2014-04-04 21:21:59 +00:00
|
|
|
jww.DEBUG.Println("Searching for config in ", in)
|
|
|
|
for _, ext := range SupportedExts {
|
2014-12-05 02:55:51 +00:00
|
|
|
jww.DEBUG.Println("Checking for", filepath.Join(in, v.configName+"."+ext))
|
|
|
|
if b, _ := exists(filepath.Join(in, v.configName+"."+ext)); b {
|
|
|
|
jww.DEBUG.Println("Found: ", filepath.Join(in, v.configName+"."+ext))
|
|
|
|
return filepath.Join(in, v.configName+"."+ext)
|
2014-04-04 21:21:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// Search all configPaths for any config file.
|
|
|
|
// Returns the first path that exists (and is a config file).
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) findConfigFile() (string, error) {
|
2015-08-02 00:37:27 +00:00
|
|
|
|
2014-12-05 02:55:51 +00:00
|
|
|
jww.INFO.Println("Searching for config in ", v.configPaths)
|
2014-04-04 21:21:59 +00:00
|
|
|
|
2014-12-05 02:55:51 +00:00
|
|
|
for _, cp := range v.configPaths {
|
|
|
|
file := v.searchInPath(cp)
|
2014-04-04 21:21:59 +00:00
|
|
|
if file != "" {
|
|
|
|
return file, nil
|
|
|
|
}
|
|
|
|
}
|
2015-08-02 00:37:27 +00:00
|
|
|
return "", ConfigFileNotFoundError{v.configName, fmt.Sprintf("%s", v.configPaths)}
|
2014-06-25 21:23:00 +00:00
|
|
|
}
|
|
|
|
|
2016-09-20 08:17:41 +00:00
|
|
|
// Debug prints all configuration registries for debugging
|
2015-04-01 21:08:42 +00:00
|
|
|
// purposes.
|
2014-12-05 02:55:51 +00:00
|
|
|
func Debug() { v.Debug() }
|
2015-02-17 14:22:37 +00:00
|
|
|
func (v *Viper) Debug() {
|
2014-05-29 20:48:24 +00:00
|
|
|
fmt.Println("Aliases:")
|
2016-05-08 11:12:02 +00:00
|
|
|
fmt.Printf("Aliases:\n%#v\n", v.aliases)
|
|
|
|
fmt.Printf("Override:\n%#v\n", v.override)
|
|
|
|
fmt.Printf("PFlags:\n%#v\n", v.pflags)
|
|
|
|
fmt.Printf("Env:\n%#v\n", v.env)
|
|
|
|
fmt.Printf("Key/Value Store:\n%#v\n", v.kvstore)
|
|
|
|
fmt.Printf("Config:\n%#v\n", v.config)
|
|
|
|
fmt.Printf("Defaults:\n%#v\n", v.defaults)
|
2014-04-04 21:21:59 +00:00
|
|
|
}
|