Skip to content

Commit 237ac81

Browse files
ecrupperwass3rw3rk
andauthored
feat: add sender rule for pipelines (#1206)
* refactor(pipeline): use server API types for pipeline and migrate compiler types * gci * feat: add sender rule for pipelines --------- Co-authored-by: David May <[email protected]>
1 parent a2b0d91 commit 237ac81

File tree

8 files changed

+114
-60
lines changed

8 files changed

+114
-60
lines changed

api/pipeline/compile.go

+20-8
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,14 @@ func prepareRuleData(c *gin.Context) *pipeline.RuleData {
119119
comment := c.Query("comment")
120120
// capture the event type parameter
121121
event := c.Query("event")
122+
// capture the instance parameter
123+
instance := c.Query("instance")
124+
// capture the label parameter
125+
labelSet := c.QueryArray("label")
122126
// capture the repo parameter
123127
ruleDataRepo := c.Query("repo")
128+
// capture the sender parameter
129+
sender := c.Query("sender")
124130
// capture the status type parameter
125131
status := c.Query("status")
126132
// capture the tag parameter
@@ -134,20 +140,26 @@ func prepareRuleData(c *gin.Context) *pipeline.RuleData {
134140
if len(branch) > 0 ||
135141
len(comment) > 0 ||
136142
len(event) > 0 ||
143+
len(instance) > 0 ||
144+
len(labelSet) > 0 ||
137145
len(pathSet) > 0 ||
138146
len(ruleDataRepo) > 0 ||
147+
len(sender) > 0 ||
139148
len(status) > 0 ||
140149
len(tag) > 0 ||
141150
len(target) > 0 {
142151
return &pipeline.RuleData{
143-
Branch: branch,
144-
Comment: comment,
145-
Event: event,
146-
Path: pathSet,
147-
Repo: ruleDataRepo,
148-
Status: status,
149-
Tag: tag,
150-
Target: target,
152+
Branch: branch,
153+
Comment: comment,
154+
Event: event,
155+
Instance: instance,
156+
Label: labelSet,
157+
Path: pathSet,
158+
Repo: ruleDataRepo,
159+
Sender: sender,
160+
Status: status,
161+
Tag: tag,
162+
Target: target,
151163
}
152164
}
153165

api/pipeline/compile_test.go

+22-16
Original file line numberDiff line numberDiff line change
@@ -26,24 +26,30 @@ func TestPrepareRuleData(t *testing.T) {
2626
{
2727
name: "all params provided",
2828
parameters: map[string]string{
29-
"branch": "main",
30-
"comment": "Test comment",
31-
"event": "push",
32-
"repo": "my-repo",
33-
"status": "success",
34-
"tag": "v1.0.0",
35-
"target": "production",
36-
"path": "README.md",
29+
"branch": "main",
30+
"comment": "Test comment",
31+
"event": "push",
32+
"instance": "vela-server",
33+
"label": "bug",
34+
"repo": "my-repo",
35+
"sender": "octocat",
36+
"status": "success",
37+
"tag": "v1.0.0",
38+
"target": "production",
39+
"path": "README.md",
3740
},
3841
want: &pipeline.RuleData{
39-
Branch: "main",
40-
Comment: "Test comment",
41-
Event: "push",
42-
Repo: "my-repo",
43-
Status: "success",
44-
Tag: "v1.0.0",
45-
Target: "production",
46-
Path: []string{"README.md"},
42+
Branch: "main",
43+
Comment: "Test comment",
44+
Event: "push",
45+
Instance: "vela-server",
46+
Label: []string{"bug"},
47+
Repo: "my-repo",
48+
Sender: "octocat",
49+
Status: "success",
50+
Tag: "v1.0.0",
51+
Target: "production",
52+
Path: []string{"README.md"},
4753
},
4854
},
4955
{

compiler/native/compile.go

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ func (c *client) Compile(ctx context.Context, v interface{}) (*pipeline.Build, *
6767
Event: event,
6868
Path: c.files,
6969
Repo: c.repo.GetFullName(),
70+
Sender: c.build.GetSender(),
7071
Tag: strings.TrimPrefix(c.build.GetRef(), "refs/tags/"),
7172
Target: c.build.GetDeploy(),
7273
Label: c.labels,

compiler/types/pipeline/ruleset.go

+10-2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ type (
3434
Event Ruletype `json:"event,omitempty" yaml:"event,omitempty"`
3535
Path Ruletype `json:"path,omitempty" yaml:"path,omitempty"`
3636
Repo Ruletype `json:"repo,omitempty" yaml:"repo,omitempty"`
37+
Sender Ruletype `json:"sender,omitempty" yaml:"sender,omitempty"`
3738
Status Ruletype `json:"status,omitempty" yaml:"status,omitempty"`
3839
Tag Ruletype `json:"tag,omitempty" yaml:"tag,omitempty"`
3940
Target Ruletype `json:"target,omitempty" yaml:"target,omitempty"`
@@ -56,6 +57,7 @@ type (
5657
Event string `json:"event,omitempty" yaml:"event,omitempty"`
5758
Path []string `json:"path,omitempty" yaml:"path,omitempty"`
5859
Repo string `json:"repo,omitempty" yaml:"repo,omitempty"`
60+
Sender string `json:"sender,omitempty" yaml:"sender,omitempty"`
5961
Status string `json:"status,omitempty" yaml:"status,omitempty"`
6062
Tag string `json:"tag,omitempty" yaml:"tag,omitempty"`
6163
Target string `json:"target,omitempty" yaml:"target,omitempty"`
@@ -113,6 +115,7 @@ func (r *Rules) Empty() bool {
113115
len(r.Event) == 0 &&
114116
len(r.Path) == 0 &&
115117
len(r.Repo) == 0 &&
118+
len(r.Sender) == 0 &&
116119
len(r.Status) == 0 &&
117120
len(r.Tag) == 0 &&
118121
len(r.Target) == 0 &&
@@ -168,6 +171,11 @@ func (r *Rules) Match(from *RuleData, matcher, op string) (bool, error) {
168171
return false, err
169172
}
170173

174+
matchSender, err := r.Sender.MatchSingle(from.Sender, matcher, op)
175+
if err != nil {
176+
return false, err
177+
}
178+
171179
matchTag, err := r.Tag.MatchSingle(from.Tag, matcher, op)
172180
if err != nil {
173181
return false, err
@@ -190,9 +198,9 @@ func (r *Rules) Match(from *RuleData, matcher, op string) (bool, error) {
190198

191199
switch op {
192200
case constants.OperatorOr:
193-
return (matchBranch || matchComment || matchEvent || matchPath || matchRepo || matchTag || matchTarget || matchLabel || matchInstance || status), nil
201+
return (matchBranch || matchComment || matchEvent || matchPath || matchRepo || matchSender || matchTag || matchTarget || matchLabel || matchInstance || status), nil
194202
default:
195-
return (matchBranch && matchComment && matchEvent && matchPath && matchRepo && matchTag && matchTarget && matchLabel && matchInstance && status), nil
203+
return (matchBranch && matchComment && matchEvent && matchPath && matchRepo && matchSender && matchTag && matchTarget && matchLabel && matchInstance && status), nil
196204
}
197205
}
198206

compiler/types/pipeline/ruleset_test.go

+5
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,11 @@ func TestPipeline_Ruleset_Match(t *testing.T) {
7979
data: &RuleData{Branch: "dev", Comment: "ok to test", Event: "push", Repo: "octocat/hello-world", Status: "failure", Tag: "refs/heads/main", Target: ""},
8080
want: true,
8181
},
82+
{
83+
ruleset: &Ruleset{If: Rules{Sender: []string{"octocat"}}, Operator: "and"},
84+
data: &RuleData{Branch: "dev", Comment: "ok to test", Event: "push", Repo: "octocat/hello-world", Sender: "octocat", Status: "pending", Tag: "refs/heads/main", Target: ""},
85+
want: true,
86+
},
8287
// If with or operator
8388
{
8489
ruleset: &Ruleset{If: Rules{Branch: []string{"main"}, Event: []string{"push"}}, Operator: "or"},

compiler/types/yaml/ruleset.go

+5
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ type (
2727
Event []string `yaml:"event,omitempty,flow" json:"event,omitempty" jsonschema:"description=Limits the execution of a step to matching build events.\nReference: https://go-vela.github.io/docs/reference/yaml/steps/#the-ruleset-key"`
2828
Path []string `yaml:"path,omitempty,flow" json:"path,omitempty" jsonschema:"description=Limits the execution of a step to matching files changed in a repository.\nReference: https://go-vela.github.io/docs/reference/yaml/steps/#the-ruleset-key"`
2929
Repo []string `yaml:"repo,omitempty,flow" json:"repo,omitempty" jsonschema:"description=Limits the execution of a step to matching repos.\nReference: https://go-vela.github.io/docs/reference/yaml/steps/#the-ruleset-key"`
30+
Sender []string `yaml:"sender,omitempty,flow" json:"sender,omitempty" jsonschema:"description=Limits the execution of a step to matching build senders.\nReference: https://go-vela.github.io/docs/reference/yaml/steps/#the-ruleset-key"`
3031
Status []string `yaml:"status,omitempty,flow" json:"status,omitempty" jsonschema:"enum=[failure],enum=[success],description=Limits the execution of a step to matching build statuses.\nReference: https://go-vela.github.io/docs/reference/yaml/steps/#the-ruleset-key"`
3132
Tag []string `yaml:"tag,omitempty,flow" json:"tag,omitempty" jsonschema:"description=Limits the execution of a step to matching build tag references.\nReference: https://go-vela.github.io/docs/reference/yaml/steps/#the-ruleset-key"`
3233
Target []string `yaml:"target,omitempty,flow" json:"target,omitempty" jsonschema:"description=Limits the execution of a step to matching build deployment targets.\nReference: https://go-vela.github.io/docs/reference/yaml/steps/#the-ruleset-key"`
@@ -83,6 +84,7 @@ func (r *Ruleset) UnmarshalYAML(unmarshal func(interface{}) error) error {
8384
advanced.If.Event = append(advanced.If.Event, simple.Event...)
8485
advanced.If.Path = append(advanced.If.Path, simple.Path...)
8586
advanced.If.Repo = append(advanced.If.Repo, simple.Repo...)
87+
advanced.If.Sender = append(advanced.If.Sender, simple.Sender...)
8688
advanced.If.Status = append(advanced.If.Status, simple.Status...)
8789
advanced.If.Tag = append(advanced.If.Tag, simple.Tag...)
8890
advanced.If.Target = append(advanced.If.Target, simple.Target...)
@@ -114,6 +116,7 @@ func (r *Rules) ToPipeline() *pipeline.Rules {
114116
Event: r.Event,
115117
Path: r.Path,
116118
Repo: r.Repo,
119+
Sender: r.Sender,
117120
Status: r.Status,
118121
Tag: r.Tag,
119122
Target: r.Target,
@@ -131,6 +134,7 @@ func (r *Rules) UnmarshalYAML(unmarshal func(interface{}) error) error {
131134
Event raw.StringSlice
132135
Path raw.StringSlice
133136
Repo raw.StringSlice
137+
Sender raw.StringSlice
134138
Status raw.StringSlice
135139
Tag raw.StringSlice
136140
Target raw.StringSlice
@@ -145,6 +149,7 @@ func (r *Rules) UnmarshalYAML(unmarshal func(interface{}) error) error {
145149
r.Comment = rules.Comment
146150
r.Path = rules.Path
147151
r.Repo = rules.Repo
152+
r.Sender = rules.Sender
148153
r.Status = rules.Status
149154
r.Tag = rules.Tag
150155
r.Target = rules.Target

compiler/types/yaml/ruleset_test.go

+48-34
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ func TestYaml_Ruleset_ToPipeline(t *testing.T) {
2626
Event: []string{"push", "pull_request:labeled"},
2727
Path: []string{"foo.txt"},
2828
Repo: []string{"github/octocat"},
29+
Sender: []string{"octocat"},
2930
Status: []string{"success"},
3031
Tag: []string{"v0.1.0"},
3132
Target: []string{"production"},
@@ -38,6 +39,7 @@ func TestYaml_Ruleset_ToPipeline(t *testing.T) {
3839
Event: []string{"pull_request"},
3940
Path: []string{"bar.txt"},
4041
Repo: []string{"github/octocat"},
42+
Sender: []string{"octokitty"},
4143
Status: []string{"failure"},
4244
Tag: []string{"v0.2.0"},
4345
Target: []string{"production"},
@@ -54,6 +56,7 @@ func TestYaml_Ruleset_ToPipeline(t *testing.T) {
5456
Event: []string{"push", "pull_request:labeled"},
5557
Path: []string{"foo.txt"},
5658
Repo: []string{"github/octocat"},
59+
Sender: []string{"octocat"},
5760
Status: []string{"success"},
5861
Tag: []string{"v0.1.0"},
5962
Target: []string{"production"},
@@ -66,6 +69,7 @@ func TestYaml_Ruleset_ToPipeline(t *testing.T) {
6669
Event: []string{"pull_request"},
6770
Path: []string{"bar.txt"},
6871
Repo: []string{"github/octocat"},
72+
Sender: []string{"octokitty"},
6973
Status: []string{"failure"},
7074
Tag: []string{"v0.2.0"},
7175
Target: []string{"production"},
@@ -98,14 +102,17 @@ func TestYaml_Ruleset_UnmarshalYAML(t *testing.T) {
98102
file: "testdata/ruleset_simple.yml",
99103
want: &Ruleset{
100104
If: Rules{
101-
Branch: []string{"main"},
102-
Comment: []string{"test comment"},
103-
Event: []string{"push"},
104-
Path: []string{"foo.txt"},
105-
Repo: []string{"github/octocat"},
106-
Status: []string{"success"},
107-
Tag: []string{"v0.1.0"},
108-
Target: []string{"production"},
105+
Branch: []string{"main"},
106+
Comment: []string{"test comment"},
107+
Event: []string{"push"},
108+
Instance: []string{"vela-server"},
109+
Label: []string{"bug"},
110+
Path: []string{"foo.txt"},
111+
Repo: []string{"github/octocat"},
112+
Sender: []string{"octocat"},
113+
Status: []string{"success"},
114+
Tag: []string{"v0.1.0"},
115+
Target: []string{"production"},
109116
},
110117
Matcher: "filepath",
111118
Operator: "and",
@@ -172,26 +179,30 @@ func TestYaml_Rules_ToPipeline(t *testing.T) {
172179
}{
173180
{
174181
rules: &Rules{
175-
Branch: []string{"main"},
176-
Comment: []string{"test comment"},
177-
Event: []string{"push", "pull_request:labeled"},
178-
Path: []string{"foo.txt"},
179-
Repo: []string{"github/octocat"},
180-
Status: []string{"success"},
181-
Tag: []string{"v0.1.0"},
182-
Target: []string{"production"},
183-
Label: []string{"enhancement"},
182+
Branch: []string{"main"},
183+
Comment: []string{"test comment"},
184+
Event: []string{"push", "pull_request:labeled"},
185+
Instance: []string{"vela-server"},
186+
Path: []string{"foo.txt"},
187+
Repo: []string{"github/octocat"},
188+
Sender: []string{"octocat"},
189+
Status: []string{"success"},
190+
Tag: []string{"v0.1.0"},
191+
Target: []string{"production"},
192+
Label: []string{"enhancement"},
184193
},
185194
want: &pipeline.Rules{
186-
Branch: []string{"main"},
187-
Comment: []string{"test comment"},
188-
Event: []string{"push", "pull_request:labeled"},
189-
Path: []string{"foo.txt"},
190-
Repo: []string{"github/octocat"},
191-
Status: []string{"success"},
192-
Tag: []string{"v0.1.0"},
193-
Target: []string{"production"},
194-
Label: []string{"enhancement"},
195+
Branch: []string{"main"},
196+
Comment: []string{"test comment"},
197+
Event: []string{"push", "pull_request:labeled"},
198+
Instance: []string{"vela-server"},
199+
Path: []string{"foo.txt"},
200+
Repo: []string{"github/octocat"},
201+
Sender: []string{"octocat"},
202+
Status: []string{"success"},
203+
Tag: []string{"v0.1.0"},
204+
Target: []string{"production"},
205+
Label: []string{"enhancement"},
195206
},
196207
},
197208
}
@@ -223,14 +234,17 @@ func TestYaml_Rules_UnmarshalYAML(t *testing.T) {
223234
failure: false,
224235
file: "testdata/ruleset_simple.yml",
225236
want: &Rules{
226-
Branch: []string{"main"},
227-
Comment: []string{"test comment"},
228-
Event: []string{"push"},
229-
Path: []string{"foo.txt"},
230-
Repo: []string{"github/octocat"},
231-
Status: []string{"success"},
232-
Tag: []string{"v0.1.0"},
233-
Target: []string{"production"},
237+
Branch: []string{"main"},
238+
Comment: []string{"test comment"},
239+
Event: []string{"push"},
240+
Instance: []string{"vela-server"},
241+
Label: []string{"bug"},
242+
Path: []string{"foo.txt"},
243+
Repo: []string{"github/octocat"},
244+
Sender: []string{"octocat"},
245+
Status: []string{"success"},
246+
Tag: []string{"v0.1.0"},
247+
Target: []string{"production"},
234248
},
235249
},
236250
{

compiler/types/yaml/testdata/ruleset_simple.yml

+3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,11 @@ branch: main
33
comment: "test comment"
44
continue: true
55
event: push
6+
instance: vela-server
7+
label: bug
68
path: foo.txt
79
repo: github/octocat
10+
sender: octocat
811
status: success
912
tag: v0.1.0
1013
target: production

0 commit comments

Comments
 (0)