forked from dhamidi/leader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathload_config.go
58 lines (52 loc) · 1.41 KB
/
load_config.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
package main
import (
"os"
"path/filepath"
)
// LoadConfig loads all configuration files that are processed by leader.
type LoadConfig struct {
*Context
Start string
Home string
}
// NewLoadConfig creates a new instance of LoadConfig which loads
// configuration settings into the provided context.
func NewLoadConfig(ctx *Context, start string, home string) *LoadConfig {
return &LoadConfig{
Context: ctx,
Start: start,
Home: home,
}
}
// Execute scans all directories from the current directory up to the
// root directory for files called ".leaderrc". If such files exist,
// they are parsed as JSON sorted by distance: files further away from
// $HOME/.leaderrc are parsed later than files closer to
// $HOME/.leaderrc.
func (cmd *LoadConfig) Execute() error {
currentPath := cmd.Start
homeRC := filepath.Join(cmd.Home, ".leaderrc")
homeRCAdded := false
files := []string{}
for {
filename := filepath.Join(currentPath, ".leaderrc")
currentPath = filepath.Dir(currentPath)
if len(files) > 0 && filename == files[len(files)-1] {
break
}
if filename == homeRC {
homeRCAdded = true
}
files = append(files, filename)
}
if !homeRCAdded {
files = append(files, homeRC)
}
for i := len(files) - 1; i >= 0; i-- {
loadConfig := NewLoadConfigFile(cmd.Context, files[i])
if err := loadConfig.Execute(); err != nil && !os.IsNotExist(err) {
cmd.ErrorLogger.Print(err)
}
}
return nil
}