-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.go
116 lines (96 loc) · 2.33 KB
/
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
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
package grit
import (
"fmt"
"os"
"path"
"strings"
"github.com/BurntSushi/toml"
"github.com/jmalloc/grit/pathutil"
)
const (
// DefaultBranchName is used when cloning an empty repository for the
// initial setup.
DefaultBranchName = "main"
)
// Config holds Grit configuration.
type Config struct {
Clone struct {
Root string `toml:"root"`
Sources map[string]EndpointTemplate `toml:"sources"`
DefaultBranch string `toml:"default-branch"`
} `toml:"clone"`
Index struct {
Paths []string `toml:"paths"`
Store string `toml:"store"`
} `toml:"index"`
}
// LoadConfig loads the Grit configuration from a file.
func LoadConfig(file string) (c Config, err error) {
file, err = pathutil.Resolve(file)
if err != nil {
return
}
meta, err := toml.DecodeFile(file, &c)
if err != nil && !os.IsNotExist(err) {
return
}
if keys := meta.Undecoded(); len(keys) != 0 {
var s []string
for _, k := range keys {
s = append(s, k.String())
}
err = fmt.Errorf(
"grit config: unrecognized keys: %s",
strings.Join(s, ", "),
)
return
}
dir := path.Dir(file)
err = c.normalize(dir)
return
}
func (c *Config) normalize(base string) error {
if err := c.normalizeClone(base); err != nil {
return err
}
return c.normalizeIndex(base)
}
func (c *Config) normalizeClone(base string) error {
if err := resolveWithDefault(&c.Clone.Root, base, "~/grit"); err != nil {
return err
}
// add github to the source list if it's not already present ...
if _, ok := c.Clone.Sources["github"]; !ok {
if c.Clone.Sources == nil {
c.Clone.Sources = map[string]EndpointTemplate{}
}
c.Clone.Sources["github"] = "[email protected]:{{slug}}.git"
}
// check the source URLs are valid ...
for _, t := range c.Clone.Sources {
if err := t.Validate(); err != nil {
return err
}
}
return nil
}
func (c *Config) normalizeIndex(base string) error {
if len(c.Index.Paths) == 0 {
c.Index.Paths = []string{c.Clone.Root}
}
for i, p := range c.Index.Paths {
r, err := pathutil.ResolveFrom(base, p)
if err != nil {
return err
}
c.Index.Paths[i] = r
}
return resolveWithDefault(&c.Index.Store, c.Clone.Root, "index.v2")
}
func resolveWithDefault(p *string, base, def string) (err error) {
if *p == "" {
*p = def
}
*p, err = pathutil.ResolveFrom(base, *p)
return
}