-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiger.go
47 lines (39 loc) · 1.16 KB
/
configer.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
package configer
import (
"path/filepath"
"strings"
"github.com/golobby/config/v3"
"github.com/golobby/config/v3/pkg/feeder"
)
type Config interface {
Validate() error
}
// LoadConfig takes in multiple supported filepath names and reads the configs
// for them. LoadConfig will _always_ pull from the OS environment variables.
// Providing zero paths will only load from the ENV.
// Supported file types:
// - .env
// - .json
// - .yaml
func Load(c Config, paths ...string) error {
glc := config.New()
for _, path := range paths {
switch ext := strings.ToLower(filepath.Ext(path)); ext {
case ".json":
glc.AddFeeder(feeder.Json{Path: path})
case ".yaml", ".yml":
glc.AddFeeder(feeder.Yaml{Path: path})
case ".env":
glc.AddFeeder(feeder.DotEnv{Path: path})
}
}
// always add in default env; the OS environment variables should always have
// precedence over config files. According to golobby/config documentation:
// > Lately added feeders overrides early added ones
// This is why the Env feeder is added after ranging over the paths
glc.AddFeeder(feeder.Env{})
if err := glc.AddStruct(c).Feed(); err != nil {
return err
}
return c.Validate()
}