Skip to content

Commit c6bdb2a

Browse files
committed
Retrieve GitlabHook data in upstream builds if available
1 parent b302679 commit c6bdb2a

File tree

5 files changed

+51
-23
lines changed

5 files changed

+51
-23
lines changed

src/main/java/com/dabsquared/gitlabjenkins/environment/GitLabEnvironmentContributor.java

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
11
package com.dabsquared.gitlabjenkins.environment;
22

33
import com.dabsquared.gitlabjenkins.cause.GitLabWebHookCause;
4+
import com.dabsquared.gitlabjenkins.util.CauseUtil;
45
import hudson.EnvVars;
56
import hudson.Extension;
67
import hudson.matrix.MatrixRun;
78
import hudson.matrix.MatrixBuild;
9+
import hudson.model.Cause;
810
import hudson.model.EnvironmentContributor;
911
import hudson.model.Run;
1012
import hudson.model.TaskListener;
1113

1214
import javax.annotation.Nonnull;
1315
import java.io.IOException;
16+
import java.util.List;
1417

1518
/**
1619
* @author Robin Müller
@@ -19,15 +22,17 @@
1922
public class GitLabEnvironmentContributor extends EnvironmentContributor {
2023
@Override
2124
public void buildEnvironmentFor(@Nonnull Run r, @Nonnull EnvVars envs, @Nonnull TaskListener listener) throws IOException, InterruptedException {
22-
GitLabWebHookCause cause = null;
25+
List<Cause> causes = null;
2326
if (r instanceof MatrixRun) {
2427
MatrixBuild parent = ((MatrixRun)r).getParentBuild();
2528
if (parent != null) {
26-
cause = (GitLabWebHookCause) parent.getCause(GitLabWebHookCause.class);
29+
causes = parent.getCauses();
2730
}
2831
} else {
29-
cause = (GitLabWebHookCause) r.getCause(GitLabWebHookCause.class);
32+
causes = r.getCauses();
3033
}
34+
35+
GitLabWebHookCause cause = CauseUtil.findCauseFromUpstreamCauses(causes, GitLabWebHookCause.class);
3136
if (cause != null) {
3237
envs.overrideAll(cause.getData().getBuildVariables());
3338
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
package com.dabsquared.gitlabjenkins.util;
2+
3+
import hudson.model.Cause;
4+
5+
import java.util.List;
6+
7+
/**
8+
* @author Sami Makki
9+
*/
10+
public class CauseUtil {
11+
12+
public static <T extends Cause> T findCauseFromUpstreamCauses(List<Cause> causes, Class<T> type) {
13+
for (Cause cause : causes) {
14+
if (type.isInstance(cause)) {
15+
return type.cast(cause);
16+
}
17+
if (cause instanceof Cause.UpstreamCause) {
18+
List<Cause> upCauses = ((Cause.UpstreamCause) cause).getUpstreamCauses(); // Non null, returns empty list when none are set
19+
for (Cause upCause : upCauses) {
20+
if (type.isInstance(upCause)) {
21+
return type.cast(upCause);
22+
}
23+
}
24+
T gitlabCause = findCauseFromUpstreamCauses(upCauses, type);
25+
if (gitlabCause != null) {
26+
return gitlabCause;
27+
}
28+
}
29+
}
30+
return null;
31+
}
32+
}

src/main/java/com/dabsquared/gitlabjenkins/util/CommitStatusUpdater.java

+7-18
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,12 @@
33

44
import com.dabsquared.gitlabjenkins.cause.CauseData;
55
import com.dabsquared.gitlabjenkins.cause.GitLabWebHookCause;
6-
import com.dabsquared.gitlabjenkins.connection.GitLabConnection;
76
import com.dabsquared.gitlabjenkins.connection.GitLabConnectionProperty;
87
import com.dabsquared.gitlabjenkins.gitlab.api.GitLabClient;
98
import com.dabsquared.gitlabjenkins.gitlab.api.model.BuildState;
109
import com.dabsquared.gitlabjenkins.workflow.GitLabBranchBuild;
1110
import hudson.EnvVars;
1211
import hudson.model.*;
13-
import hudson.model.Cause.UpstreamCause;
1412
import hudson.plugins.git.Revision;
1513
import hudson.plugins.git.util.Build;
1614
import hudson.plugins.git.util.BuildData;
@@ -242,23 +240,14 @@ private static void addGitLabBranchBuild(List<GitLabBranchBuild> result, String
242240
}
243241

