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

org.gitlab4j.api.RepositoryApi Maven / Gradle / Ivy

Go to download

GitLab4J-API (gitlab4j-api) provides a full featured Java client library for working with GitLab repositories and servers via the GitLab REST API.

There is a newer version: 6.0.0-rc.5
Show newest version
package org.gitlab4j.api;

import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.nio.file.Files;
import java.nio.file.StandardCopyOption;
import java.util.List;
import java.util.Optional;
import java.util.stream.Stream;

import javax.ws.rs.core.Form;
import javax.ws.rs.core.GenericType;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;

import org.gitlab4j.api.GitLabApi.ApiVersion;
import org.gitlab4j.api.models.Branch;
import org.gitlab4j.api.models.Commit;
import org.gitlab4j.api.models.CompareResults;
import org.gitlab4j.api.models.Contributor;
import org.gitlab4j.api.models.TreeItem;
import org.gitlab4j.api.utils.FileUtils;

/**
 * This class provides an entry point to all the GitLab API repository calls.
 */
public class RepositoryApi extends AbstractApi {

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

    /**
     * Get a list of repository branches from a project, sorted by name alphabetically.
     *
     * 
GitLab Endpoint: GET /projects/:id/repository/branches
* * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @return the list of repository branches for the specified project * @throws GitLabApiException if any exception occurs */ public List getBranches(Object projectIdOrPath) throws GitLabApiException { return (getBranches(projectIdOrPath, getDefaultPerPage()).all()); } /** * Get a list of repository branches from a project, sorted by name alphabetically. * *
GitLab Endpoint: GET /projects/:id/repository/branches
* * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param page the page to get * @param perPage the number of Branch instances per page * @return the list of repository branches for the specified project * @throws GitLabApiException if any exception occurs */ public List getBranches(Object projectIdOrPath, int page, int perPage) throws GitLabApiException { Response response = get(Response.Status.OK, getPageQueryParams(page, perPage), "projects", getProjectIdOrPath(projectIdOrPath), "repository", "branches"); return (response.readEntity(new GenericType>() {})); } /** * Get a Pager of repository branches from a project, sorted by name alphabetically. * *
GitLab Endpoint: GET /projects/:id/repository/branches
* * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param itemsPerPage the number of Project instances that will be fetched per page * @return the list of repository branches for the specified project ID * * @throws GitLabApiException if any exception occurs */ public Pager getBranches(Object projectIdOrPath, int itemsPerPage) throws GitLabApiException { return (new Pager(this, Branch.class, itemsPerPage, null, "projects", getProjectIdOrPath(projectIdOrPath), "repository", "branches")); } /** * Get a Stream of repository branches from a project, sorted by name alphabetically. * *
GitLab Endpoint: GET /projects/:id/repository/branches
* * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @return a Stream of repository branches for the specified project * @throws GitLabApiException if any exception occurs */ public Stream getBranchesStream(Object projectIdOrPath) throws GitLabApiException { return (getBranches(projectIdOrPath, getDefaultPerPage()).stream()); } /** * Get a single project repository branch. * *
GitLab Endpoint: GET /projects/:id/repository/branches/:branch
* * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param branchName the name of the branch to get * @return the branch info for the specified project ID/branch name pair * @throws GitLabApiException if any exception occurs */ public Branch getBranch(Object projectIdOrPath, String branchName) throws GitLabApiException { Response response = get(Response.Status.OK, null, "projects", getProjectIdOrPath(projectIdOrPath), "repository", "branches", urlEncode(branchName)); return (response.readEntity(Branch.class)); } /** * Get an Optional instance with the value for the specific repository branch. * *
GitLab Endpoint: GET /projects/:id/repository/branches/:branch
* * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param branchName the name of the branch to get * @return an Optional instance with the info for the specified project ID/branch name pair as the value * @throws GitLabApiException if any exception occurs */ public Optional getOptionalBranch(Object projectIdOrPath, String branchName) throws GitLabApiException { try { return (Optional.ofNullable(getBranch(projectIdOrPath, branchName))); } catch (GitLabApiException glae) { return (GitLabApi.createOptionalFromException(glae)); } } /** * Creates a branch for the project. Support as of version 6.8.x * *
GitLab Endpoint: POST /projects/:id/repository/branches
* * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param branchName the name of the branch to create * @param ref Source to create the branch from, can be an existing branch, tag or commit SHA * @return the branch info for the created branch * @throws GitLabApiException if any exception occurs */ public Branch createBranch(Object projectIdOrPath, String branchName, String ref) throws GitLabApiException { Form formData = new GitLabApiForm() .withParam(isApiVersion(ApiVersion.V3) ? "branch_name" : "branch", branchName, true) .withParam("ref", ref, true); Response response = post(Response.Status.CREATED, formData.asMap(), "projects", getProjectIdOrPath(projectIdOrPath), "repository", "branches"); return (response.readEntity(Branch.class)); } /** * Delete a single project repository branch. * *
GitLab Endpoint: DELETE /projects/:id/repository/branches/:branch
* * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param branchName the name of the branch to delete * @throws GitLabApiException if any exception occurs */ public void deleteBranch(Object projectIdOrPath, String branchName) throws GitLabApiException { Response.Status expectedStatus = (isApiVersion(ApiVersion.V3) ? Response.Status.OK : Response.Status.NO_CONTENT); delete(expectedStatus, null, "projects", getProjectIdOrPath(projectIdOrPath), "repository", "branches", urlEncode(branchName)); } /** * Protects a single project repository branch. This is an idempotent function, * protecting an already protected repository branch will not produce an error. * *
GitLab Endpoint: PUT /projects/:id/repository/branches/:branch/protect
* * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param branchName the name of the branch to protect * @return the branch info for the protected branch * @throws GitLabApiException if any exception occurs */ public Branch protectBranch(Object projectIdOrPath, String branchName) throws GitLabApiException { Response response = put(Response.Status.OK, null, "projects", getProjectIdOrPath(projectIdOrPath), "repository", "branches", urlEncode(branchName), "protect"); return (response.readEntity(Branch.class)); } /** * Unprotects a single project repository branch. This is an idempotent function, unprotecting an * already unprotected repository branch will not produce an error. * *
GitLab Endpoint: PUT /projects/:id/repository/branches/:branch/unprotect
* * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param branchName the name of the branch to un-protect * @return the branch info for the unprotected branch * @throws GitLabApiException if any exception occurs */ public Branch unprotectBranch(Object projectIdOrPath, String branchName) throws GitLabApiException { Response response = put(Response.Status.OK, null, "projects", getProjectIdOrPath(projectIdOrPath), "repository", "branches", urlEncode(branchName), "unprotect"); return (response.readEntity(Branch.class)); } /** * Get a list of repository files and directories in a project. * *
GitLab Endpoint: GET /projects/:id/repository/tree
* * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @return a tree with the root directories and files of a project * @throws GitLabApiException if any exception occurs */ public List getTree(Object projectIdOrPath) throws GitLabApiException { return (getTree(projectIdOrPath, "/", "master")); } /** * Get a Pager of repository files and directories in a project. * *
GitLab Endpoint: GET /projects/:id/repository/tree
* * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param itemsPerPage the number of Project instances that will be fetched per page * @return a Pager containing a tree with the root directories and files of a project * @throws GitLabApiException if any exception occurs */ public Pager getTree(Object projectIdOrPath, int itemsPerPage) throws GitLabApiException { return (getTree(projectIdOrPath, "/", "master", false, itemsPerPage)); } /** * Get a list of repository files and directories in a project. * *
GitLab Endpoint: GET /projects/:id/repository/tree
* * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @return a Stream containing a tree with the root directories and files of a project * @throws GitLabApiException if any exception occurs */ public Stream getTreeStream(Object projectIdOrPath) throws GitLabApiException { return (getTreeStream(projectIdOrPath, "/", "master")); } /** * Get a list of repository files and directories in a project. * *
GitLab Endpoint: GET /projects/:id/repository/tree
* * id (required) - The ID of a project * path (optional) - The path inside repository. Used to get content of subdirectories * ref_name (optional) - The name of a repository branch or tag or if not given the default branch * * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param filePath the path inside repository, used to get content of subdirectories * @param refName the name of a repository branch or tag or if not given the default branch * @return a tree with the directories and files of a project * @throws GitLabApiException if any exception occurs */ public List getTree(Object projectIdOrPath, String filePath, String refName) throws GitLabApiException { return (getTree(projectIdOrPath, filePath, refName, false)); } /** * Get a Pager of repository files and directories in a project. * *
GitLab Endpoint: GET /projects/:id/repository/tree
* * id (required) - The ID of a project * path (optional) - The path inside repository. Used to get content of subdirectories * ref_name (optional) - The name of a repository branch or tag or if not given the default branch * * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param filePath the path inside repository, used to get content of subdirectories * @param refName the name of a repository branch or tag or if not given the default branch * @param itemsPerPage the number of Project instances that will be fetched per page * @return a Pager containing a tree with the directories and files of a project * @throws GitLabApiException if any exception occurs */ public Pager getTree(Object projectIdOrPath, String filePath, String refName, int itemsPerPage) throws GitLabApiException { return (getTree(projectIdOrPath, filePath, refName, false, itemsPerPage)); } /** * Get a Stream of repository files and directories in a project. * *
GitLab Endpoint: GET /projects/:id/repository/tree
* * id (required) - The ID of a project * path (optional) - The path inside repository. Used to get content of subdirectories * ref_name (optional) - The name of a repository branch or tag or if not given the default branch * * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param filePath the path inside repository, used to get content of subdirectories * @param refName the name of a repository branch or tag or if not given the default branch * @return a Stream containing a tree with the directories and files of a project * @throws GitLabApiException if any exception occurs */ public Stream getTreeStream(Object projectIdOrPath, String filePath, String refName) throws GitLabApiException { return (getTreeStream(projectIdOrPath, filePath, refName, false)); } /** * Get a list of repository files and directories in a project. * *
GitLab Endpoint: GET /projects/:id/repository/tree
* * id (required) - The ID of a project * path (optional) - The path inside repository. Used to get contend of subdirectories * ref_name (optional) - The name of a repository branch or tag or if not given the default branch * recursive (optional) - Boolean value used to get a recursive tree (false by default) * * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param filePath the path inside repository, used to get content of subdirectories * @param refName the name of a repository branch or tag or if not given the default branch * @param recursive flag to get a recursive tree or not * @return a tree with the directories and files of a project * @throws GitLabApiException if any exception occurs */ public List getTree(Object projectIdOrPath, String filePath, String refName, Boolean recursive) throws GitLabApiException { return (getTree(projectIdOrPath, filePath, refName, recursive, getDefaultPerPage()).all()); } /** * Get a Pager of repository files and directories in a project. * *
GitLab Endpoint: GET /projects/:id/repository/tree
* * id (required) - The ID of a project * path (optional) - The path inside repository. Used to get contend of subdirectories * ref_name (optional) - The name of a repository branch or tag or if not given the default branch * recursive (optional) - Boolean value used to get a recursive tree (false by default) * * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param filePath the path inside repository, used to get content of subdirectories * @param refName the name of a repository branch or tag or if not given the default branch * @param recursive flag to get a recursive tree or not * @param itemsPerPage the number of Project instances that will be fetched per page * @return a tree with the directories and files of a project * @throws GitLabApiException if any exception occurs */ public Pager getTree(Object projectIdOrPath, String filePath, String refName, Boolean recursive, int itemsPerPage) throws GitLabApiException { Form formData = new GitLabApiForm() .withParam("id", getProjectIdOrPath(projectIdOrPath), true) .withParam("path", filePath, false) .withParam(isApiVersion(ApiVersion.V3) ? "ref_name" : "ref", refName, false) .withParam("recursive", recursive, false); return (new Pager(this, TreeItem.class, itemsPerPage, formData.asMap(), "projects", getProjectIdOrPath(projectIdOrPath), "repository", "tree")); } /** * Get a Stream of repository files and directories in a project. * *
GitLab Endpoint: GET /projects/:id/repository/tree
* * id (required) - The ID of a project * path (optional) - The path inside repository. Used to get contend of subdirectories * ref_name (optional) - The name of a repository branch or tag or if not given the default branch * recursive (optional) - Boolean value used to get a recursive tree (false by default) * * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param filePath the path inside repository, used to get content of subdirectories * @param refName the name of a repository branch or tag or if not given the default branch * @param recursive flag to get a recursive tree or not * @return a Stream containing a tree with the directories and files of a project * @throws GitLabApiException if any exception occurs */ public Stream getTreeStream(Object projectIdOrPath, String filePath, String refName, Boolean recursive) throws GitLabApiException { return (getTree(projectIdOrPath, filePath, refName, recursive, getDefaultPerPage()).stream()); } /** * Get the raw file contents for a blob by blob SHA. * *
GitLab Endpoint: GET /projects/:id/repository/raw_blobs/:sha
* * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param sha the SHA of the file to get the contents for * @return the raw file contents for the blob on an InputStream * @throws GitLabApiException if any exception occurs */ public InputStream getRawBlobContent(Object projectIdOrPath, String sha) throws GitLabApiException { Response response = getWithAccepts(Response.Status.OK, null, MediaType.MEDIA_TYPE_WILDCARD, "projects", getProjectIdOrPath(projectIdOrPath), "repository", "blobs", sha, "raw"); return (response.readEntity(InputStream.class)); } /** * Get an archive of the complete repository by SHA (optional). * *
GitLab Endpoint: GET /projects/:id/repository/archive
* * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param sha the SHA of the archive to get * @return an input stream that can be used to save as a file * or to read the content of the archive * @throws GitLabApiException if any exception occurs */ public InputStream getRepositoryArchive(Object projectIdOrPath, String sha) throws GitLabApiException { Form formData = new GitLabApiForm().withParam("sha", sha); Response response = getWithAccepts(Response.Status.OK, formData.asMap(), MediaType.MEDIA_TYPE_WILDCARD, "projects", getProjectIdOrPath(projectIdOrPath), "repository", "archive"); return (response.readEntity(InputStream.class)); } /** * Get an archive of the complete repository by SHA (optional). * *
GitLab Endpoint: GET /projects/:id/repository/archive
* * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param sha the SHA of the archive to get * @param format The archive format, defaults to "tar.gz" if null * @return an input stream that can be used to save as a file or to read the content of the archive * @throws GitLabApiException if format is not a valid archive format or any exception occurs */ public InputStream getRepositoryArchive(Object projectIdOrPath, String sha, String format) throws GitLabApiException { ArchiveFormat archiveFormat = ArchiveFormat.forValue(format); return (getRepositoryArchive(projectIdOrPath, sha, archiveFormat)); } /** * Get an archive of the complete repository by SHA (optional). * *
GitLab Endpoint: GET /projects/:id/repository/archive
* * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param sha the SHA of the archive to get * @param format The archive format, defaults to TAR_GZ if null * @return an input stream that can be used to save as a file or to read the content of the archive * @throws GitLabApiException if any exception occurs */ public InputStream getRepositoryArchive(Object projectIdOrPath, String sha, ArchiveFormat format) throws GitLabApiException { if (format == null) { format = ArchiveFormat.TAR_GZ; } /* * Gitlab-ce has a bug when you try to download file archives with format by using "&format=zip(or tar... etc.)", * there is a solution to request .../archive.:format instead of .../archive?format=:format. * * Issue: https://gitlab.com/gitlab-org/gitlab-ce/issues/45992 * https://gitlab.com/gitlab-com/support-forum/issues/3067 */ Form formData = new GitLabApiForm().withParam("sha", sha); Response response = getWithAccepts(Response.Status.OK, formData.asMap(), MediaType.MEDIA_TYPE_WILDCARD, "projects", getProjectIdOrPath(projectIdOrPath), "repository", "archive" + "." + format.toString()); return (response.readEntity(InputStream.class)); } /** * Get an archive of the complete repository by SHA (optional) and saves to the specified directory. * If the archive already exists in the directory it will be overwritten. * *
GitLab Endpoint: GET /projects/:id/repository/archive
* * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param sha the SHA of the archive to get * @param directory the File instance of the directory to save the archive to, if null will use "java.io.tmpdir" * @return a File instance pointing to the downloaded instance * @throws GitLabApiException if any exception occurs */ public File getRepositoryArchive(Object projectIdOrPath, String sha, File directory) throws GitLabApiException { Form formData = new GitLabApiForm().withParam("sha", sha); Response response = getWithAccepts(Response.Status.OK, formData.asMap(), MediaType.MEDIA_TYPE_WILDCARD, "projects", getProjectIdOrPath(projectIdOrPath), "repository", "archive"); try { if (directory == null) directory = new File(System.getProperty("java.io.tmpdir")); String filename = FileUtils.getFilenameFromContentDisposition(response); File file = new File(directory, filename); InputStream in = response.readEntity(InputStream.class); Files.copy(in, file.toPath(), StandardCopyOption.REPLACE_EXISTING); return (file); } catch (IOException ioe) { throw new GitLabApiException(ioe); } } /** * Get an archive of the complete repository by SHA (optional) and saves to the specified directory. * If the archive already exists in the directory it will be overwritten. * *
GitLab Endpoint: GET /projects/:id/repository/archive
* * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param sha the SHA of the archive to get * @param directory the File instance of the directory to save the archive to, if null will use "java.io.tmpdir" * @param format The archive format, defaults to "tar.gz" if null * @return a File instance pointing to the downloaded instance * @throws GitLabApiException if format is not a valid archive format or any exception occurs */ public File getRepositoryArchive(Object projectIdOrPath, String sha, File directory, String format) throws GitLabApiException { ArchiveFormat archiveFormat = ArchiveFormat.forValue(format); return (getRepositoryArchive(projectIdOrPath, sha, directory, archiveFormat)); } /** * Get an archive of the complete repository by SHA (optional) and saves to the specified directory. * If the archive already exists in the directory it will be overwritten. * *
GitLab Endpoint: GET /projects/:id/repository/archive
* * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param sha the SHA of the archive to get * @param directory the File instance of the directory to save the archive to, if null will use "java.io.tmpdir" * @param format The archive format, defaults to TAR_GZ if null * @return a File instance pointing to the downloaded instance * @throws GitLabApiException if any exception occurs */ public File getRepositoryArchive(Object projectIdOrPath, String sha, File directory, ArchiveFormat format) throws GitLabApiException { if (format == null) { format = ArchiveFormat.TAR_GZ; } /* * Gitlab-ce has a bug when you try to download file archives with format by using "&format=zip(or tar... etc.)", * there is a solution to request .../archive.:format instead of .../archive?format=:format. * * Issue: https://gitlab.com/gitlab-org/gitlab-ce/issues/45992 * https://gitlab.com/gitlab-com/support-forum/issues/3067 */ Form formData = new GitLabApiForm().withParam("sha", sha); Response response = getWithAccepts(Response.Status.OK, formData.asMap(), MediaType.MEDIA_TYPE_WILDCARD, "projects", getProjectIdOrPath(projectIdOrPath), "repository", "archive" + "." + format.toString()); try { if (directory == null) directory = new File(System.getProperty("java.io.tmpdir")); String filename = FileUtils.getFilenameFromContentDisposition(response); File file = new File(directory, filename); InputStream in = response.readEntity(InputStream.class); Files.copy(in, file.toPath(), StandardCopyOption.REPLACE_EXISTING); return (file); } catch (IOException ioe) { throw new GitLabApiException(ioe); } } /** * Compare branches, tags or commits. This can be accessed without authentication * if the repository is publicly accessible. * * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param from the commit SHA or branch name * @param to the commit SHA or branch name * @param straight specifies the comparison method, true for direct comparison between from and to (from..to), * false to compare using merge base (from…to)’. * @return a CompareResults containing the results of the comparison * @throws GitLabApiException if any exception occurs */ public CompareResults compare(Object projectIdOrPath, String from, String to, boolean straight) throws GitLabApiException { Form formData = new GitLabApiForm() .withParam("from", from, true) .withParam("to", to, true) .withParam("straight", straight); Response response = get(Response.Status.OK, formData.asMap(), "projects", getProjectIdOrPath(projectIdOrPath), "repository", "compare"); return (response.readEntity(CompareResults.class)); } /** * Compare branches, tags or commits. This can be accessed without authentication * if the repository is publicly accessible. * * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param from the commit SHA or branch name * @param to the commit SHA or branch name * @return a CompareResults containing the results of the comparison * @throws GitLabApiException if any exception occurs */ public CompareResults compare(Object projectIdOrPath, String from, String to) throws GitLabApiException { return (compare(projectIdOrPath, from, to, false)); } /** * Get a list of contributors from a project. * *
GitLab Endpoint: GET /projects/:id/repository/contributors
* * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @return a List containing the contributors for the specified project ID * @throws GitLabApiException if any exception occurs */ public List getContributors(Object projectIdOrPath) throws GitLabApiException { return (getContributors(projectIdOrPath, getDefaultPerPage()).all()); } /** * Get a list of contributors from a project and in the specified page range. * *
GitLab Endpoint: GET /projects/:id/repository/contributors
* * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param page the page to get * @param perPage the number of projects per page * @return a List containing the contributors for the specified project ID * @throws GitLabApiException if any exception occurs */ public List getContributors(Object projectIdOrPath, int page, int perPage) throws GitLabApiException { Response response = get(Response.Status.OK, getPageQueryParams(page, perPage), "projects", getProjectIdOrPath(projectIdOrPath), "repository", "contributors"); return (response.readEntity(new GenericType>() { })); } /** * Get a Pager of contributors from a project. * *
GitLab Endpoint: GET /projects/:id/repository/contributors
* * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param itemsPerPage the number of Project instances that will be fetched per page * @return a Pager containing the contributors for the specified project ID * @throws GitLabApiException if any exception occurs */ public Pager getContributors(Object projectIdOrPath, int itemsPerPage) throws GitLabApiException { return new Pager(this, Contributor.class, itemsPerPage, null, "projects", getProjectIdOrPath(projectIdOrPath), "repository", "contributors"); } /** * Get a list of contributors from a project. * *
GitLab Endpoint: GET /projects/:id/repository/contributors
* * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @return a List containing the contributors for the specified project ID * @throws GitLabApiException if any exception occurs */ public Stream getContributorsStream(Object projectIdOrPath) throws GitLabApiException { return (getContributors(projectIdOrPath, getDefaultPerPage()).stream()); } /** * Get the common ancestor for 2 or more refs (commit SHAs, branch names or tags). * *
GitLab Endpoint: GET /projects/:id/repository/merge_base
* * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param refs a List of 2 or more refs (commit SHAs, branch names or tags) * @return the Commit instance containing the common ancestor * @throws GitLabApiException if any exception occurs */ public Commit getMergeBase(Object projectIdOrPath, List refs) throws GitLabApiException { GitLabApiForm queryParams = new GitLabApiForm().withParam("refs", refs, true); Response response = get(Response.Status.OK, queryParams.asMap(), "projects", getProjectIdOrPath(projectIdOrPath), "repository", "merge_base"); return (response.readEntity(Commit.class)); } /** * Get an Optional instance with the value of the common ancestor * for 2 or more refs (commit SHAs, branch names or tags). * *
GitLab Endpoint: GET /projects/:id/repository/merge_base
* * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param refs a List of 2 or more refs (commit SHAs, branch names or tags) * @return an Optional instance with the Commit instance containing the common ancestor as the value * @throws GitLabApiException if any exception occurs */ public Optional getOptionalMergeBase(Object projectIdOrPath, List refs) throws GitLabApiException { try { return (Optional.ofNullable(getMergeBase(projectIdOrPath, refs))); } catch (GitLabApiException glae) { return (GitLabApi.createOptionalFromException(glae)); } } /** *

Delete all branches that are merged into the project’s default branch.

* NOTE: Protected branches will not be deleted as part of this operation. * *
GitLab Endpoint: /projects/:id/repository/merged_branches
* * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @throws GitLabApiException if any exception occurs */ public void deleteMergedBranches(Object projectIdOrPath) throws GitLabApiException { delete(Response.Status.NO_CONTENT, null, "projects", getProjectIdOrPath(projectIdOrPath), "repository", "merged_branches"); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy