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

Commit a5357e2

Browse files
frznlogicArgelbargel
authored andcommitted
WIP: Bump gitlab plugin (#53)
* pom.xml: Bump version of gitlab-plugin gitlab-plugin used in jenkins has been bumped upstream and this project should be compiled with it Signed-off-by: Oscar Andreasson <[email protected]> * pom.xml: workflow-step-api required for normal build Without workflow-step-api build breaks during a normal compilation. Signed-off-by: Oscar Andreasson <[email protected]> * GitLabConnectionProperty.getClient returns GitLabClient The GitLabConnectionProperty.getClient method now returns a GitLabClient instead of a GitLabApi meaning that several of the usages of the class needs to be rewritten slightly. Signed-off-by: Oscar Andreasson <[email protected]>
1 parent 79d9e27 commit a5357e2

File tree

4 files changed

+19
-15
lines changed

4 files changed

+19
-15
lines changed

pom.xml

+2-3
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<dependency>
6262
<groupId>org.jenkins-ci.plugins</groupId>
6363
<artifactId>gitlab-plugin</artifactId>
64-
<version>1.4.5</version>
64+
<version>1.5.3</version>
6565
</dependency>
6666
<dependency>
6767
<groupId>org.jenkins-ci.plugins</groupId>
@@ -118,7 +118,6 @@
118118
<groupId>org.jenkins-ci.plugins.workflow</groupId>
119119
<artifactId>workflow-scm-step</artifactId>
120120
<version>2.4</version>
121-
<scope>test</scope>
122121
</dependency>
123122

124123
<!-- by default 1.4 is installed which causes an StackOverflowError -->
@@ -269,4 +268,4 @@
269268
</plugins>
270269
</build>
271270

272-
</project>
271+
</project>

src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/SourceActions.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ private List<Action> retrieve(@Nonnull GitLabSCMHead head, @CheckForNull SCMHead
7676
linkAction = GitLabLinkAction.toMergeRequest(mr.getWebUrl());
7777
if (acceptMergeRequest(head)) {
7878
boolean removeSourceBranch = mr.getRemoveSourceBranch() || removeSourceBranch(head);
79-
actions.add(new GitLabSCMAcceptMergeRequestAction(mr.getProjectId(), mr.getId(), mr.getIid(), source.getSourceSettings().getMergeCommitMessage(), removeSourceBranch));
79+
actions.add(new GitLabSCMAcceptMergeRequestAction(mr, mr.getIid(), source.getSourceSettings().getMergeCommitMessage(), removeSourceBranch));
8080
}
8181
} else {
8282
linkAction = (head instanceof TagSCMHead) ? GitLabLinkAction.toTag(source.getProject(), head.getName()) : GitLabLinkAction.toBranch(source.getProject(), head.getName());

src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/actions/GitLabSCMAcceptMergeRequestAction.java

+13-8
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33

44
import com.dabsquared.gitlabjenkins.connection.GitLabConnectionProperty;
5-
import com.dabsquared.gitlabjenkins.gitlab.api.GitLabApi;
5+
import com.dabsquared.gitlabjenkins.gitlab.api.GitLabClient;
6+
import argelbargel.jenkins.plugins.gitlab_branch_source.api.GitLabMergeRequest;
7+
import com.dabsquared.gitlabjenkins.gitlab.api.model.MergeRequest;
68
import hudson.model.InvisibleAction;
79
import hudson.model.Run;
810
import hudson.model.TaskListener;
@@ -17,27 +19,30 @@
1719
public final class GitLabSCMAcceptMergeRequestAction extends InvisibleAction implements Serializable {
1820
private static final Logger LOGGER = Logger.getLogger(GitLabSCMAcceptMergeRequestAction.class.getName());
1921

20-
private final int projectId;
21-
private final int mergeRequestId;
22+
private final int mergeRequestID;
23+
private final int mergeRequestPID;
2224
private final int mergeRequestScopedId;
2325
private final String commitMessage;
2426
private final boolean removeSourceBranch;
2527

26-
public GitLabSCMAcceptMergeRequestAction(int projectId, int mergeRequestId, int mergeRequestScopedId, String commitMessage, boolean removeSourceBranch) {
27-
this.projectId = projectId;
28-
this.mergeRequestId = mergeRequestId;
28+
public GitLabSCMAcceptMergeRequestAction(GitLabMergeRequest MR, int mergeRequestScopedId, String commitMessage, boolean removeSourceBranch) {
29+
this.mergeRequestPID = MR.getProjectId();
30+
this.mergeRequestID = MR.getId();
2931
this.mergeRequestScopedId = mergeRequestScopedId;
3032
this.commitMessage = commitMessage;
3133
this.removeSourceBranch = removeSourceBranch;
3234
}
3335

3436
public void acceptMergeRequest(Run<?, ?> build, TaskListener listener) {
35-
GitLabApi client = GitLabConnectionProperty.getClient(build);
37+
MergeRequest mergeRequest = new MergeRequest();
38+
mergeRequest.setProjectId(mergeRequestPID);
39+
mergeRequest.setId(mergeRequestID);
40+
GitLabClient client = GitLabConnectionProperty.getClient(build);
3641
if (client == null) {
3742
listener.getLogger().format("cannot publish build-status pending as no gitlab-connection is configured!");
3843
} else {
3944
try {
40-
client.acceptMergeRequest(projectId, mergeRequestId, MessageFormat.format(commitMessage, mergeRequestScopedId, build.getFullDisplayName()), removeSourceBranch);
45+
client.acceptMergeRequest(mergeRequest, MessageFormat.format(commitMessage, mergeRequestScopedId, build.getFullDisplayName()), removeSourceBranch);
4146
} catch (Exception e) {
4247
listener.getLogger().format("failed to accept merge-request: " + e.getMessage());
4348
LOGGER.log(SEVERE, "failed to accept merge-request", e);

src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/actions/GitLabSCMBuildStatusPublisher.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
import com.dabsquared.gitlabjenkins.connection.GitLabConnectionConfig;
5-
import com.dabsquared.gitlabjenkins.gitlab.api.GitLabApi;
5+
import com.dabsquared.gitlabjenkins.gitlab.api.GitLabClient;
66
import com.dabsquared.gitlabjenkins.gitlab.api.model.BuildState;
77
import hudson.init.Terminator;
88
import hudson.model.Run;
@@ -86,7 +86,7 @@ private Message(String connectionName, Run<?, ?> run, int projectId, String hash
8686

8787
@Override
8888
public void run() {
89-
GitLabApi client = getClient(connectionName);
89+
GitLabClient client = getClient(connectionName);
9090
if (client == null) {
9191
LOGGER.log(WARNING, "cannot publish build-status pending as no gitlab-connection is configured!");
9292
} else {
@@ -98,7 +98,7 @@ public void run() {
9898
}
9999
}
100100

101-
private GitLabApi getClient(String connectionName) {
101+
private GitLabClient getClient(String connectionName) {
102102
GitLabConnectionConfig config = (GitLabConnectionConfig) Jenkins.getInstance().getDescriptor(GitLabConnectionConfig.class);
103103
return config != null ? config.getClient(connectionName) : null;
104104
}

0 commit comments

Comments
 (0)