244242
private static List<GitLabBranchBuild> findBuildsFromUpstreamCauses(List<Cause> causes) {
245-
for (Cause cause : causes) {
246-
if (cause instanceof UpstreamCause) {
247-
List<Cause> upCauses = ((UpstreamCause) cause).getUpstreamCauses(); // Non null, returns empty list when none are set
248-
for (Cause upCause : upCauses) {
249-
if (upCause instanceof GitLabWebHookCause) {
250-
GitLabWebHookCause gitlabCause = (GitLabWebHookCause) upCause;
251-
return Collections.singletonList(
252-
new GitLabBranchBuild(gitlabCause.getData().getSourceProjectId().toString(),
253-
gitlabCause.getData().getLastCommit()));
254-
}
255-
}
256-
List<GitLabBranchBuild> builds = findBuildsFromUpstreamCauses(upCauses);
257-
if (!builds.isEmpty()) {
258-
return builds;
259-
}
260-
}
243+
244+
GitLabWebHookCause gitlabCause = CauseUtil.findCauseFromUpstreamCauses(causes, GitLabWebHookCause.class);
245+
246+
if (gitlabCause != null) {
247+
return Collections.singletonList(
248+
new GitLabBranchBuild(gitlabCause.getData().getSourceProjectId().toString(), gitlabCause.getData().getLastCommit()));
261249
}
250+
262251
return Collections.emptyList();
263252
}
264253

src/main/java/com/dabsquared/gitlabjenkins/workflow/AcceptGitLabMergeRequestStep.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
import javax.ws.rs.ProcessingException;
1010
import javax.ws.rs.WebApplicationException;
1111

12+
import com.dabsquared.gitlabjenkins.util.CauseUtil;
1213
import org.apache.commons.lang.StringUtils;
1314
import org.jenkinsci.plugins.workflow.steps.*;
1415

@@ -85,7 +86,7 @@ public static class AcceptGitLabMergeRequestStepExecution extends AbstractSynchr
8586

8687
@Override
8788
protected Void run() throws Exception {
88-
GitLabWebHookCause cause = run.getCause(GitLabWebHookCause.class);
89+
GitLabWebHookCause cause = CauseUtil.findCauseFromUpstreamCauses(run.getCauses(), GitLabWebHookCause.class);
8990
if (cause != null) {
9091
MergeRequest mergeRequest = cause.getData().getMergeRequest();
9192
if (mergeRequest != null) {

src/main/java/com/dabsquared/gitlabjenkins/workflow/AddGitLabMergeRequestCommentStep.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
import javax.ws.rs.ProcessingException;
1010
import javax.ws.rs.WebApplicationException;
1111

12+
import com.dabsquared.gitlabjenkins.util.CauseUtil;
1213
import org.apache.commons.lang.StringUtils;
1314
import org.jenkinsci.plugins.workflow.steps.AbstractSynchronousStepExecution;
1415
import org.jenkinsci.plugins.workflow.steps.Step;
@@ -72,7 +73,7 @@ public static class AddGitLabMergeRequestCommentStepExecution extends AbstractSy
7273

7374
@Override
7475
protected Void run() throws Exception {
75-
GitLabWebHookCause cause = run.getCause(GitLabWebHookCause.class);
76+
GitLabWebHookCause cause = CauseUtil.findCauseFromUpstreamCauses(run.getCauses(), GitLabWebHookCause.class);
7677
if (cause != null) {
7778
MergeRequest mergeRequest = cause.getData().getMergeRequest();
7879
if (mergeRequest != null) {

0 commit comments

Comments
 (0)