-
Notifications
You must be signed in to change notification settings - Fork 800
/
loader.go
136 lines (115 loc) · 3.67 KB
/
loader.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
// Copyright (c) 2017 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
package config
import (
"fmt"
"gopkg.in/validator.v2"
"gopkg.in/yaml.v2"
"io/ioutil"
"log"
"os"
)
const (
// EnvKeyRoot the environment variable key for runtime root dir
EnvKeyRoot = "CADENCE_ROOT"
// EnvKeyConfigDir the environment variable key for config dir
EnvKeyConfigDir = "CADENCE_CONFIG_DIR"
// EnvKeyEnvironment is the environment variable key for environment
EnvKeyEnvironment = "CADENCE_ENVIRONMENT"
// EnvKeyAvailabilityZone is the environment variable key for AZ
EnvKeyAvailabilityZone = "CADENCE_AVAILABILTY_ZONE"
)
const (
baseFile = "base.yaml"
envDevelopment = "development"
defaultConfigDir = "config"
)
// Load loads the configuration from a set of
// yaml config files found in the config directory
//
// The loader first fetches the set of files matching
// a pre-determined naming convention, then sorts
// them by hierarchy order and after that, simply
// loads the files one after another with the
// key/values in the later files overriding the key/values
// in the earlier files
//
// The hierarchy is as follows from lowest to highest
//
// base.yaml
// env.yaml -- environment is one of the input params ex-development
// env_az.yaml -- zone is another input param
//
func Load(env string, configDir string, zone string, config interface{}) error {
if len(env) == 0 {
env = envDevelopment
}
if len(configDir) == 0 {
configDir = defaultConfigDir
}
files, err := getConfigFiles(env, configDir, zone)
if err != nil {
return err
}
log.Printf("Loading configFiles=%v\n", files)
for _, f := range files {
data, err := ioutil.ReadFile(f)
if err != nil {
return err
}
err = yaml.Unmarshal(data, config)
if err != nil {
return err
}
}
return validator.Validate(config)
}
// getConfigFiles returns the list of config files to
// process in the hierarchy order
func getConfigFiles(env string, configDir string, zone string) ([]string, error) {
candidates := []string{
path(configDir, baseFile),
path(configDir, file(env, "yaml")),
}
if len(zone) > 0 {
f := file(concat(env, zone), "yaml")
candidates = append(candidates, path(configDir, f))
}
var result []string
for _, c := range candidates {
if _, err := os.Stat(c); err != nil {
continue
}
result = append(result, c)
}
if len(result) == 0 {
return nil, fmt.Errorf("no config files found within %v", configDir)
}
return result, nil
}
func concat(a, b string) string {
return a + "_" + b
}
func file(name string, suffix string) string {
return name + "." + suffix
}
func path(dir string, file string) string {
return dir + "/" + file
}