2019-06-17 09:48:05 +00:00
|
|
|
// Package env implements encoding and decoding between environment variable and a typed Configuration.
|
|
|
|
package env
|
|
|
|
|
|
|
|
import (
|
2019-06-21 08:08:04 +00:00
|
|
|
"fmt"
|
|
|
|
"regexp"
|
2019-06-17 09:48:05 +00:00
|
|
|
"strings"
|
|
|
|
|
2019-08-03 01:58:23 +00:00
|
|
|
"github.com/containous/traefik/v2/pkg/config/parser"
|
2019-06-17 09:48:05 +00:00
|
|
|
)
|
|
|
|
|
2019-06-21 08:08:04 +00:00
|
|
|
// DefaultNamePrefix is the default prefix for environment variable names.
|
|
|
|
const DefaultNamePrefix = "TRAEFIK_"
|
|
|
|
|
2019-06-17 09:48:05 +00:00
|
|
|
// Decode decodes the given environment variables into the given element.
|
|
|
|
// The operation goes through four stages roughly summarized as:
|
|
|
|
// env vars -> map
|
|
|
|
// map -> tree of untyped nodes
|
|
|
|
// untyped nodes -> nodes augmented with metadata such as kind (inferred from element)
|
|
|
|
// "typed" nodes -> typed element
|
2019-06-21 08:08:04 +00:00
|
|
|
func Decode(environ []string, prefix string, element interface{}) error {
|
|
|
|
if err := checkPrefix(prefix); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-06-17 09:48:05 +00:00
|
|
|
vars := make(map[string]string)
|
|
|
|
for _, evr := range environ {
|
|
|
|
n := strings.SplitN(evr, "=", 2)
|
2019-06-21 08:08:04 +00:00
|
|
|
if strings.HasPrefix(strings.ToUpper(n[0]), prefix) {
|
2019-06-17 09:48:05 +00:00
|
|
|
key := strings.ReplaceAll(strings.ToLower(n[0]), "_", ".")
|
|
|
|
vars[key] = n[1]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-21 08:08:04 +00:00
|
|
|
rootName := strings.ToLower(prefix[:len(prefix)-1])
|
|
|
|
return parser.Decode(vars, element, rootName)
|
2019-06-17 09:48:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Encode encodes the configuration in element into the environment variables represented in the returned Flats.
|
|
|
|
// The operation goes through three stages roughly summarized as:
|
|
|
|
// typed configuration in element -> tree of untyped nodes
|
|
|
|
// untyped nodes -> nodes augmented with metadata such as kind (inferred from element)
|
|
|
|
// "typed" nodes -> environment variables with default values (determined by type/kind)
|
|
|
|
func Encode(element interface{}) ([]parser.Flat, error) {
|
|
|
|
if element == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2019-06-21 08:08:04 +00:00
|
|
|
node, err := parser.EncodeToNode(element, parser.DefaultRootName, false)
|
2019-06-17 09:48:05 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = parser.AddMetadata(element, node)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return parser.EncodeToFlat(element, node, parser.FlatOpts{Case: "upper", Separator: "_"})
|
|
|
|
}
|
2019-06-21 08:08:04 +00:00
|
|
|
|
|
|
|
func checkPrefix(prefix string) error {
|
|
|
|
prefixPattern := `[a-zA-Z0-9]+_`
|
|
|
|
matched, err := regexp.MatchString(prefixPattern, prefix)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if !matched {
|
|
|
|
return fmt.Errorf("invalid prefix %q, the prefix pattern must match the following pattern: %s", prefix, prefixPattern)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|