forked from rhysd/actionlint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rule_glob.go
70 lines (64 loc) · 1.88 KB
/
rule_glob.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
package actionlint
// RuleGlob is a rule to check glob syntax.
// https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet
type RuleGlob struct {
RuleBase
}
// NewRuleGlob creates new RuleGlob instance.
func NewRuleGlob() *RuleGlob {
return &RuleGlob{
RuleBase: RuleBase{
name: "glob",
desc: "Checks for glob syntax used in branch names, tags, and paths",
},
}
}
// VisitWorkflowPre is callback when visiting Workflow node before visiting its children.
func (rule *RuleGlob) VisitWorkflowPre(n *Workflow) error {
for _, e := range n.On {
if w, ok := e.(*WebhookEvent); ok {
rule.checkGitRefGlobs(w.Branches)
rule.checkGitRefGlobs(w.BranchesIgnore)
rule.checkGitRefGlobs(w.Tags)
rule.checkGitRefGlobs(w.TagsIgnore)
rule.checkFilePathGlobs(w.Paths)
rule.checkFilePathGlobs(w.PathsIgnore)
}
}
return nil
}
func (rule *RuleGlob) checkGitRefGlobs(filter *WebhookEventFilter) {
if filter == nil {
return
}
for _, v := range filter.Values {
// Empty value is already checked by parser. Avoid duplicate errors
if v.Value != "" {
rule.globErrors(ValidateRefGlob(v.Value), v.Pos, v.Quoted)
}
}
}
func (rule *RuleGlob) checkFilePathGlobs(filter *WebhookEventFilter) {
if filter == nil {
return
}
for _, v := range filter.Values {
// Empty value is already checked by parser. Avoid duplicate errors
if v.Value != "" {
rule.globErrors(ValidatePathGlob(v.Value), v.Pos, v.Quoted)
}
}
}
func (rule *RuleGlob) globErrors(errs []InvalidGlobPattern, pos *Pos, quoted bool) {
for i := range errs {
err := &errs[i]
p := *pos
if quoted {
p.Col++
}
if err.Column != 0 {
p.Col += err.Column - 1
}
rule.Errorf(&p, "%s. note: filter pattern syntax is explained at https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet", err.Message)
}
}