All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.aoju.bus.gitlab.IssuesApi Maven / Gradle / Ivy

/*********************************************************************************
 *                                                                               *
 * The MIT License (MIT)                                                         *
 *                                                                               *
 * Copyright (c) 2015-2022 aoju.org Greg Messner and other contributors.         *
 *                                                                               *
 * Permission is hereby granted, free of charge, to any person obtaining a copy  *
 * of this software and associated documentation files (the "Software"), to deal *
 * in the Software without restriction, including without limitation the rights  *
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell     *
 * copies of the Software, and to permit persons to whom the Software is         *
 * furnished to do so, subject to the following conditions:                      *
 *                                                                               *
 * The above copyright notice and this permission notice shall be included in    *
 * all copies or substantial portions of the Software.                           *
 *                                                                               *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR    *
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,      *
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE   *
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER        *
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, *
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN     *
 * THE SOFTWARE.                                                                 *
 *                                                                               *
 ********************************************************************************/
package org.aoju.bus.gitlab;

import org.aoju.bus.gitlab.models.*;

import javax.ws.rs.core.GenericType;
import javax.ws.rs.core.Response;
import java.util.Collections;
import java.util.Date;
import java.util.List;
import java.util.Optional;
import java.util.stream.Stream;

/**
 * This class provides an entry point to all the GitLab API Issue calls.
 *
 * @see Issues API at GitLab
 * @see Issue Links API at GitLab
 * @see Issues Statistics API at GitLab
 */
public class IssuesApi extends AbstractApi implements Constants {

    private static final int[] TIME_UNIT_MULTIPLIERS = {
            60 * 60 * 8 * 5 * 4, // 4 weeks = 1 month
            60 * 60 * 8 * 5,     // 5 days = 1 week
            60 * 60 * 8,         // 8 hours = 1 day
            60 * 60,             // 60 minutes = 1 hours
            60,                  // 60 seconds = 1 minute
            1
    };

    public IssuesApi(GitLabApi gitLabApi) {
        super(gitLabApi);
    }

    /**
     * Create a human readable duration string from seconds.
     *
     * @param durationSeconds the total number of seconds in the duration
     * @param includeMonths   when true will include months "mo", in the string otherwise
     *                        uses "4w" for each month
     * @return a human readable string representing the duration
     */
    public static final String toString(int durationSeconds, boolean includeMonths) {

        int seconds = durationSeconds;
        int months = (includeMonths ? seconds / TIME_UNIT_MULTIPLIERS[0] : 0);
        seconds -= months * TIME_UNIT_MULTIPLIERS[0];
        int weeks = seconds / TIME_UNIT_MULTIPLIERS[1];
        seconds -= weeks * TIME_UNIT_MULTIPLIERS[1];
        int days = seconds / TIME_UNIT_MULTIPLIERS[2];
        seconds -= days * TIME_UNIT_MULTIPLIERS[2];
        int hours = seconds / 3600;
        seconds -= hours * 3600;
        int minutes = seconds / 60;
        seconds -= minutes * 60;

        StringBuilder buf = new StringBuilder();
        if (months > 0) {

            buf.append(months).append("mo");
            if (weeks > 0) {
                buf.append(weeks).append('w');
            }

            if (seconds > 0) {
                buf.append(days).append('d').append(hours).append('h').append(minutes).append('m').append(seconds).append('s');
            } else if (minutes > 0) {
                buf.append(days).append('d').append(hours).append('h').append(minutes).append('m');
            } else if (hours > 0) {
                buf.append(days).append('d').append(hours).append('h');
            } else if (days > 0) {
                buf.append(days).append('d');
            }

        } else if (weeks > 0) {

            buf.append(weeks).append('w');
            if (seconds > 0) {
                buf.append(days).append('d').append(hours).append('h').append(minutes).append('m').append(seconds).append('s');
            } else if (minutes > 0) {
                buf.append(days).append('d').append(hours).append('h').append(minutes).append('m');
            } else if (hours > 0) {
                buf.append(days).append('d').append(hours).append('h');
            } else if (days > 0) {
                buf.append(days).append('d');
            }

        } else if (days > 0) {

            buf.append(days).append('d');
            if (seconds > 0) {
                buf.append(hours).append('h').append(minutes).append('m').append(seconds).append('s');
            } else if (minutes > 0) {
                buf.append(hours).append('h').append(minutes).append('m');
            } else if (hours > 0) {
                buf.append(hours).append('h');
            }

        } else if (hours > 0) {

            buf.append(hours).append('h');
            if (seconds > 0) {
                buf.append(minutes).append('m').append(seconds).append('s');
            } else if (minutes > 0) {
                buf.append(minutes).append('m');
            }

        } else if (minutes > 0) {

            buf.append(minutes).append('m');
            if (seconds > 0) {
                buf.append(seconds).append('s');
            }

        } else {
            buf.append(' ').append(seconds).append('s');
        }

        return (buf.toString());
    }

