Skip to content
This repository was archived by the owner on Dec 10, 2019. It is now read-only.

Commit 6b78f32

Browse files
Karsten KrausKarsten Kraus
Karsten Kraus
authored and
Karsten Kraus
committed
added option to restrict view to default branch(es)
1 parent 50e80f1 commit 6b78f32

File tree

4 files changed

+29
-1
lines changed

4 files changed

+29
-1
lines changed

src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/views/GitLabBranchFilter.java

+24-1
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,24 @@
2828
import argelbargel.jenkins.plugins.gitlab_branch_source.GitLabSCMBranchHead;
2929
import argelbargel.jenkins.plugins.gitlab_branch_source.Messages;
3030
import hudson.Extension;
31+
import hudson.model.Actionable;
3132
import hudson.model.Descriptor;
33+
import hudson.model.Item;
3234
import hudson.model.TopLevelItem;
3335
import hudson.model.View;
3436
import hudson.views.ViewJobFilter;
3537
import jenkins.scm.api.SCMHead;
38+
import jenkins.scm.api.metadata.PrimaryInstanceMetadataAction;
3639
import org.kohsuke.stapler.DataBoundConstructor;
3740
import org.kohsuke.stapler.DataBoundSetter;
3841

3942
import java.util.List;
4043

4144

45+
@SuppressWarnings("unused")
4246
public class GitLabBranchFilter extends ViewJobFilter {
4347
private boolean allowMergeRequests = true;
48+
private boolean defaultBranchOnly = false;
4449

4550
@DataBoundConstructor
4651
public GitLabBranchFilter() { /* NOOP */ }
@@ -54,6 +59,16 @@ public boolean getAllowMergeRequests() {
5459
return allowMergeRequests;
5560
}
5661

62+
@DataBoundSetter
63+
public void setDefaultBranchOnly(boolean value) {
64+
defaultBranchOnly = value;
65+
}
66+
67+
public boolean getDefaultBranchOnly() {
68+
return defaultBranchOnly;
69+
}
70+
71+
5772
@Override
5873
public List<TopLevelItem> filter(List<TopLevelItem> added, List<TopLevelItem> all, View filteringView) {
5974
for (TopLevelItem item : all) {
@@ -62,13 +77,21 @@ public List<TopLevelItem> filter(List<TopLevelItem> added, List<TopLevelItem> al
6277
}
6378

6479
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)) {
6681
added.add(item);
6782
}
6883
}
6984
return added;
7085
}
7186

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+
7295
@Extension(optional = true)
7396
public static class DescriptorImpl extends Descriptor<ViewJobFilter> {
7497
@Override

src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/views/GitLabMergeRequestFilter.java

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
import java.util.List;
4040

4141

42+
@SuppressWarnings("unused")
4243
public class GitLabMergeRequestFilter extends ViewJobFilter {
4344
private boolean originOnly = false;
4445

src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/views/GitLabTagFilter.java

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
import java.util.List;
3939

4040

41+
@SuppressWarnings("unused")
4142
public class GitLabTagFilter extends ViewJobFilter {
4243
@DataBoundConstructor
4344
public GitLabTagFilter() { /* NOOP */ }

src/main/resources/argelbargel/jenkins/plugins/gitlab_branch_source/views/GitLabBranchFilter/config.jelly

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<?jelly escape-by-default='true'?>
33
<j:jelly xmlns:j="jelly:core" xmlns:f="/lib/form">
4+
<f:entry title="${%Show only default branch(es)}" field="defaultBranchOnly">
5+
<f:checkbox default="false"/>
6+
</f:entry>
47
<f:entry title="${%Show Branches with Merge Requests}" field="allowMergeRequests">
58
<f:checkbox default="true"/>
69
</f:entry>

0 commit comments

Comments
 (0)