-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.go
221 lines (177 loc) · 4.41 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
package main
import (
"bytes"
"io/ioutil"
"regexp"
"strings"
"text/template"
"github.com/Masterminds/sprig"
log "github.com/sirupsen/logrus"
"gopkg.in/yaml.v2"
)
type (
Config struct {
Projects ConfigProjects `yaml:"projects"`
}
ConfigProjects struct {
Docker []ConfigProjectDocker `yaml:"docker"`
Github []ConfigProjectGithub `yaml:"github"`
}
ConfigProjectCommon struct {
Name string `yaml:"name"`
Filter ConfigProjectCommonFilter `yaml:"filter"`
Mark []string `yaml:"mark"`
Cve ConfigProjectCommonCve `yaml:"cve"`
}
ConfigProjectCommonCve struct {
Vendor string
Product string
}
ConfigProjectCommonFilter struct {
Whitelist string
whitelistRegexp *regexp.Regexp
Blacklist string
blacklistRegexp *regexp.Regexp
Replacement []ConfigProjectCommonReplacement `yaml:"replacement"`
}
ConfigProjectCommonReplacement struct {
Match string
matchRegexp *regexp.Regexp
Replace string
}
ConfigProjectDocker struct {
ConfigProjectCommon `yaml:",inline"`
Image string
Registry ConfigProjectDockerRegistry `yaml:"registry"`
Limit *int `yaml:"limit"`
}
ConfigProjectDockerRegistry struct {
Url *string
Username string
Password string
}
ConfigProjectGithub struct {
ConfigProjectCommon `yaml:",inline"`
Project string `yaml:"project"`
FetchType *string `yaml:"fetchType"`
Limit *int `yaml:"limit"`
}
)
func (p *ConfigProjectCommon) ProcessAndValidateVersion(val string) (version string, valid bool) {
version = val
valid = true
// replacements
for _, replacement := range p.Filter.Replacement {
version = replacement.Apply(version)
}
// whitelist
if p.Filter.Whitelist != "" {
// cached regexp compilation
if p.Filter.whitelistRegexp == nil {
p.Filter.whitelistRegexp = regexp.MustCompile(strings.TrimSpace(p.Filter.Whitelist))
}
valid = p.Filter.whitelistRegexp.MatchString(version)
}
// blacklist
if p.Filter.Blacklist != "" {
// cached regexp compilation
if p.Filter.blacklistRegexp == nil {
p.Filter.blacklistRegexp = regexp.MustCompile(strings.TrimSpace(p.Filter.Blacklist))
}
if p.Filter.blacklistRegexp.MatchString(version) {
valid = false
}
}
return
}
func (r *ConfigProjectCommonReplacement) Apply(val string) string {
if r.matchRegexp == nil {
r.matchRegexp = regexp.MustCompile(r.Match)
}
val = r.matchRegexp.ReplaceAllString(val, r.Replace)
return val
}
func (p *ConfigProjectCommon) CveReportClient() (client *CveClient) {
if opts.Cve.Url != "" && p.Cve.Vendor != "" && p.Cve.Product != "" {
client = NewCveClient(p.Cve)
}
return
}
func (p *ConfigProjectCommon) IsReleaseMarked(val string) (ret bool) {
ret = false
for _, mark := range p.Mark {
if strings.EqualFold(mark, val) {
ret = true
break
}
}
return
}
func (p *ConfigProjectDocker) GetRegistry() (url, username, password string) {
if p.Registry.Url != nil {
url = *p.Registry.Url
username = p.Registry.Username
password = p.Registry.Password
} else {
url = "https://registry-1.docker.io/"
username = ""
password = ""
}
return
}
func (p *ConfigProjectGithub) GetOwnerAndRepository() (owner, repository string) {
parts := strings.SplitN(p.Project, "/", 2)
owner = parts[0]
repository = parts[1]
return
}
func (p *ConfigProjectGithub) GetFetchType() string {
fetchtype := "releases"
if p.FetchType != nil {
switch *p.FetchType {
case "tag":
case "tags":
fetchtype = "tags"
}
}
return fetchtype
}
func (p *ConfigProjectDocker) GetLimit() int {
if p.Limit != nil {
return *p.Limit
} else {
return opts.Docker.Limit
}
}
func (p *ConfigProjectGithub) GetLimit() int {
if p.Limit != nil {
return *p.Limit
} else {
return opts.GitHub.Limit
}
}
func NewAppConfig(path string) (config Config) {
var configRaw []byte
config = Config{}
log.Infof("reading configuration from file %v", path)
/* #nosec G304 */
if data, err := ioutil.ReadFile(path); err == nil {
configRaw = data
} else {
panic(err)
}
log.Info("preprocessing with template engine")
var tmplBytes bytes.Buffer
parsedConfig, err := template.New("yaml").Funcs(sprig.TxtFuncMap()).Parse(string(configRaw))
if err != nil {
panic(err)
}
if err := parsedConfig.Execute(&tmplBytes, nil); err != nil {
panic(err)
}
log.Info("parsing configuration")
if err := yaml.Unmarshal(tmplBytes.Bytes(), &config); err != nil {
panic(err)
}
return
}