    /**
     * Get all issues the authenticated user has access to. Only returns issues created by the current user.
     *
     * 
GitLab Endpoint: GET /issues
* * @return a list of user's issues * @throws GitLabApiException if any exception occurs */ public List getIssues() throws GitLabApiException { return (getIssues(getDefaultPerPage()).all()); } /** * Get all issues the authenticated user has access to using the specified page and per page setting. Only returns issues created by the current user. * *
GitLab Endpoint: GET /issues
* * @param page the page to get * @param perPage the number of issues per page * @return the list of issues in the specified range * @throws GitLabApiException if any exception occurs */ public List getIssues(int page, int perPage) throws GitLabApiException { Response response = get(Response.Status.OK, getPageQueryParams(page, perPage), "issues"); return (response.readEntity(new GenericType>() { })); } /** * Get a Pager of all issues the authenticated user has access to. Only returns issues created by the current user. * *
GitLab Endpoint: GET /issues
* r * * @param itemsPerPage the number of issues per page * @return the Pager of issues in the specified range * @throws GitLabApiException if any exception occurs */ public Pager getIssues(int itemsPerPage) throws GitLabApiException { return (new Pager(this, Issue.class, itemsPerPage, null, "issues")); } /** * Get all issues the authenticated user has access to as a Stream. Only returns issues created by the current user. * *
GitLab Endpoint: GET /issues
* * @return a Stream of user's issues * @throws GitLabApiException if any exception occurs */ public Stream getIssuesStream() throws GitLabApiException { return (getIssues(getDefaultPerPage()).stream()); } /** * Get a list of project's issues. * *
GitLab Endpoint: GET /projects/:id/issues
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance * @return a list of project's issues * @throws GitLabApiException if any exception occurs */ public List getIssues(Object projectIdOrPath) throws GitLabApiException { return (getIssues(projectIdOrPath, getDefaultPerPage()).all()); } /** * Get a list of project's issues using the specified page and per page settings. * *
GitLab Endpoint: GET /projects/:id/issues
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance * @param page the page to get * @param perPage the number of issues per page * @return the list of issues in the specified range * @throws GitLabApiException if any exception occurs */ public List getIssues(Object projectIdOrPath, int page, int perPage) throws GitLabApiException { Response response = get(Response.Status.OK, getPageQueryParams(page, perPage), "projects", getProjectIdOrPath(projectIdOrPath), "issues"); return (response.readEntity(new GenericType>() { })); } /** * Get a Pager of project's issues. * *
GitLab Endpoint: GET /projects/:id/issues
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance * @param itemsPerPage the number of issues per page * @return the Pager of issues in the specified range * @throws GitLabApiException if any exception occurs */ public Pager getIssues(Object projectIdOrPath, int itemsPerPage) throws GitLabApiException { return (new Pager(this, Issue.class, itemsPerPage, null, "projects", getProjectIdOrPath(projectIdOrPath), "issues")); } /** * Get a Stream of project's issues. Only returns the first page * *
GitLab Endpoint: GET /projects/:id/issues
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance * @return a Stream of project's issues * @throws GitLabApiException if any exception occurs */ public Stream getIssuesStream(Object projectIdOrPath) throws GitLabApiException { return (getIssues(projectIdOrPath, getDefaultPerPage()).stream()); } /** * Get a list of project's issues. * *
GitLab Endpoint: GET /projects/:id/issues
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance * @param filter {@link IssueFilter} a IssueFilter instance with the filter settings * @return the list of issues in the specified range. * @throws GitLabApiException if any exception occurs */ public List getIssues(Object projectIdOrPath, IssueFilter filter) throws GitLabApiException { return (getIssues(projectIdOrPath, filter, getDefaultPerPage()).all()); } /** * Get a list of project's issues. * *
GitLab Endpoint: GET /projects/:id/issues
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance * @param filter {@link IssueFilter} a IssueFilter instance with the filter settings. * @param page the page to get. * @param perPage the number of projects per page. * @return the list of issues in the specified range. * @throws GitLabApiException if any exception occurs */ public List getIssues(Object projectIdOrPath, IssueFilter filter, int page, int perPage) throws GitLabApiException { GitLabApiForm formData = filter.getQueryParams(page, perPage); Response response = get(Response.Status.OK, formData.asMap(), "projects", getProjectIdOrPath(projectIdOrPath), "issues"); return (response.readEntity(new GenericType>() { })); } /** * Get a list of project's issues. * *
GitLab Endpoint: GET /projects/:id/issues
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance * @param filter {@link IssueFilter} a IssueFilter instance with the filter settings. * @param itemsPerPage the number of Project instances that will be fetched per page. * @return the Pager of issues in the specified range. * @throws GitLabApiException if any exception occurs */ public Pager getIssues(Object projectIdOrPath, IssueFilter filter, int itemsPerPage) throws GitLabApiException { GitLabApiForm formData = filter.getQueryParams(); return (new Pager(this, Issue.class, itemsPerPage, formData.asMap(), "projects", getProjectIdOrPath(projectIdOrPath), "issues")); } /** * Get a Stream of project's issues. * *
GitLab Endpoint: GET /projects/:id/issues
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance * @param filter {@link IssueFilter} a IssueFilter instance with the filter settings * @return a Stream of issues in the specified range. * @throws GitLabApiException if any exception occurs */ public Stream getIssuesStream(Object projectIdOrPath, IssueFilter filter) throws GitLabApiException { return (getIssues(projectIdOrPath, filter, getDefaultPerPage()).stream()); } /** * Get all issues the authenticated user has access to. * By default it returns only issues created by the current user. * *
GitLab Endpoint: GET /issues
* * @param filter {@link IssueFilter} a IssueFilter instance with the filter settings * @return the list of issues in the specified range. * @throws GitLabApiException if any exception occurs */ public List getIssues(IssueFilter filter) throws GitLabApiException { return (getIssues(filter, getDefaultPerPage()).all()); } /** * Get all issues the authenticated user has access to. * By default it returns only issues created by the current user. * *
GitLab Endpoint: GET /issues
* * @param filter {@link IssueFilter} a IssueFilter instance with the filter settings. * @param page the page to get. * @param perPage the number of projects per page. * @return the list of issues in the specified range. * @throws GitLabApiException if any exception occurs */ public List getIssues(IssueFilter filter, int page, int perPage) throws GitLabApiException { GitLabApiForm formData = filter.getQueryParams(page, perPage); Response response = get(Response.Status.OK, formData.asMap(), "issues"); return (response.readEntity(new GenericType>() { })); } /** * Get all issues the authenticated user has access to. * By default it returns only issues created by the current user. * *
GitLab Endpoint: GET /issues
* * @param filter {@link IssueFilter} a IssueFilter instance with the filter settings. * @param itemsPerPage the number of Project instances that will be fetched per page. * @return the Pager of issues in the specified range. * @throws GitLabApiException if any exception occurs */ public Pager getIssues(IssueFilter filter, int itemsPerPage) throws GitLabApiException { GitLabApiForm formData = filter.getQueryParams(); return (new Pager(this, Issue.class, itemsPerPage, formData.asMap(), "issues")); } /** * Get all issues the authenticated user has access to. * By default it returns only issues created by the current user. * *
GitLab Endpoint: GET /issues
* * @param filter {@link IssueFilter} a IssueFilter instance with the filter settings * @return the Stream of issues in the specified range. * @throws GitLabApiException if any exception occurs */ public Stream getIssuesStream(IssueFilter filter) throws GitLabApiException { return (getIssues(filter, getDefaultPerPage()).stream()); } /** * Get a list of a group’s issues. * *
GitLab Endpoint: GET /groups/:id/issues
* * @param groupIdOrPath the group in the form of an Long(ID), String(path), or Group instance * @return a List of issues for the specified group * @throws GitLabApiException if any exception occurs */ public List getGroupIssues(Object groupIdOrPath) throws GitLabApiException { return (getGroupIssues(groupIdOrPath, null, getDefaultPerPage()).all()); } /** * Get a Pager of groups's issues. * *
GitLab Endpoint: GET /groups/:id/issues
* * @param groupIdOrPath the group in the form of an Long(ID), String(path), or Group instance * @param itemsPerPage the number of Issue instances that will be fetched per page. * @return the Pager of issues for the specified group * @throws GitLabApiException if any exception occurs */ public Pager getGroupIssues(Object groupIdOrPath, int itemsPerPage) throws GitLabApiException { return (getGroupIssues(groupIdOrPath, null, itemsPerPage)); } /** * Get a Stream of a group’s issues. * *
GitLab Endpoint: GET /groups/:id/issues
* * @param groupIdOrPath the group in the form of an Long(ID), String(path), or Group instance * @return a Stream of issues for the specified group and filter * @throws GitLabApiException if any exception occurs */ public Stream getGroupIssuesStream(Object groupIdOrPath) throws GitLabApiException { return (getGroupIssues(groupIdOrPath, null, getDefaultPerPage()).stream()); } /** * Get a list of a group’s issues. * *
GitLab Endpoint: GET /groups/:id/issues
* * @param groupIdOrPath the group in the form of an Long(ID), String(path), or Group instance * @param filter {@link IssueFilter} a IssueFilter instance with the filter settings. * @return a List of issues for the specified group and filter * @throws GitLabApiException if any exception occurs */ public List getGroupIssues(Object groupIdOrPath, IssueFilter filter) throws GitLabApiException { return (getGroupIssues(groupIdOrPath, filter, getDefaultPerPage()).all()); } /** * Get a list of groups's issues. * *
GitLab Endpoint: GET /groups/:id/issues
* * @param groupIdOrPath the group in the form of an Long(ID), String(path), or Group instance * @param filter {@link IssueFilter} a IssueFilter instance with the filter settings. * @param itemsPerPage the number of Issue instances that will be fetched per page. * @return the Pager of issues for the specified group and filter * @throws GitLabApiException if any exception occurs */ public Pager getGroupIssues(Object groupIdOrPath, IssueFilter filter, int itemsPerPage) throws GitLabApiException { GitLabApiForm formData = (filter != null ? filter.getQueryParams() : new GitLabApiForm()); return (new Pager(this, Issue.class, itemsPerPage, formData.asMap(), "groups", getGroupIdOrPath(groupIdOrPath), "issues")); } /** * Get a Stream of a group’s issues. * *
GitLab Endpoint: GET /groups/:id/issues
* * @param groupIdOrPath the group in the form of an Long(ID), String(path), or Group instance * @param filter {@link IssueFilter} a IssueFilter instance with the filter settings. * @return a Stream of issues for the specified group and filter * @throws GitLabApiException if any exception occurs */ public Stream getGroupIssuesStream(Object groupIdOrPath, IssueFilter filter) throws GitLabApiException { return (getGroupIssues(groupIdOrPath, filter, getDefaultPerPage()).stream()); } /** * Get a single project issue. * *
GitLab Endpoint: GET /projects/:id/issues/:issue_iid
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance * @param issueIid the internal ID of a project's issue * @return the specified Issue instance * @throws GitLabApiException if any exception occurs */ public Issue getIssue(Object projectIdOrPath, Long issueIid) throws GitLabApiException { Response response = get(Response.Status.OK, getDefaultPerPageParam(), "projects", getProjectIdOrPath(projectIdOrPath), "issues", issueIid); return (response.readEntity(Issue.class)); } /** * Get a single project issue as an Optional instance. * *
GitLab Endpoint: GET /projects/:id/issues/:issue_iid
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance * @param issueIid the internal ID of a project's issue * @return the specified Issue as an Optional instance */ public Optional getOptionalIssue(Object projectIdOrPath, Long issueIid) { try { return (Optional.ofNullable(getIssue(projectIdOrPath, issueIid))); } catch (GitLabApiException glae) { return (GitLabApi.createOptionalFromException(glae)); } } /** * Create an issue for the project. * *
GitLab Endpoint: POST /projects/:id/issues
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance * @param title the title of an issue, required * @param description the description of an issue, optional * @return an instance of Issue * @throws GitLabApiException if any exception occurs */ public Issue createIssue(Object projectIdOrPath, String title, String description) throws GitLabApiException { return (createIssue(projectIdOrPath, title, description, null, null, null, null, null, null, null, null)); } /** * Create an issue for the project. * *
GitLab Endpoint: POST /projects/:id/issues
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance * @param title the issue title of an issue, required * @param description the description of an issue, optional * @param confidential set the issue to be confidential, default is false, optional * @param assigneeIds the IDs of the users to assign issue, optional * @param milestoneId the ID of a milestone to assign issue, optional * @param labels comma-separated label names for an issue, optional * @param createdAt the date the issue was created at, optional * @param dueDate the due date, optional * @param mergeRequestToResolveId the IID of a merge request in which to resolve all issues. This will fill the issue with a default * description and mark all discussions as resolved. When passing a description or title, these values will take precedence over the default values. Optional * @param discussionToResolveId the ID of a discussion to resolve. This will fill in the issue with a default description and mark the discussion as resolved. * Use in combination with merge_request_to_resolve_discussions_of. Optional * @return an instance of Issue * @throws GitLabApiException if any exception occurs */ public Issue createIssue(Object projectIdOrPath, String title, String description, Boolean confidential, List assigneeIds, Long milestoneId, String labels, Date createdAt, Date dueDate, Long mergeRequestToResolveId, Long discussionToResolveId) throws GitLabApiException { GitLabApiForm formData = new GitLabApiForm() .withParam("title", title, true) .withParam("description", description) .withParam("confidential", confidential) .withParam("assignee_ids", assigneeIds) .withParam("milestone_id", milestoneId) .withParam("labels", labels) .withParam("created_at", createdAt) .withParam("due_date", dueDate) .withParam("merge_request_to_resolve_discussions_of", mergeRequestToResolveId) .withParam("discussion_to_resolve", discussionToResolveId); Response response = post(Response.Status.CREATED, formData, "projects", getProjectIdOrPath(projectIdOrPath), "issues"); return (response.readEntity(Issue.class)); } /** * Closes an existing project issue. * *
GitLab Endpoint: PUT /projects/:id/issues/:issue_iid
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance, required * @param issueIid the issue IID to update, required * @return an instance of the updated Issue * @throws GitLabApiException if any exception occurs */ public Issue closeIssue(Object projectIdOrPath, Long issueIid) throws GitLabApiException { if (issueIid == null) { throw new RuntimeException("issue IID cannot be null"); } GitLabApiForm formData = new GitLabApiForm().withParam("state_event", StateEvent.CLOSE); Response response = put(Response.Status.OK, formData.asMap(), "projects", getProjectIdOrPath(projectIdOrPath), "issues", issueIid); return (response.readEntity(Issue.class)); } /** * Updates an existing project issue. This call can also be used to mark an issue as closed. * *
GitLab Endpoint: PUT /projects/:id/issues/:issue_iid
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance, required * @param issueIid the issue IID to update, required * @param title the title of an issue, optional * @param description the description of an issue, optional * @param confidential set the issue to be confidential, default is false, optional * @param assigneeIds the IDs of the users to assign issue, optional * @param milestoneId the ID of a milestone to assign issue, optional * @param labels comma-separated label names for an issue, optional * @param stateEvent the state event of an issue. Set close to close the issue and reopen to reopen it, optional * @param updatedAt sets the updated date, requires admin or project owner rights, optional * @param dueDate the due date, optional * @return an instance of the updated Issue * @throws GitLabApiException if any exception occurs */ public Issue updateIssue(Object projectIdOrPath, Long issueIid, String title, String description, Boolean confidential, List assigneeIds, Long milestoneId, String labels, StateEvent stateEvent, Date updatedAt, Date dueDate) throws GitLabApiException { if (issueIid == null) { throw new RuntimeException("issue IID cannot be null"); } GitLabApiForm formData = new GitLabApiForm() .withParam("title", title) .withParam("description", description) .withParam("confidential", confidential) .withParam("assignee_ids", assigneeIds) .withParam("milestone_id", milestoneId) .withParam("labels", labels) .withParam("state_event", stateEvent) .withParam("updated_at", updatedAt) .withParam("due_date", dueDate); Response response = put(Response.Status.OK, formData.asMap(), "projects", getProjectIdOrPath(projectIdOrPath), "issues", issueIid); return (response.readEntity(Issue.class)); } /** * Updates an existing project issue. This call can also be used to mark an issue as closed. * *
GitLab Endpoint: PUT /projects/:id/issues/:issue_iid
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance, required * @param issueIid the issue IID to update, required * @param assigneeId the ID of the user to assign issue to, required * @return an instance of the updated Issue * @throws GitLabApiException if any exception occurs */ public Issue assignIssue(Object projectIdOrPath, Long issueIid, Long assigneeId) throws GitLabApiException { if (issueIid == null) { throw new RuntimeException("issue IID cannot be null"); } GitLabApiForm formData = new GitLabApiForm().withParam("assignee_ids", Collections.singletonList(assigneeId)); Response response = put(Response.Status.OK, formData.asMap(), "projects", getProjectIdOrPath(projectIdOrPath), "issues", issueIid); return (response.readEntity(Issue.class)); } /** * Delete an issue. * *
GitLab Endpoint: DELETE /projects/:id/issues/:issue_iid
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance, required * @param issueIid the internal ID of a project's issue * @throws GitLabApiException if any exception occurs */ public void deleteIssue(Object projectIdOrPath, Long issueIid) throws GitLabApiException { if (issueIid == null) { throw new RuntimeException("issue IID cannot be null"); } Response.Status expectedStatus = (isApiVersion(GitLabApi.ApiVersion.V3) ? Response.Status.OK : Response.Status.NO_CONTENT); delete(expectedStatus, getDefaultPerPageParam(), "projects", getProjectIdOrPath(projectIdOrPath), "issues", issueIid); } /** * Sets an estimated time of work in this issue * *
GitLab Endpoint: POST /projects/:id/issues/:issue_iid/time_estimate
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance, required * @param issueIid the internal ID of a project's issue * @param duration estimated time in seconds * @return a TimeSTats instance * @throws GitLabApiException if any exception occurs */ public TimeStats estimateTime(Object projectIdOrPath, Long issueIid, int duration) throws GitLabApiException { return (estimateTime(projectIdOrPath, issueIid, new Duration(duration))); } /** * Sets an estimated time of work in this issue * *
GitLab Endpoint: POST /projects/:id/issues/:issue_iid/time_estimate
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance, required * @param issueIid the internal ID of a project's issue * @param duration Human readable format, e.g. 3h30m * @return a TimeSTats instance * @throws GitLabApiException if any exception occurs */ public TimeStats estimateTime(Object projectIdOrPath, Long issueIid, String duration) throws GitLabApiException { return (estimateTime(projectIdOrPath, issueIid, new Duration(duration))); } /** * Sets an estimated time of work in this issue * *
GitLab Endpoint: POST /projects/:id/issues/:issue_iid/time_estimate
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance * @param issueIid the internal ID of a project's issue * @param duration set the estimate of time to this duration * @return a TimeSTats instance * @throws GitLabApiException if any exception occurs */ public TimeStats estimateTime(Object projectIdOrPath, Long issueIid, Duration duration) throws GitLabApiException { if (issueIid == null) { throw new RuntimeException("issue IID cannot be null"); } String durationString = (duration != null ? toString(duration.getSeconds(), false) : null); GitLabApiForm formData = new GitLabApiForm().withParam("duration", durationString, true); Response response = post(Response.Status.OK, formData.asMap(), "projects", getProjectIdOrPath(projectIdOrPath), "issues", issueIid, "time_estimate"); return (response.readEntity(TimeStats.class)); } /** * Resets the estimated time for this issue to 0 seconds. * *
GitLab Endpoint: POST /projects/:id/issues/:issue_iid/reset_time_estimate
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance * @param issueIid the internal ID of a project's issue * @return a TimeSTats instance * @throws GitLabApiException if any exception occurs */ public TimeStats resetEstimatedTime(Object projectIdOrPath, Long issueIid) throws GitLabApiException { if (issueIid == null) { throw new RuntimeException("issue IID cannot be null"); } Response response = post(Response.Status.OK, new GitLabApiForm().asMap(), "projects", getProjectIdOrPath(projectIdOrPath), "issues", issueIid, "reset_time_estimate"); return (response.readEntity(TimeStats.class)); } /** * Adds spent time for this issue * *
GitLab Endpoint: POST /projects/:id/issues/:issue_iid/add_spent_time
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance * @param issueIid the internal ID of a project's issue * @param duration the duration in seconds * @return a TimeSTats instance * @throws GitLabApiException if any exception occurs */ public TimeStats addSpentTime(Object projectIdOrPath, Long issueIid, int duration) throws GitLabApiException { return (addSpentTime(projectIdOrPath, issueIid, new Duration(duration))); } /** * Adds spent time for this issue * *
GitLab Endpoint: POST /projects/:id/issues/:issue_iid/add_spent_time
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance * @param issueIid the internal ID of a project's issue * @param duration Human readable format, e.g. 3h30m * @return a TimeSTats instance * @throws GitLabApiException if any exception occurs */ public TimeStats addSpentTime(Object projectIdOrPath, Long issueIid, String duration) throws GitLabApiException { return (addSpentTime(projectIdOrPath, issueIid, new Duration(duration))); } /** * Adds spent time for this issue * *
GitLab Endpoint: POST /projects/:id/issues/:issue_iid/add_spent_time
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance * @param issueIid the internal ID of a project's issue * @param duration the duration of time spent * @return a TimeSTats instance * @throws GitLabApiException if any exception occurs */ public TimeStats addSpentTime(Object projectIdOrPath, Long issueIid, Duration duration) throws GitLabApiException { if (issueIid == null) { throw new RuntimeException("issue IID cannot be null"); } String durationString = (duration != null ? toString(duration.getSeconds(), false) : null); GitLabApiForm formData = new GitLabApiForm().withParam("duration", durationString, true); Response response = post(Response.Status.CREATED, formData.asMap(), "projects", getProjectIdOrPath(projectIdOrPath), "issues", issueIid, "add_spent_time"); return (response.readEntity(TimeStats.class)); } /** * Resets the total spent time for this issue to 0 seconds. * *
GitLab Endpoint: POST /projects/:id/issues/:issue_iid/reset_spent_time
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance * @param issueIid the internal ID of a project's issue * @return a TimeSTats instance * @throws GitLabApiException if any exception occurs */ public TimeStats resetSpentTime(Object projectIdOrPath, Long issueIid) throws GitLabApiException { if (issueIid == null) { throw new RuntimeException("issue IID cannot be null"); } Response response = post(Response.Status.OK, new GitLabApiForm().asMap(), "projects", getProjectIdOrPath(projectIdOrPath), "issues", issueIid, "reset_spent_time"); return (response.readEntity(TimeStats.class)); } /** * Get time tracking stats. * *
GitLab Endpoint: GET /projects/:id/issues/:issue_iid/time_stats
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance * @param issueIid the internal ID of a project's issue * @return a TimeStats instance * @throws GitLabApiException if any exception occurs */ public TimeStats getTimeTrackingStats(Object projectIdOrPath, Long issueIid) throws GitLabApiException { if (issueIid == null) { throw new RuntimeException("issue IID cannot be null"); } Response response = get(Response.Status.OK, new GitLabApiForm().asMap(), "projects", getProjectIdOrPath(projectIdOrPath), "issues", issueIid, "time_stats"); return (response.readEntity(TimeStats.class)); } /** * Get time tracking stats as an Optional instance * *
GitLab Endpoint: GET /projects/:id/issues/:issue_iid/time_stats
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance * @param issueIid the internal ID of a project's issue * @return a TimeStats as an Optional instance */ public Optional getOptionalTimeTrackingStats(Object projectIdOrPath, Long issueIid) { try { return (Optional.ofNullable(getTimeTrackingStats(projectIdOrPath, issueIid))); } catch (GitLabApiException glae) { return (GitLabApi.createOptionalFromException(glae)); } } /** * Get list containing all the merge requests that will close issue when merged. * *
GitLab Endpoint: GET /projects/:id/issues/:issue_iid/closed_by
* * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @param issueIid the internal ID of a project's issue * @return a List containing all the merge requests what will close the issue when merged. * @throws GitLabApiException if any exception occurs */ public List getClosedByMergeRequests(Object projectIdOrPath, Long issueIid) throws GitLabApiException { return (getClosedByMergeRequests(projectIdOrPath, issueIid, getDefaultPerPage()).all()); } /** * Get list containing all the merge requests that will close issue when merged. * *
GitLab Endpoint: GET /projects/:id/issues/:issue_iid/closed_by
* * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @param issueIid the internal ID of a project's issue * @param page the page to get * @param perPage the number of issues per page * @return a List containing all the merge requests what will close the issue when merged. * @throws GitLabApiException if any exception occurs */ public List getClosedByMergeRequests(Object projectIdOrPath, Long issueIid, int page, int perPage) throws GitLabApiException { Response response = get(Response.Status.OK, getPageQueryParams(page, perPage), "projects", getProjectIdOrPath(projectIdOrPath), "issues", issueIid, "closed_by"); return (response.readEntity(new GenericType>() { })); } /** * Get a Pager containing all the merge requests that will close issue when merged. * *
GitLab Endpoint: GET /projects/:id/issues/:issue_iid/closed_by
* * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @param issueIid the internal ID of a project's issue * @param itemsPerPage the number of Issue instances that will be fetched per page * @return a Pager containing all the issues that would be closed by merging the provided merge request * @throws GitLabApiException if any exception occurs */ public Pager getClosedByMergeRequests(Object projectIdOrPath, Long issueIid, int itemsPerPage) throws GitLabApiException { return new Pager(this, MergeRequest.class, itemsPerPage, null, "projects", getProjectIdOrPath(projectIdOrPath), "issues", issueIid, "closed_by"); } /** * Get list containing all the merge requests that will close issue when merged. * *
GitLab Endpoint: GET /projects/:id/issues/:issue_iid/closed_by
* * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @param issueIid the internal ID of a project's issue * @return a List containing all the merge requests what will close the issue when merged. * @throws GitLabApiException if any exception occurs */ public Stream getClosedByMergeRequestsStream(Object projectIdOrPath, Long issueIid) throws GitLabApiException { return (getClosedByMergeRequests(projectIdOrPath, issueIid, getDefaultPerPage()).stream()); } /** * Get a list of related issues of a given issue, sorted by the relationship creation datetime (ascending). * Issues will be filtered according to the user authorizations. * *

NOTE: Only available in GitLab Starter, GitLab Bronze, and higher tiers.

* *
GitLab Endpoint: GET /projects/:id/issues/:issue_iid/links
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance * @param issueIid the internal ID of a project's issue * @return a list of related issues of a given issue, sorted by the relationship creation datetime (ascending) * @throws GitLabApiException if any exception occurs */ public List getIssueLinks(Object projectIdOrPath, Long issueIid) throws GitLabApiException { return (getIssueLinks(projectIdOrPath, issueIid, getDefaultPerPage()).all()); } /** * Get a Pager of related issues of a given issue, sorted by the relationship creation datetime (ascending). * Issues will be filtered according to the user authorizations. * *

NOTE: Only available in GitLab Starter, GitLab Bronze, and higher tiers.

* *
GitLab Endpoint: GET /projects/:id/issues/:issue_iid/links
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance * @param issueIid the internal ID of a project's issue * @param itemsPerPage the number of issues per page * @return a Pager of related issues of a given issue, sorted by the relationship creation datetime (ascending) * @throws GitLabApiException if any exception occurs */ public Pager getIssueLinks(Object projectIdOrPath, Long issueIid, int itemsPerPage) throws GitLabApiException { return (new Pager(this, Issue.class, itemsPerPage, null, "projects", getProjectIdOrPath(projectIdOrPath), "issues", issueIid, "links")); } /** * Get a Stream of related issues of a given issue, sorted by the relationship creation datetime (ascending). * Issues will be filtered according to the user authorizations. * *

NOTE: Only available in GitLab Starter, GitLab Bronze, and higher tiers.

* *
GitLab Endpoint: GET /projects/:id/issues/:issue_iid/links
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance * @param issueIid the internal ID of a project's issue * @return a Stream of related issues of a given issue, sorted by the relationship creation datetime (ascending) * @throws GitLabApiException if any exception occurs */ public Stream getIssueLinksStream(Object projectIdOrPath, Long issueIid) throws GitLabApiException { return (getIssueLinks(projectIdOrPath, issueIid, getDefaultPerPage()).stream()); } /** * Creates a two-way relation between two issues. User must be allowed to update both issues in order to succeed. * *

NOTE: Only available in GitLab Starter, GitLab Bronze, and higher tiers.

* *
GitLab Endpoint: POST /projects/:id/issues/:issue_iid/links
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance * @param issueIid the internal ID of a project's issue * @param targetProjectIdOrPath the project in the form of an Long(ID), String(path), or Project instance of the target project * @param targetIssueIid the internal ID of a target project’s issue * @return an instance of IssueLink holding the link relationship * @throws GitLabApiException if any exception occurs */ public IssueLink createIssueLink(Object projectIdOrPath, Long issueIid, Object targetProjectIdOrPath, Long targetIssueIid) throws GitLabApiException { GitLabApiForm formData = new GitLabApiForm() .withParam("target_project_id", getProjectIdOrPath(targetProjectIdOrPath), true) .withParam("target_issue_iid", targetIssueIid, true); Response response = post(Response.Status.OK, formData.asMap(), "projects", getProjectIdOrPath(projectIdOrPath), "issues", issueIid, "links"); return (response.readEntity(IssueLink.class)); } /** * Deletes an issue link, thus removes the two-way relationship. * *

NOTE: Only available in GitLab Starter, GitLab Bronze, and higher tiers.

* *
GitLab Endpoint: POST /projects/:id/issues/:issue_iid/links/:issue_link_id
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance * @param issueIid the internal ID of a project's issue, required * @param issueLinkId the ID of an issue relationship, required * @return an instance of IssueLink holding the deleted link relationship * @throws GitLabApiException if any exception occurs */ public IssueLink deleteIssueLink(Object projectIdOrPath, Long issueIid, Long issueLinkId) throws GitLabApiException { Response response = delete(Response.Status.OK, null, "projects", getProjectIdOrPath(projectIdOrPath), "issues", issueIid, "links", issueLinkId); return (response.readEntity(IssueLink.class)); } /** * Get list of participants for an issue. * *
GitLab Endpoint: GET /projects/:id/issues/:issue_iid/participants
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance * @param issueIid the IID of the issue to get the participants for * @return a List containing all participants for the specified issue * @throws GitLabApiException if any exception occurs */ public List getParticipants(Object projectIdOrPath, Long issueIid) throws GitLabApiException { return (getParticipants(projectIdOrPath, issueIid, getDefaultPerPage()).all()); } /** * Get list of participants for an issue and in the specified page range. * *
GitLab Endpoint: GET /projects/:id/issues/:issue_iid/participants
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance * @param issueIid the IID of the issue to get the participants for * @param page the page to get * @param perPage the number of projects per page * @return a List containing all participants for the specified issue * @throws GitLabApiException if any exception occurs */ public List getParticipants(Object projectIdOrPath, Long issueIid, int page, int perPage) throws GitLabApiException { Response response = get(Response.Status.OK, getPageQueryParams(page, perPage), "projects", getProjectIdOrPath(projectIdOrPath), "issues", issueIid, "participants"); return (response.readEntity(new GenericType>() { })); } /** * Get a Pager of the participants for an issue. * *
GitLab Endpoint: GET /projects/:id/issues/:issue_iid/participants
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance * @param issueIid the IID of the issue to get the participants for * @param itemsPerPage the number of Participant instances that will be fetched per page * @return a Pager containing all participants for the specified issue * @throws GitLabApiException if any exception occurs */ public Pager getParticipants(Object projectIdOrPath, Long issueIid, int itemsPerPage) throws GitLabApiException { return new Pager(this, Participant.class, itemsPerPage, null, "projects", getProjectIdOrPath(projectIdOrPath), "issues", issueIid, "participants"); } /** * Get Stream of participants for an issue. * *
GitLab Endpoint: GET /projects/:id/issues/:issue_iid/participants
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance * @param issueIid the IID of the issue to get the participants for * @return a Stream containing all participants for the specified issue * @throws GitLabApiException if any exception occurs */ public Stream getParticipantsStream(Object projectIdOrPath, Long issueIid) throws GitLabApiException { return (getParticipants(projectIdOrPath, issueIid, getDefaultPerPage()).stream()); } /** * Gets issues count statistics on all issues the authenticated user has access to. By default it returns * only issues created by the current user. To get all issues, use parameter scope=all. * *
GitLab Endpoint: GET /issues_statistics
* * @param filter {@link IssuesStatisticsFilter} a IssuesStatisticsFilter instance with the filter settings. * @return an IssuesStatistics instance with the statistics for the matched issues. * @throws GitLabApiException if any exception occurs */ public IssuesStatistics getIssuesStatistics(IssuesStatisticsFilter filter) throws GitLabApiException { GitLabApiForm formData = filter.getQueryParams(); Response response = get(Response.Status.OK, formData.asMap(), "issues_statistics"); return (response.readEntity(IssuesStatistics.class)); } /** * Gets issues count statistics for given group. * *
GitLab Endpoint: GET /groups/:groupId/issues_statistics
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required * @param filter {@link IssuesStatisticsFilter} a IssuesStatisticsFilter instance with the filter settings * @return an IssuesStatistics instance with the statistics for the matched issues * @throws GitLabApiException if any exception occurs */ public IssuesStatistics getGroupIssuesStatistics(Object groupIdOrPath, IssuesStatisticsFilter filter) throws GitLabApiException { GitLabApiForm formData = filter.getQueryParams(); Response response = get(Response.Status.OK, formData.asMap(), "groups", this.getGroupIdOrPath(groupIdOrPath), "issues_statistics"); return (response.readEntity(IssuesStatistics.class)); } /** * Gets issues count statistics for given project. * *
GitLab Endpoint: GET /projects/:projectId/issues_statistics
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance, required * @param filter {@link IssuesStatisticsFilter} a IssuesStatisticsFilter instance with the filter settings. * @return an IssuesStatistics instance with the statistics for the matched issues * @throws GitLabApiException if any exception occurs */ public IssuesStatistics geProjectIssuesStatistics(Object projectIdOrPath, IssuesStatisticsFilter filter) throws GitLabApiException { GitLabApiForm formData = filter.getQueryParams(); Response response = get(Response.Status.OK, formData.asMap(), "projects", this.getProjectIdOrPath(projectIdOrPath), "issues_statistics"); return (response.readEntity(IssuesStatistics.class)); } /** *

Moves an issue to a different project. If the target project equals the source project or * the user has insufficient permissions to move an issue, error 400 together with an * explaining error message is returned.

* *

If a given label and/or milestone with the same name also exists in the target project, * it will then be assigned to the issue that is being moved.

* *
GitLab Endpoint: POST /projects/:projectId/issues/:issue_iid/move
* * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance, required * @param issueIid the IID of the issue to move * @param toProjectId the ID of the project to move the issue to * @return an Issue instance for the moved issue * @throws GitLabApiException if any exception occurs */ public Issue moveIssue(Object projectIdOrPath, Long issueIid, Object toProjectId) throws GitLabApiException { GitLabApiForm formData = new GitLabApiForm().withParam("to_project_id", toProjectId, true); Response response = post(Response.Status.OK, formData, "projects", this.getProjectIdOrPath(projectIdOrPath), "issues", issueIid, "move"); return (response.readEntity(Issue.class)); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy