|
2 | 2 |
|
3 | 3 |
|
4 | 4 | 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; |
6 | 8 | import hudson.model.InvisibleAction;
|
7 | 9 | import hudson.model.Run;
|
8 | 10 | import hudson.model.TaskListener;
|
|
17 | 19 | public final class GitLabSCMAcceptMergeRequestAction extends InvisibleAction implements Serializable {
|
18 | 20 | private static final Logger LOGGER = Logger.getLogger(GitLabSCMAcceptMergeRequestAction.class.getName());
|
19 | 21 |
|
20 |
| - private final int projectId; |
21 |
| - private final int mergeRequestId; |
| 22 | + private final int mergeRequestID; |
| 23 | + private final int mergeRequestPID; |
22 | 24 | private final int mergeRequestScopedId;
|
23 | 25 | private final String commitMessage;
|
24 | 26 | private final boolean removeSourceBranch;
|
25 | 27 |
|
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(); |
29 | 31 | this.mergeRequestScopedId = mergeRequestScopedId;
|
30 | 32 | this.commitMessage = commitMessage;
|
31 | 33 | this.removeSourceBranch = removeSourceBranch;
|
32 | 34 | }
|
33 | 35 |
|
34 | 36 | 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); |
36 | 41 | if (client == null) {
|
37 | 42 | listener.getLogger().format("cannot publish build-status pending as no gitlab-connection is configured!");
|
38 | 43 | } else {
|
39 | 44 | try {
|
40 |
| - client.acceptMergeRequest(projectId, mergeRequestId, MessageFormat.format(commitMessage, mergeRequestScopedId, build.getFullDisplayName()), removeSourceBranch); |
| 45 | + client.acceptMergeRequest(mergeRequest, MessageFormat.format(commitMessage, mergeRequestScopedId, build.getFullDisplayName()), removeSourceBranch); |
41 | 46 | } catch (Exception e) {
|
42 | 47 | listener.getLogger().format("failed to accept merge-request: " + e.getMessage());
|
43 | 48 | LOGGER.log(SEVERE, "failed to accept merge-request", e);
|
|
0 commit comments