-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.go
85 lines (69 loc) · 1.86 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
package main
import (
"fmt"
"io/ioutil"
"sort"
"gopkg.in/yaml.v2"
)
// Config represents the structure of the yaml file
type Config struct {
URL string `yaml:"url"`
Packages map[string]Package `yaml:"packages"`
}
// Package details the options available for each repo
type Package struct {
Repo string `yaml:"repo"`
}
// ensureAlphabetical checks that the packages are listed alphabetically in the configuration.
func ensureAlphabetical(data []byte) bool {
// A yaml.MapSlice perservers ordering of keys: https://godoc.org/gopkg.in/yaml.v2#MapSlice
var c struct {
Packages yaml.MapSlice `yaml:"packages"`
}
if err := yaml.Unmarshal(data, &c); err != nil {
return false
}
packageNames := make([]string, 0, len(c.Packages))
for _, v := range c.Packages {
name, ok := v.Key.(string)
if !ok {
return false
}
packageNames = append(packageNames, name)
}
return sort.StringsAreSorted(packageNames)
}
// Parse takes a path to a yaml file and produces a parsed Config
func Parse(path string) (*Config, error) {
var (
err error
data []byte
c Config
)
if data, err = ioutil.ReadFile(path); err != nil {
return nil, err
}
if err = yaml.Unmarshal(data, &c); err != nil {
return nil, err
}
if !ensureAlphabetical(data) {
return nil, fmt.Errorf("packages in %s must be alphabetically ordered", path)
}
return &c, err
}
// convertToPackageInfo converts a Config object into a slice of PackageInfo objects
func convertToPackageInfo(config *Config) []PackageInfo {
var packages = []PackageInfo{}
for packageName, packageDetails := range config.Packages {
packages = append(
packages,
PackageInfo{
Name: packageName,
Repo: packageDetails.Repo,
CanonicalURL: config.URL + "/" + packageName,
GodocURL: "https://godoc.org/" + config.URL + "/" + packageName,
},
)
}
return packages
}