28
28
import argelbargel .jenkins .plugins .gitlab_branch_source .GitLabSCMBranchHead ;
29
29
import argelbargel .jenkins .plugins .gitlab_branch_source .Messages ;
30
30
import hudson .Extension ;
31
+ import hudson .model .Actionable ;
31
32
import hudson .model .Descriptor ;
33
+ import hudson .model .Item ;
32
34
import hudson .model .TopLevelItem ;
33
35
import hudson .model .View ;
34
36
import hudson .views .ViewJobFilter ;
35
37
import jenkins .scm .api .SCMHead ;
38
+ import jenkins .scm .api .metadata .PrimaryInstanceMetadataAction ;
36
39
import org .kohsuke .stapler .DataBoundConstructor ;
37
40
import org .kohsuke .stapler .DataBoundSetter ;
38
41
39
42
import java .util .List ;
40
43
41
44
45
+ @ SuppressWarnings ("unused" )
42
46
public class GitLabBranchFilter extends ViewJobFilter {
43
47
private boolean allowMergeRequests = true ;
48
+ private boolean defaultBranchOnly = false ;
44
49
45
50
@ DataBoundConstructor
46
51
public GitLabBranchFilter () { /* NOOP */ }
@@ -54,6 +59,16 @@ public boolean getAllowMergeRequests() {
54
59
return allowMergeRequests ;
55
60
}
56
61
62
+ @ DataBoundSetter
63
+ public void setDefaultBranchOnly (boolean value ) {
64
+ defaultBranchOnly = value ;
65
+ }
66
+
67
+ public boolean getDefaultBranchOnly () {
68
+ return defaultBranchOnly ;
69
+ }
70
+
71
+
57
72
@ Override
58
73
public List <TopLevelItem > filter (List <TopLevelItem > added , List <TopLevelItem > all , View filteringView ) {
59
74
for (TopLevelItem item : all ) {
@@ -62,13 +77,21 @@ public List<TopLevelItem> filter(List<TopLevelItem> added, List<TopLevelItem> al
62
77
}
63
78
64
79
SCMHead head = SCMHead .HeadByItem .findHead (item );
65
- if (head instanceof GitLabSCMBranchHead && ( allowMergeRequests || ! ((GitLabSCMBranchHead ) head ). hasMergeRequest () )) {
80
+ if (head instanceof GitLabSCMBranchHead && filter ( item ) && filter ((GitLabSCMBranchHead ) head )) {
66
81
added .add (item );
67
82
}
68
83
}
69
84
return added ;
70
85
}
71
86
87
+ private boolean filter (Item item ) {
88
+ return !(item instanceof Actionable ) || !defaultBranchOnly || ((Actionable ) item ).getAction (PrimaryInstanceMetadataAction .class ) != null ;
89
+ }
90
+
91
+ private boolean filter (GitLabSCMBranchHead head ) {
92
+ return allowMergeRequests || !head .hasMergeRequest ();
93
+ }
94
+
72
95
@ Extension (optional = true )
73
96
public static class DescriptorImpl extends Descriptor <ViewJobFilter > {
74
97
@ Override
0 commit comments