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

org.aoju.bus.gitlab.GroupApi 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 org.aoju.bus.gitlab.support.ISO8601;

import javax.ws.rs.core.Form;
import javax.ws.rs.core.GenericType;
import javax.ws.rs.core.Response;
import java.io.File;
import java.util.Date;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.stream.Stream;

/**
 * This class implements the client side API for the GitLab groups calls.
 *
 * @see Groups API at GitLab
 * @see Group and project members API at GitLab
 * @see Group and project access requests API
 * @see Group badges API
 * @see Group audit events API
 */
public class GroupApi extends AbstractApi {

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

    /**
     * 

Get a list of groups. (As user: my groups, as admin: all groups)

* * WARNING: Do not use this method to fetch groups from https://gitlab.com, * gitlab.com has many 1,000's of public groups and it will a long time to fetch all of them. * Instead use {@link #getGroups(int itemsPerPage)} which will return a Pager of Group instances. * *
GitLab Endpoint: GET /groups
* * @return the list of groups viewable by the authenticated user * @throws GitLabApiException if any exception occurs */ public List getGroups() throws GitLabApiException { String url = this.gitLabApi.getGitLabServerUrl(); if (url.startsWith("https://gitlab.com")) { GitLabApi.getLogger().warning("Fetching all groups from " + url + " may take many minutes to complete, use Pager getGroups(int) instead."); } return (getGroups(getDefaultPerPage()).all()); } /** * Get a list of groups (As user: my groups, as admin: all groups) and in the specified page range. * *
GitLab Endpoint: GET /groups
* * @param page the page to get * @param perPage the number of Group instances per page * @return the list of groups viewable by the authenticated userin the specified page range * @throws GitLabApiException if any exception occurs */ public List getGroups(int page, int perPage) throws GitLabApiException { Response response = get(Response.Status.OK, getPageQueryParams(page, perPage), "groups"); return (response.readEntity(new GenericType>() { })); } /** * Get a Pager of groups. (As user: my groups, as admin: all groups) * *
GitLab Endpoint: GET /groups
* * @param itemsPerPage the number of Group instances that will be fetched per page * @return the list of groups viewable by the authenticated user * @throws GitLabApiException if any exception occurs */ public Pager getGroups(int itemsPerPage) throws GitLabApiException { return (new Pager(this, Group.class, itemsPerPage, null, "groups")); } /** * Get a Stream of groups. (As user: my groups, as admin: all groups) * *
GitLab Endpoint: GET /groups
* * @return a Stream of groups viewable by the authenticated user * @throws GitLabApiException if any exception occurs */ public Stream getGroupsStream() throws GitLabApiException { return (getGroups(getDefaultPerPage()).stream()); } /** * Get all groups that match your string in their name or path. * * @param search the group name or path search criteria * @return a List containing matching Group instances * @throws GitLabApiException if any exception occurs */ public List getGroups(String search) throws GitLabApiException { return (getGroups(search, getDefaultPerPage()).all()); } /** * Get all groups that match your string in their name or path. * * @param search the group name or path search criteria * @param page the page to get * @param perPage the number of Group instances per page * @return a List containing matching Group instances * @throws GitLabApiException if any exception occurs */ public List getGroups(String search, int page, int perPage) throws GitLabApiException { Form formData = new GitLabApiForm().withParam("search", search).withParam(PAGE_PARAM, page).withParam(PER_PAGE_PARAM, perPage); Response response = get(Response.Status.OK, formData.asMap(), "groups"); return (response.readEntity(new GenericType>() { })); } /** * Get all groups that match your string in their name or path. * * @param search the group name or path search criteria * @param itemsPerPage the number of Group instances that will be fetched per page * @return a Pager containing matching Group instances * @throws GitLabApiException if any exception occurs */ public Pager getGroups(String search, int itemsPerPage) throws GitLabApiException { Form formData = new GitLabApiForm().withParam("search", search); return (new Pager(this, Group.class, itemsPerPage, formData.asMap(), "groups")); } /** * Get all groups that match your string in their name or path as a Stream. * * @param search the group name or path search criteria * @return a Stream containing matching Group instances * @throws GitLabApiException if any exception occurs */ public Stream getGroupsStream(String search) throws GitLabApiException { return (getGroups(search, getDefaultPerPage()).stream()); } /** * Get a list of visible groups for the authenticated user using the provided filter. * *
GitLab Endpoint: GET /groups
* * @param filter the GroupFilter to match against * @return a List<Group> of the matching groups * @throws GitLabApiException if any exception occurs */ public List getGroups(GroupFilter filter) throws GitLabApiException { return (getGroups(filter, getDefaultPerPage()).all()); } /** * Get a Pager of visible groups for the authenticated user using the provided filter. * *
GitLab Endpoint: GET /groups
* * @param filter the GroupFilter to match against * @param itemsPerPage the number of Group instances that will be fetched per page * @return a Pager containing matching Group instances * @throws GitLabApiException if any exception occurs */ public Pager getGroups(GroupFilter filter, int itemsPerPage) throws GitLabApiException { GitLabApiForm formData = filter.getQueryParams(); return (new Pager(this, Group.class, itemsPerPage, formData.asMap(), "groups")); } /** * Get a Stream of visible groups for the authenticated user using the provided filter. * *
GitLab Endpoint: GET /groups
* * @param filter the GroupFilter to match against * @return a Stream<Group> of the matching groups * @throws GitLabApiException if any exception occurs */ public Stream getGroupsStream(GroupFilter filter) throws GitLabApiException { return (getGroups(filter, getDefaultPerPage()).stream()); } /** * Get a list of visible direct subgroups in this group. * *
GitLab Endpoint: GET /groups/:id/subgroups
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required * @return a List<Group> containing the group's sub-groups * @throws GitLabApiException if any exception occurs * @since GitLab 10.3.0 */ public List getSubGroups(Object groupIdOrPath) throws GitLabApiException { return (getSubGroups(groupIdOrPath, getDefaultPerPage()).all()); } /** * Get a Pager of visible direct subgroups in this group. * *
GitLab Endpoint: GET /groups/:id/subgroups
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required * @param itemsPerPage the number of Group instances that will be fetched per page * @return a Pager containing matching Group instances * @throws GitLabApiException if any exception occurs * @since GitLab 10.3.0 */ public Pager getSubGroups(Object groupIdOrPath, int itemsPerPage) throws GitLabApiException { return (new Pager(this, Group.class, itemsPerPage, null, "groups", getGroupIdOrPath(groupIdOrPath), "subgroups")); } /** * Get a Stream of visible direct subgroups in this group. * *
GitLab Endpoint: GET /groups/:id/subgroups
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required * @return a Stream<Group> containing the group's sub-groups * @throws GitLabApiException if any exception occurs * @since GitLab 10.3.0 */ public Stream getSubGroupsStream(Object groupIdOrPath) throws GitLabApiException { return (getSubGroups(groupIdOrPath, getDefaultPerPage()).stream()); } /** * Get a list of visible direct subgroups in this group. * *
GitLab Endpoint: GET /groups/:id/subgroups
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required * @param skipGroups skip the group IDs passed * @param allAvailable show all the groups you have access to (defaults to false for authenticated users) * @param search return the list of authorized groups matching the search criteria * @param orderBy order groups by NAME or PATH. Default is NAME * @param sortOrder order groups in ASC or DESC order. Default is ASC * @param statistics include group statistics (admins only) * @param owned limit to groups owned by the current user * @return a List<Group> of the matching subgroups * @throws GitLabApiException if any exception occurs * @since GitLab 10.3.0 */ public List getSubGroups(Object groupIdOrPath, List skipGroups, Boolean allAvailable, String search, GroupOrderBy orderBy, SortOrder sortOrder, Boolean statistics, Boolean owned) throws GitLabApiException { return (getSubGroups(groupIdOrPath, skipGroups, allAvailable, search, orderBy, sortOrder, statistics, owned, getDefaultPerPage()).all()); } /** * Get a list of visible direct subgroups in this group. * *
GitLab Endpoint: GET /groups/:id/subgroups
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required * @param skipGroups skip the group IDs passed * @param allAvailable show all the groups you have access to (defaults to false for authenticated users) * @param search return the list of authorized groups matching the search criteria * @param orderBy order groups by NAME or PATH. Default is NAME * @param sortOrder order groups in ASC or DESC order. Default is ASC * @param statistics include group statistics (admins only) * @param owned limit to groups owned by the current user * @param page the page to get * @param perPage the number of Group instances per page * @return a List<Group> of the matching subgroups * @throws GitLabApiException if any exception occurs * @since GitLab 10.3.0 */ public List getSubGroups(Object groupIdOrPath, List skipGroups, Boolean allAvailable, String search, GroupOrderBy orderBy, SortOrder sortOrder, Boolean statistics, Boolean owned, int page, int perPage) throws GitLabApiException { Form formData = new GitLabApiForm() .withParam("skip_groups", skipGroups) .withParam("all_available", allAvailable) .withParam("search", search) .withParam("order_by", orderBy) .withParam("sort_order", sortOrder) .withParam("statistics", statistics) .withParam("owned", owned) .withParam(PAGE_PARAM, page) .withParam(PER_PAGE_PARAM, perPage); Response response = get(Response.Status.OK, formData.asMap(), "groups", getGroupIdOrPath(groupIdOrPath), "subgroups"); return (response.readEntity(new GenericType>() { })); } /** * Get a Pager of visible direct subgroups in this group. * *
GitLab Endpoint: GET /groups/:id/subgroups
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required * @param skipGroups skip the group IDs passed * @param allAvailable show all the groups you have access to (defaults to false for authenticated users) * @param search return the list of authorized groups matching the search criteria * @param orderBy order groups by NAME or PATH. Default is NAME * @param sortOrder order groups in ASC or DESC order. Default is ASC * @param statistics include group statistics (admins only) * @param owned limit to groups owned by the current user * @param itemsPerPage the number of Group instances that will be fetched per page * @return a Pager containing matching Group instances * @throws GitLabApiException if any exception occurs * @since GitLab 10.3.0 */ public Pager getSubGroups(Object groupIdOrPath, List skipGroups, Boolean allAvailable, String search, GroupOrderBy orderBy, SortOrder sortOrder, Boolean statistics, Boolean owned, int itemsPerPage) throws GitLabApiException { Form formData = new GitLabApiForm() .withParam("skip_groups", skipGroups) .withParam("all_available", allAvailable) .withParam("search", search) .withParam("order_by", orderBy) .withParam("sort_order", sortOrder) .withParam("statistics", statistics) .withParam("owned", owned); return (new Pager(this, Group.class, itemsPerPage, formData.asMap(), "groups", getGroupIdOrPath(groupIdOrPath), "subgroups")); } /** * Get a Stream of visible direct subgroups in this group. * *
GitLab Endpoint: GET /groups/:id/subgroups
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required * @param skipGroups skip the group IDs passed * @param allAvailable show all the groups you have access to (defaults to false for authenticated users) * @param search return the list of authorized groups matching the search criteria * @param orderBy order groups by NAME or PATH. Default is NAME * @param sortOrder order groups in ASC or DESC order. Default is ASC * @param statistics include group statistics (admins only) * @param owned limit to groups owned by the current user * @return a Stream<Group> of the matching subgroups * @throws GitLabApiException if any exception occurs * @since GitLab 10.3.0 */ public Stream getSubGroupsStream(Object groupIdOrPath, List skipGroups, Boolean allAvailable, String search, GroupOrderBy orderBy, SortOrder sortOrder, Boolean statistics, Boolean owned) throws GitLabApiException { return (getSubGroups(groupIdOrPath, skipGroups, allAvailable, search, orderBy, sortOrder, statistics, owned, getDefaultPerPage()).stream()); } /** * Get a list of projects belonging to the specified group ID and filter. * *
GitLab Endpoint: GET /groups/:id/projects
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param filter the GroupProjectsFilter instance holding the filter values for the query * @return a List containing Project instances that belong to the group and match the provided filter * @throws GitLabApiException if any exception occurs */ public List getProjects(Object groupIdOrPath, GroupProjectsFilter filter) throws GitLabApiException { return (getProjects(groupIdOrPath, filter, getDefaultPerPage()).all()); } /** * Get a Pager of projects belonging to the specified group ID and filter. * *
GitLab Endpoint: GET /groups/:id/projects
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param filter the GroupProjectsFilter instance holding the filter values for the query * @param itemsPerPage the number of Project instances that will be fetched per page * @return a Pager containing Project instances that belong to the group and match the provided filter * @throws GitLabApiException if any exception occurs */ public Pager getProjects(Object groupIdOrPath, GroupProjectsFilter filter, int itemsPerPage) throws GitLabApiException { GitLabApiForm formData = filter.getQueryParams(); return (new Pager(this, Project.class, itemsPerPage, formData.asMap(), "groups", getGroupIdOrPath(groupIdOrPath), "projects")); } /** * Get a Stream of projects belonging to the specified group ID and filter. * *
GitLab Endpoint: GET /groups/:id/projects
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param filter the GroupProjectsFilter instance holding the filter values for the query * @return a Stream containing Project instances that belong to the group and match the provided filter * @throws GitLabApiException if any exception occurs */ public Stream getProjectsStream(Object groupIdOrPath, GroupProjectsFilter filter) throws GitLabApiException { return (getProjects(groupIdOrPath, filter, getDefaultPerPage()).stream()); } /** * Get a list of projects belonging to the specified group ID. * *
GitLab Endpoint: GET /groups/:id/projects
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @return a list of projects belonging to the specified group ID * @throws GitLabApiException if any exception occurs */ public List getProjects(Object groupIdOrPath) throws GitLabApiException { return (getProjects(groupIdOrPath, getDefaultPerPage()).all()); } /** * Get a list of projects belonging to the specified group ID in the specified page range. * *
GitLab Endpoint: GET /groups/:id/projects
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param page the page to get * @param perPage the number of Project instances per page * @return a list of projects belonging to the specified group ID in the specified page range * @throws GitLabApiException if any exception occurs */ public List getProjects(Object groupIdOrPath, int page, int perPage) throws GitLabApiException { Response response = get(Response.Status.OK, getPageQueryParams(page, perPage), "groups", getGroupIdOrPath(groupIdOrPath), "projects"); return (response.readEntity(new GenericType>() { })); } /** * Get a Pager of projects belonging to the specified group ID. * *
GitLab Endpoint: GET /groups/:id/projects
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param itemsPerPage the number of Project instances that will be fetched per page * @return a Pager of projects belonging to the specified group ID * @throws GitLabApiException if any exception occurs */ public Pager getProjects(Object groupIdOrPath, int itemsPerPage) throws GitLabApiException { return (new Pager(this, Project.class, itemsPerPage, null, "groups", getGroupIdOrPath(groupIdOrPath), "projects")); } /** * Get a Stream of projects belonging to the specified group ID. * *
GitLab Endpoint: GET /groups/:id/projects
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @return a Stream of projects belonging to the specified group ID * @throws GitLabApiException if any exception occurs */ public Stream getProjectsStream(Object groupIdOrPath) throws GitLabApiException { return (getProjects(groupIdOrPath, getDefaultPerPage()).stream()); } /** * Get all details of a group. * *
GitLab Endpoint: GET /groups/:id
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @return the Group instance for the specified group path * @throws GitLabApiException if any exception occurs */ public Group getGroup(Object groupIdOrPath) throws GitLabApiException { Response response = get(Response.Status.OK, null, "groups", getGroupIdOrPath(groupIdOrPath)); return (response.readEntity(Group.class)); } /** * Get all details of a group as an Optional instance. * *
GitLab Endpoint: GET /groups/:id
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @return the Group for the specified group path as an Optional instance */ public Optional getOptionalGroup(Object groupIdOrPath) { try { return (Optional.ofNullable(getGroup(groupIdOrPath))); } catch (GitLabApiException glae) { return (GitLabApi.createOptionalFromException(glae)); } } /** * Creates a new project group. Available only for users who can create groups. * *
GitLab Endpoint: POST /groups
* * @param params a GroupParams instance holding the parameters for the group creation * @return the created Group instance * @throws GitLabApiException if any exception occurs */ public Group createGroup(GroupParams params) throws GitLabApiException { Response response = post(Response.Status.CREATED, params.getForm(true), "groups"); return (response.readEntity(Group.class)); } /** * Updates the project group. Only available to group owners and administrators. * *
GitLab Endpoint: PUT /groups
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param params the GroupParams instance holding the properties to update * @return updated Group instance * @throws GitLabApiException at any exception */ public Group updateGroup(Object groupIdOrPath, GroupParams params) throws GitLabApiException { Response response = putWithFormData(Response.Status.OK, params.getForm(false), "groups", getGroupIdOrPath(groupIdOrPath)); return (response.readEntity(Group.class)); } /** * Creates a new project group. Available only for users who can create groups. * *
GitLab Endpoint: POST /groups
* * @param name the name of the group to add * @param path the path for the group * @return the created Group instance * @throws GitLabApiException if any exception occurs */ public Group addGroup(String name, String path) throws GitLabApiException { Form formData = new Form(); formData.param("name", name); formData.param("path", path); Response response = post(Response.Status.CREATED, formData, "groups"); return (response.readEntity(Group.class)); } public Group addGroup(Group group) throws GitLabApiException { Form formData = new GitLabApiForm() .withParam("name", group.getName(), true) .withParam("path", group.getPath(), true) .withParam("description", group.getDescription()) .withParam("visibility", group.getVisibility()) .withParam("lfs_enabled", group.getLfsEnabled()) .withParam("request_access_enabled", group.getRequestAccessEnabled()) .withParam("parent_id", isApiVersion(GitLabApi.ApiVersion.V3) ? null : group.getParentId()); Response response = post(Response.Status.CREATED, formData, "groups"); return (response.readEntity(Group.class)); } /** * Creates a new project group. Available only for users who can create groups. * *
GitLab Endpoint: POST /groups
* * @param name the name of the group to add * @param path the path for the group * @param description (optional) - The group's description * @param visibility (optional) - The group's visibility. Can be private, internal, or public. * @param lfsEnabled (optional) - Enable/disable Large File Storage (LFS) for the projects in this group * @param requestAccessEnabled (optional) - Allow users to request member access * @param parentId (optional) - The parent group id for creating nested group * @return the created Group instance * @throws GitLabApiException if any exception occurs */ public Group addGroup(String name, String path, String description, Visibility visibility, Boolean lfsEnabled, Boolean requestAccessEnabled, Long parentId) throws GitLabApiException { Form formData = new GitLabApiForm() .withParam("name", name, true) .withParam("path", path, true) .withParam("description", description) .withParam("visibility", visibility) .withParam("lfs_enabled", lfsEnabled) .withParam("request_access_enabled", requestAccessEnabled) .withParam("parent_id", isApiVersion(GitLabApi.ApiVersion.V3) ? null : parentId); Response response = post(Response.Status.CREATED, formData, "groups"); return (response.readEntity(Group.class)); } /** * Updates a project group. Available only for users who can create groups. * *
GitLab Endpoint: PUT /groups
* * @param group to update * @return updated group instance * @throws GitLabApiException at any exception */ public Group updateGroup(Group group) throws GitLabApiException { Form formData = new GitLabApiForm() .withParam("name", group.getName()) .withParam("path", group.getPath()) .withParam("description", group.getDescription()) .withParam("visibility", group.getVisibility()) .withParam("lfs_enabled", group.getLfsEnabled()) .withParam("request_access_enabled", group.getRequestAccessEnabled()) .withParam("parent_id", isApiVersion(GitLabApi.ApiVersion.V3) ? null : group.getParentId()); Response response = put(Response.Status.OK, formData.asMap(), "groups", group.getId()); return (response.readEntity(Group.class)); } /** * Updates a project group. Available only for users who can create groups. * *
GitLab Endpoint: PUT /groups
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param name the name of the group to add * @param path the path for the group * @param description (optional) - The group's description * @param visibility (optional) - The group's visibility. Can be private, internal, or public. * @param lfsEnabled (optional) - Enable/disable Large File Storage (LFS) for the projects in this group * @param requestAccessEnabled (optional) - Allow users to request member access * @param parentId (optional) - The parent group id for creating nested group * @return the updated Group instance * @throws GitLabApiException if any exception occurs */ public Group updateGroup(Object groupIdOrPath, String name, String path, String description, Visibility visibility, Boolean lfsEnabled, Boolean requestAccessEnabled, Long parentId) throws GitLabApiException { Form formData = new GitLabApiForm() .withParam("name", name) .withParam("path", path) .withParam("description", description) .withParam("visibility", visibility) .withParam("lfs_enabled", lfsEnabled) .withParam("request_access_enabled", requestAccessEnabled) .withParam("parent_id", isApiVersion(GitLabApi.ApiVersion.V3) ? null : parentId); Response response = put(Response.Status.OK, formData.asMap(), "groups", getGroupIdOrPath(groupIdOrPath)); return (response.readEntity(Group.class)); } /** * Creates a new project group. Available only for users who can create groups. * *
GitLab Endpoint: POST /groups
* * @param name the name of the group to add * @param path the path for the group * @param description (optional) - The group's description * @param membershipLock (optional, boolean) - Prevent adding new members to project membership within this group * @param shareWithGroupLock (optional, boolean) - Prevent sharing a project with another group within this group * @param visibility (optional) - The group's visibility. Can be private, internal, or public. * @param lfsEnabled (optional) - Enable/disable Large File Storage (LFS) for the projects in this group * @param requestAccessEnabled (optional) - Allow users to request member access. * @param parentId (optional) - The parent group id for creating nested group. * @param sharedRunnersMinutesLimit (optional) - (admin-only) Pipeline minutes quota for this group * @return the created Group instance * @throws GitLabApiException if any exception occurs * @deprecated Will be removed in version 6.0, replaced by {@link #addGroup(String, String, String, Visibility, * Boolean, Boolean, Long)} */ @Deprecated public Group addGroup(String name, String path, String description, Boolean membershipLock, Boolean shareWithGroupLock, Visibility visibility, Boolean lfsEnabled, Boolean requestAccessEnabled, Long parentId, Integer sharedRunnersMinutesLimit) throws GitLabApiException { Form formData = new GitLabApiForm() .withParam("name", name) .withParam("path", path) .withParam("description", description) .withParam("membership_lock", membershipLock) .withParam("share_with_group_lock", shareWithGroupLock) .withParam("visibility", visibility) .withParam("lfs_enabled", lfsEnabled) .withParam("request_access_enabled", requestAccessEnabled) .withParam("parent_id", parentId) .withParam("shared_runners_minutes_limit", sharedRunnersMinutesLimit); Response response = post(Response.Status.CREATED, formData, "groups"); return (response.readEntity(Group.class)); } /** * Updates a project group. Available only for users who can create groups. * *
GitLab Endpoint: PUT /groups
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param name the name of the group to add * @param path the path for the group * @param description (optional) - The group's description * @param membershipLock (optional, boolean) - Prevent adding new members to project membership within this group * @param shareWithGroupLock (optional, boolean) - Prevent sharing a project with another group within this group * @param visibility (optional) - The group's visibility. Can be private, internal, or public. * @param lfsEnabled (optional) - Enable/disable Large File Storage (LFS) for the projects in this group * @param requestAccessEnabled (optional) - Allow users to request member access * @param parentId (optional) - The parent group id for creating nested group * @param sharedRunnersMinutesLimit (optional) - (admin-only) Pipeline minutes quota for this group * @return the updated Group instance * @throws GitLabApiException if any exception occurs * @deprecated Will be removed in version 6.0, replaced by {@link #updateGroup(Object, String, String, String, * Visibility, Boolean, Boolean, Long)} */ @Deprecated public Group updateGroup(Object groupIdOrPath, String name, String path, String description, Boolean membershipLock, Boolean shareWithGroupLock, Visibility visibility, Boolean lfsEnabled, Boolean requestAccessEnabled, Long parentId, Integer sharedRunnersMinutesLimit) throws GitLabApiException { Form formData = new GitLabApiForm() .withParam("name", name) .withParam("path", path) .withParam("description", description) .withParam("membership_lock", membershipLock) .withParam("share_with_group_lock", shareWithGroupLock) .withParam("visibility", visibility) .withParam("lfs_enabled", lfsEnabled) .withParam("request_access_enabled", requestAccessEnabled) .withParam("parent_id", parentId) .withParam("shared_runners_minutes_limit", sharedRunnersMinutesLimit); Response response = put(Response.Status.OK, formData.asMap(), "groups", getGroupIdOrPath(groupIdOrPath)); return (response.readEntity(Group.class)); } /** * Removes group with all projects inside. * *
GitLab Endpoint: DELETE /groups/:id
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @throws GitLabApiException if any exception occurs */ public void deleteGroup(Object groupIdOrPath) throws GitLabApiException { Response.Status expectedStatus = (isApiVersion(GitLabApi.ApiVersion.V3) ? Response.Status.OK : Response.Status.NO_CONTENT); delete(expectedStatus, null, "groups", getGroupIdOrPath(groupIdOrPath)); } /** * Get a list of group members viewable by the authenticated user. * *
GitLab Endpoint: GET /groups/:id/members
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @return a list of group members viewable by the authenticated user * @throws GitLabApiException if any exception occurs */ public List getMembers(Object groupIdOrPath) throws GitLabApiException { return (getMembers(groupIdOrPath, getDefaultPerPage()).all()); } /** * Get a list of group members viewable by the authenticated user in the specified page range. * *
GitLab Endpoint: GET /groups/:id/members
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param page the page to get * @param perPage the number of Member instances per page * @return a list of group members viewable by the authenticated user in the specified page range * @throws GitLabApiException if any exception occurs */ public List getMembers(Object groupIdOrPath, int page, int perPage) throws GitLabApiException { Response response = get(Response.Status.OK, getPageQueryParams(page, perPage), "groups", getGroupIdOrPath(groupIdOrPath), "members"); return (response.readEntity(new GenericType>() { })); } /** * Get a Pager of group members viewable by the authenticated user. * *
GitLab Endpoint: GET /groups/:id/members
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param itemsPerPage the number of Member instances that will be fetched per page * @return a list of group members viewable by the authenticated user * @throws GitLabApiException if any exception occurs */ public Pager getMembers(Object groupIdOrPath, int itemsPerPage) throws GitLabApiException { return (new Pager(this, Member.class, itemsPerPage, null, "groups", getGroupIdOrPath(groupIdOrPath), "members")); } /** * Get a Stream of group members viewable by the authenticated user. * *
GitLab Endpoint: GET /groups/:id/members
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @return a Stream of group members viewable by the authenticated user * @throws GitLabApiException if any exception occurs */ public Stream getMembersStream(Object groupIdOrPath) throws GitLabApiException { return (getMembers(groupIdOrPath, getDefaultPerPage()).stream()); } /** * Get a group member viewable by the authenticated user. * *
GitLab Endpoint: GET /groups/:id/members/:id
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param userId the member ID of the member to get * @return a member viewable by the authenticated user * @throws GitLabApiException if any exception occurs */ public Member getMember(Object groupIdOrPath, long userId) throws GitLabApiException { return (getMember(groupIdOrPath, userId, false)); } /** * Get a group member viewable by the authenticated user as an Optional instance. * *
GitLab Endpoint: GET /groups/:id/members/:id
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param userId the member ID of the member to get * @return a member viewable by the authenticated user as an Optional instance */ public Optional getOptionalMember(Object groupIdOrPath, long userId) { try { return (Optional.ofNullable(getMember(groupIdOrPath, userId, false))); } catch (GitLabApiException glae) { return (GitLabApi.createOptionalFromException(glae)); } } /** * Gets a group team member, optionally including inherited member. * *
GitLab Endpoint: GET /groups/:id/members/all/:user_id
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param userId the user ID of the member * @param includeInherited if true will the member even if inherited thru an ancestor group * @return the member specified by the project ID/user ID pair * @throws GitLabApiException if any exception occurs */ public Member getMember(Object groupIdOrPath, Long userId, Boolean includeInherited) throws GitLabApiException { Response response; if (includeInherited) { response = get(Response.Status.OK, null, "groups", getGroupIdOrPath(groupIdOrPath), "members", "all", userId); } else { response = get(Response.Status.OK, null, "groups", getGroupIdOrPath(groupIdOrPath), "members", userId); } return (response.readEntity(Member.class)); } /** * Gets a group team member, optionally including inherited member. * *
GitLab Endpoint: GET /groups/:id/members/all/:user_id
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param userId the user ID of the member * @param includeInherited if true will the member even if inherited thru an ancestor group * @return the member specified by the group ID/user ID pair as the value of an Optional */ public Optional getOptionalMember(Object groupIdOrPath, Long userId, Boolean includeInherited) { try { return (Optional.ofNullable(getMember(groupIdOrPath, userId, includeInherited))); } catch (GitLabApiException glae) { return (GitLabApi.createOptionalFromException(glae)); } } /** * Gets a list of group members viewable by the authenticated user, including inherited members * through ancestor groups. Returns multiple times the same user (with different member attributes) * when the user is a member of the group and of one or more ancestor group. * *
GitLab Endpoint: GET /groups/:id/members/all
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @return a list of group members viewable by the authenticated user, including inherited members * through ancestor groups * @throws GitLabApiException if any exception occurs */ public List getAllMembers(Object groupIdOrPath) throws GitLabApiException { return (getAllMembers(groupIdOrPath, null, null)); } /** * Gets a list of group members viewable by the authenticated user, including inherited members * through ancestor groups. Returns multiple times the same user (with different member attributes) * when the user is a member of the group and of one or more ancestor group. * *
GitLab Endpoint: GET /groups/:id/members/all
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param page the page to get * @param perPage the number of Member instances per page * @return a list of group members viewable by the authenticated user, including inherited members * through ancestor groups in the specified page range * @throws GitLabApiException if any exception occurs * @deprecated Will be removed in version 6.0 */ @Deprecated public List getAllMembers(Object groupIdOrPath, int page, int perPage) throws GitLabApiException { Response response = get(Response.Status.OK, getPageQueryParams(page, perPage), "groups", getGroupIdOrPath(groupIdOrPath), "members", "all"); return (response.readEntity(new GenericType>() { })); } /** * Gets a Pager of group members viewable by the authenticated user, including inherited members * through ancestor groups. Returns multiple times the same user (with different member attributes) * when the user is a member of the group and of one or more ancestor group. * *
GitLab Endpoint: GET /groups/:id/members/all
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param itemsPerPage the number of Member instances that will be fetched per page * @return a Pager of group members viewable by the authenticated user, including inherited members * through ancestor groups * @throws GitLabApiException if any exception occurs */ public Pager getAllMembers(Object groupIdOrPath, int itemsPerPage) throws GitLabApiException { return (getAllMembers(groupIdOrPath, null, null, itemsPerPage)); } /** * Gets a Stream of group members viewable by the authenticated user, including inherited members * through ancestor groups. Returns multiple times the same user (with different member attributes) * when the user is a member of the group and of one or more ancestor group. * *
GitLab Endpoint: GET /groups/:id/members/all
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @return a Stream of group members viewable by the authenticated user, including inherited members * through ancestor groups * @throws GitLabApiException if any exception occurs */ public Stream getAllMembersStream(Object groupIdOrPath) throws GitLabApiException { return (getAllMembersStream(groupIdOrPath, null, null)); } /** * Gets a list of group members viewable by the authenticated user, including inherited members * through ancestor groups. Returns multiple times the same user (with different member attributes) * when the user is a member of the group and of one or more ancestor group. * *
GitLab Endpoint: GET /groups/:id/members/all
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param query a query string to search for members * @param userIds filter the results on the given user IDs * @return the group members viewable by the authenticated user, including inherited members through ancestor groups * @throws GitLabApiException if any exception occurs */ public List getAllMembers(Object groupIdOrPath, String query, List userIds) throws GitLabApiException { return (getAllMembers(groupIdOrPath, query, userIds, getDefaultPerPage()).all()); } /** * Gets a Pager of group members viewable by the authenticated user, including inherited members * through ancestor groups. Returns multiple times the same user (with different member attributes) * when the user is a member of the group and of one or more ancestor group. * *
GitLab Endpoint: GET /groups/:id/members/all
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param query a query string to search for members * @param userIds filter the results on the given user IDs * @param itemsPerPage the number of Project instances that will be fetched per page * @return a Pager of the group members viewable by the authenticated user, * including inherited members through ancestor groups * @throws GitLabApiException if any exception occurs */ public Pager getAllMembers(Object groupIdOrPath, String query, List userIds, int itemsPerPage) throws GitLabApiException { GitLabApiForm form = new GitLabApiForm().withParam("query", query).withParam("user_ids", userIds); return (new Pager(this, Member.class, itemsPerPage, form.asMap(), "groups", getGroupIdOrPath(groupIdOrPath), "members", "all")); } /** * Gets a Stream of group members viewable by the authenticated user, including inherited members * through ancestor groups. Returns multiple times the same user (with different member attributes) * when the user is a member of the group and of one or more ancestor group. * *
GitLab Endpoint: GET /groups/:id/members/all
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param query a query string to search for members * @param userIds filter the results on the given user IDs * @return a Stream of the group members viewable by the authenticated user, * including inherited members through ancestor groups * @throws GitLabApiException if any exception occurs */ public Stream getAllMembersStream(Object groupIdOrPath, String query, List userIds) throws GitLabApiException { return (getAllMembers(groupIdOrPath, query, userIds, getDefaultPerPage()).stream()); } /** * Adds a user to the list of group members. * *
GitLab Endpoint: POST /groups/:id/members
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param userId the user ID of the member to add, required * @param accessLevel the access level for the new member, required * @return a Member instance for the added user * @throws GitLabApiException if any exception occurs */ public Member addMember(Object groupIdOrPath, Long userId, Integer accessLevel) throws GitLabApiException { return (addMember(groupIdOrPath, userId, accessLevel, null)); } /** * Adds a user to the list of group members. * *
GitLab Endpoint: POST /groups/:id/members
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param userId the user ID of the member to add, required * @param accessLevel the access level for the new member, required * @return a Member instance for the added user * @throws GitLabApiException if any exception occurs */ public Member addMember(Object groupIdOrPath, Long userId, AccessLevel accessLevel) throws GitLabApiException { return (addMember(groupIdOrPath, userId, accessLevel.toValue(), null)); } /** * Adds a user to the list of group members. * *
GitLab Endpoint: POST /groups/:id/members
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required * @param userId the user ID of the member to add, required * @param accessLevel the access level for the new member, required * @param expiresAt the date the membership in the group will expire, optional * @return a Member instance for the added user * @throws GitLabApiException if any exception occurs */ public Member addMember(Object groupIdOrPath, Long userId, AccessLevel accessLevel, Date expiresAt) throws GitLabApiException { return (addMember(groupIdOrPath, userId, accessLevel.toValue(), expiresAt)); } /** * Adds a user to the list of group members. * *
GitLab Endpoint: POST /groups/:id/members
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required * @param userId the user ID of the member to add, required * @param accessLevel the access level for the new member, required * @param expiresAt the date the membership in the group will expire, optional * @return a Member instance for the added user * @throws GitLabApiException if any exception occurs */ public Member addMember(Object groupIdOrPath, Long userId, Integer accessLevel, Date expiresAt) throws GitLabApiException { GitLabApiForm formData = new GitLabApiForm() .withParam("user_id", userId, true) .withParam("access_level", accessLevel, true) .withParam("expires_at", expiresAt, false); Response response = post(Response.Status.CREATED, formData, "groups", getGroupIdOrPath(groupIdOrPath), "members"); return (response.readEntity(Member.class)); } /** * Updates a member of a group. * *
GitLab Endpoint: PUT /groups/:groupId/members/:userId
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required * @param userId the user ID of the member to update, required * @param accessLevel the new access level for the member, required * @return the updated member * @throws GitLabApiException if any exception occurs */ public Member updateMember(Object groupIdOrPath, Long userId, Integer accessLevel) throws GitLabApiException { return (updateMember(groupIdOrPath, userId, accessLevel, null)); } /** * Updates a member of a group. * *
GitLab Endpoint: PUT /groups/:groupId/members/:userId
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required * @param userId the user ID of the member to update, required * @param accessLevel the new access level for the member, required * @return the updated member * @throws GitLabApiException if any exception occurs */ public Member updateMember(Object groupIdOrPath, Long userId, AccessLevel accessLevel) throws GitLabApiException { return (updateMember(groupIdOrPath, userId, accessLevel.toValue(), null)); } /** * Updates a member of a group. * *
GitLab Endpoint: PUT /groups/:groupId/members/:userId
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required * @param userId the user ID of the member to update, required * @param accessLevel the new access level for the member, required * @param expiresAt the date the membership in the group will expire, optional * @return the updated member * @throws GitLabApiException if any exception occurs */ public Member updateMember(Object groupIdOrPath, Long userId, AccessLevel accessLevel, Date expiresAt) throws GitLabApiException { return (updateMember(groupIdOrPath, userId, accessLevel.toValue(), expiresAt)); } /** * Updates a member of a group. * *
GitLab Endpoint: PUT /groups/:groupId/members/:userId
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required * @param userId the user ID of the member to update, required * @param accessLevel the new access level for the member, required * @param expiresAt the date the membership in the group will expire, optional * @return the updated member * @throws GitLabApiException if any exception occurs */ public Member updateMember(Object groupIdOrPath, Long userId, Integer accessLevel, Date expiresAt) throws GitLabApiException { GitLabApiForm formData = new GitLabApiForm() .withParam("access_level", accessLevel, true) .withParam("expires_at", expiresAt, false); Response response = put(Response.Status.OK, formData.asMap(), "groups", getGroupIdOrPath(groupIdOrPath), "members", userId); return (response.readEntity(Member.class)); } /** * Removes member from the group. * *
GitLab Endpoint: DELETE /groups/:id/members/:user_id
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required * @param userId the user ID of the member to remove * @throws GitLabApiException if any exception occurs */ public void removeMember(Object groupIdOrPath, Long userId) throws GitLabApiException { Response.Status expectedStatus = (isApiVersion(GitLabApi.ApiVersion.V3) ? Response.Status.OK : Response.Status.NO_CONTENT); delete(expectedStatus, null, "groups", getGroupIdOrPath(groupIdOrPath), "members", userId); } /** * Syncs the group with its linked LDAP group. Only available to group owners and administrators. * *
GitLab Endpoint: POST /groups/:id/ldap_sync
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @throws GitLabApiException if any exception occurs */ public void ldapSync(Object groupIdOrPath) throws GitLabApiException { post(Response.Status.NO_CONTENT, (Form) null, "groups", getGroupIdOrPath(groupIdOrPath), "ldap_sync"); } /** * Adds an LDAP group link. * *
GitLab Endpoint: POST /groups/:id/ldap_group_links
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param cn the CN of a LDAP group * @param groupAccess the minimum access level for members of the LDAP group * @param provider the LDAP provider for the LDAP group * @throws GitLabApiException if any exception occurs */ public void addLdapGroupLink(Object groupIdOrPath, String cn, AccessLevel groupAccess, String provider) throws GitLabApiException { if (groupAccess == null) { throw new RuntimeException("groupAccess cannot be null or empty"); } addLdapGroupLink(groupIdOrPath, cn, groupAccess.toValue(), provider); } /** * Adds an LDAP group link. * *
GitLab Endpoint: POST /groups/:id/ldap_group_links
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param cn the CN of a LDAP group * @param groupAccess the minimum access level for members of the LDAP group * @param provider the LDAP provider for the LDAP group * @throws GitLabApiException if any exception occurs */ public void addLdapGroupLink(Object groupIdOrPath, String cn, Integer groupAccess, String provider) throws GitLabApiException { GitLabApiForm formData = new GitLabApiForm() .withParam("cn", cn, true) .withParam("group_access", groupAccess, true) .withParam("provider", provider, true); post(Response.Status.CREATED, formData, "groups", getGroupIdOrPath(groupIdOrPath), "ldap_group_links"); } /** * Deletes an LDAP group link. * *
GitLab Endpoint: DELETE /groups/:id/ldap_group_links/:cn
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param cn the CN of the LDAP group link to delete * @throws GitLabApiException if any exception occurs */ public void deleteLdapGroupLink(Object groupIdOrPath, String cn) throws GitLabApiException { if (cn == null || cn.trim().isEmpty()) { throw new RuntimeException("cn cannot be null or empty"); } delete(Response.Status.OK, null, "groups", getGroupIdOrPath(groupIdOrPath), "ldap_group_links", cn); } /** * Deletes an LDAP group link for a specific LDAP provider. * *
GitLab Endpoint: DELETE /groups/:id/ldap_group_links/:provider/:cn
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param cn the CN of the LDAP group link to delete * @param provider the name of the LDAP provider * @throws GitLabApiException if any exception occurs */ public void deleteLdapGroupLink(Object groupIdOrPath, String cn, String provider) throws GitLabApiException { if (cn == null || cn.trim().isEmpty()) { throw new RuntimeException("cn cannot be null or empty"); } if (provider == null || provider.trim().isEmpty()) { throw new RuntimeException("LDAP provider cannot be null or empty"); } delete(Response.Status.OK, null, "groups", getGroupIdOrPath(groupIdOrPath), "ldap_group_links", provider, cn); } /** * Get list of a group’s variables. * *
GitLab Endpoint: GET /groups/:id/variables
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @return a list of variables belonging to the specified group * @throws GitLabApiException if any exception occurs */ public List getVariables(Object groupIdOrPath) throws GitLabApiException { return (getVariables(groupIdOrPath, getDefaultPerPage()).all()); } /** * Get a list of variables for the specified group in the specified page range. * *
GitLab Endpoint: GET /groups/:id/variables
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param page the page to get * @param perPage the number of Variable instances per page * @return a list of variables belonging to the specified group in the specified page range * @throws GitLabApiException if any exception occurs */ public List getVariables(Object groupIdOrPath, int page, int perPage) throws GitLabApiException { Response response = get(Response.Status.OK, getPageQueryParams(page, perPage), "groups", getGroupIdOrPath(groupIdOrPath), "variables"); return (response.readEntity(new GenericType>() { })); } /** * Get a Pager of variables belonging to the specified group. * *
GitLab Endpoint: GET /groups/:id/variables
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param itemsPerPage the number of Variable instances that will be fetched per page * @return a Pager of variables belonging to the specified group * @throws GitLabApiException if any exception occurs */ public Pager getVariables(Object groupIdOrPath, int itemsPerPage) throws GitLabApiException { return (new Pager(this, Variable.class, itemsPerPage, null, "groups", getGroupIdOrPath(groupIdOrPath), "variables")); } /** * Get a Stream of variables belonging to the specified group. * *
GitLab Endpoint: GET /groups/:id/variables
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @return a Stream of variables belonging to the specified group * @throws GitLabApiException if any exception occurs */ public Stream getVariablesStream(Object groupIdOrPath) throws GitLabApiException { return (getVariables(groupIdOrPath, getDefaultPerPage()).stream()); } /** * Get the details of a group variable. * *
GitLab Endpoint: GET /groups/:id/variables/:key
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param key the key of an existing variable, required * @return the Variable instance for the specified group variable * @throws GitLabApiException if any exception occurs */ public Variable getVariable(Object groupIdOrPath, String key) throws GitLabApiException { Response response = get(Response.Status.OK, null, "groups", getGroupIdOrPath(groupIdOrPath), "variables", key); return (response.readEntity(Variable.class)); } /** * Get the details of a group variable as an Optional instance. * *
GitLab Endpoint: GET /groups/:id/variables/:key
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param key the key of an existing variable, required * @return the Variable for the specified group variable as an Optional instance */ public Optional getOptionalVariable(Object groupIdOrPath, String key) { try { return (Optional.ofNullable(getVariable(groupIdOrPath, key))); } catch (GitLabApiException glae) { return (GitLabApi.createOptionalFromException(glae)); } } /** * Create a new group variable. * *
GitLab Endpoint: POST /groups/:id/variables
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required * @param key the key of a variable; must have no more than 255 characters; only A-Z, a-z, 0-9, and _ are allowed, required * @param value the value for the variable, required * @param isProtected whether the variable is protected, optional * @return a Variable instance with the newly created variable * @throws GitLabApiException if any exception occurs during execution */ public Variable createVariable(Object groupIdOrPath, String key, String value, Boolean isProtected) throws GitLabApiException { return createVariable(groupIdOrPath, key, value, isProtected, false); } /** * Create a new group variable. * *
GitLab Endpoint: POST /groups/:id/variables
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required * @param key the key of a variable; must have no more than 255 characters; only A-Z, a-z, 0-9, and _ are allowed, required * @param value the value for the variable, required * @param isProtected whether the variable is protected, optional * @param masked whether the variable is masked, optional * @return a Variable instance with the newly created variable * @throws GitLabApiException if any exception occurs during execution */ public Variable createVariable(Object groupIdOrPath, String key, String value, Boolean isProtected, Boolean masked) throws GitLabApiException { GitLabApiForm formData = new GitLabApiForm() .withParam("key", key, true) .withParam("value", value, true) .withParam("masked", masked) .withParam("protected", isProtected); Response response = post(Response.Status.CREATED, formData, "groups", getGroupIdOrPath(groupIdOrPath), "variables"); return (response.readEntity(Variable.class)); } /** * Update a group variable. * *
GitLab Endpoint: PUT /groups/:id/variables/:key
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required * @param key the key of an existing variable, required * @param value the value for the variable, required * @param isProtected whether the variable is protected, optional * @return a Variable instance with the updated variable * @throws GitLabApiException if any exception occurs during execution */ public Variable updateVariable(Object groupIdOrPath, String key, String value, Boolean isProtected) throws GitLabApiException { return updateVariable(groupIdOrPath, key, value, isProtected, false); } /** * Update a group variable. * *
GitLab Endpoint: PUT /groups/:id/variables/:key
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required * @param key the key of an existing variable, required * @param value the value for the variable, required * @param isProtected whether the variable is protected, optional * @param masked whether the variable is masked, optional * @return a Variable instance with the updated variable * @throws GitLabApiException if any exception occurs during execution */ public Variable updateVariable(Object groupIdOrPath, String key, String value, Boolean isProtected, Boolean masked) throws GitLabApiException { GitLabApiForm formData = new GitLabApiForm() .withParam("value", value, true) .withParam("masked", masked) .withParam("protected", isProtected); Response response = putWithFormData(Response.Status.CREATED, formData, "groups", getGroupIdOrPath(groupIdOrPath), "variables", key); return (response.readEntity(Variable.class)); } /** * Deletes a group variable. * *
GitLab Endpoint: DELETE /groups/:id/variables/:key
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required * @param key the key of an existing variable, required * @throws GitLabApiException if any exception occurs */ public void deleteVariable(Object groupIdOrPath, String key) throws GitLabApiException { delete(Response.Status.NO_CONTENT, null, "groups", getGroupIdOrPath(groupIdOrPath), "variables", key); } /** * Transfer a project to the Group namespace. Available only for admin users. * *
GitLab Endpoint: POST /groups/:id/projects/:project_id
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required * @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance, required * @return the transferred Project instance * @throws GitLabApiException if any exception occurs during execution */ public Project transferProject(Object groupIdOrPath, Object projectIdOrPath) throws GitLabApiException { Response response = post(Response.Status.CREATED, (Form) null, "groups", getGroupIdOrPath(groupIdOrPath), "projects", getProjectIdOrPath(projectIdOrPath)); return (response.readEntity(Project.class)); } /** * Get a List of the group audit events viewable by Maintainer or an Owner of the group. * *
GET /groups/:id/audit_events
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param created_after Group audit events created on or after the given time. * @param created_before Group audit events created on or before the given time. * @return a List of group Audit events * @throws GitLabApiException if any exception occurs */ public List getAuditEvents(Object groupIdOrPath, Date created_after, Date created_before) throws GitLabApiException { return (getAuditEvents(groupIdOrPath, created_after, created_before, getDefaultPerPage()).all()); } /** * Get a Pager of the group audit events viewable by Maintainer or an Owner of the group. * *
GET /groups/:id/audit_events
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param created_after Group audit events created on or after the given time. * @param created_before Group audit events created on or before the given time. * @param itemsPerPage the number of Audit Event instances that will be fetched per page * @return a Pager of group Audit events * @throws GitLabApiException if any exception occurs */ public Pager getAuditEvents(Object groupIdOrPath, Date created_after, Date created_before, int itemsPerPage) throws GitLabApiException { Form form = new GitLabApiForm() .withParam("created_before", ISO8601.toString(created_after, false)) .withParam("created_after", ISO8601.toString(created_before, false)); return (new Pager(this, AuditEvent.class, itemsPerPage, form.asMap(), "groups", getGroupIdOrPath(groupIdOrPath), "audit_events")); } /** * Get a Stream of the group audit events viewable by Maintainer or an Owner of the group. * *
GET /groups/:id/audit_events
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param created_after Group audit events created on or after the given time. * @param created_before Group audit events created on or before the given time. * @return a Stream of group Audit events * @throws GitLabApiException if any exception occurs */ public Stream getAuditEventsStream(Object groupIdOrPath, Date created_after, Date created_before) throws GitLabApiException { return (getAuditEvents(groupIdOrPath, created_after, created_before, getDefaultPerPage()).stream()); } /** * Get a specific audit event of a group. * *
GitLab Endpoint: GET /groups/:id/audit_events/:id_audit_event
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param auditEventId the auditEventId, required * @return the group Audit event * @throws GitLabApiException if any exception occurs */ public AuditEvent getAuditEvent(Object groupIdOrPath, Long auditEventId) throws GitLabApiException { Response response = get(Response.Status.OK, null, "groups", getGroupIdOrPath(groupIdOrPath), "audit_events", auditEventId); return (response.readEntity(AuditEvent.class)); } /** * Get a List of the group access requests viewable by the authenticated user. * *
GET /group/:id/access_requests
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @return a List of project AccessRequest instances accessible by the authenticated user * @throws GitLabApiException if any exception occurs */ public List getAccessRequests(Object groupIdOrPath) throws GitLabApiException { return (getAccessRequests(groupIdOrPath, getDefaultPerPage()).all()); } /** * Get a Pager of the group access requests viewable by the authenticated user. * *
GET /groups/:id/access_requests
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param itemsPerPage the number of AccessRequest instances that will be fetched per page * @return a Pager of group AccessRequest instances accessible by the authenticated user * @throws GitLabApiException if any exception occurs */ public Pager getAccessRequests(Object groupIdOrPath, int itemsPerPage) throws GitLabApiException { return (new Pager(this, AccessRequest.class, itemsPerPage, null, "groups", getGroupIdOrPath(groupIdOrPath), "access_requests")); } /** * Get a Stream of the group access requests viewable by the authenticated user. * *
GET /groups/:id/access_requests
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @return a Stream of group AccessRequest instances accessible by the authenticated user * @throws GitLabApiException if any exception occurs */ public Stream getAccessRequestsStream(Object groupIdOrPath) throws GitLabApiException { return (getAccessRequests(groupIdOrPath, getDefaultPerPage()).stream()); } /** * Requests access for the authenticated user to the specified group. * *
POST /groups/:id/access_requests
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @return the created AccessRequest instance * @throws GitLabApiException if any exception occurs */ public AccessRequest requestAccess(Object groupIdOrPath) throws GitLabApiException { Response response = post(Response.Status.CREATED, (Form) null, "groups", getGroupIdOrPath(groupIdOrPath), "access_requests"); return (response.readEntity(AccessRequest.class)); } /** * Approve access for the specified user to the specified group. * *
PUT /groups/:id/access_requests/:user_id/approve
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param userId the user ID to approve access for * @param accessLevel the access level the user is approved for, if null will be developer (30) * @return the approved AccessRequest instance * @throws GitLabApiException if any exception occurs */ public AccessRequest approveAccessRequest(Object groupIdOrPath, Long userId, AccessLevel accessLevel) throws GitLabApiException { GitLabApiForm formData = new GitLabApiForm().withParam("access_level", accessLevel); Response response = this.putWithFormData(Response.Status.CREATED, formData, "groups", getGroupIdOrPath(groupIdOrPath), "access_requests", userId, "approve"); return (response.readEntity(AccessRequest.class)); } /** * Deny access for the specified user to the specified group. * *
DELETE /groups/:id/access_requests/:user_id
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param userId the user ID to deny access for * @throws GitLabApiException if any exception occurs */ public void denyAccessRequest(Object groupIdOrPath, Long userId) throws GitLabApiException { delete(Response.Status.NO_CONTENT, null, "groups", getGroupIdOrPath(groupIdOrPath), "access_requests", userId); } /** * Gets a list of a group’s badges and its group badges. * *
GitLab Endpoint: GET /groups/:id/badges
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @return a List of Badge instances for the specified group * @throws GitLabApiException if any exception occurs */ public List getBadges(Object groupIdOrPath) throws GitLabApiException { Response response = get(Response.Status.OK, null, "groups", getGroupIdOrPath(groupIdOrPath), "badges"); return (response.readEntity(new GenericType>() { })); } /** * Gets a badge of a group. * *
GitLab Endpoint: GET /groups/:id/badges/:badge_id
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param badgeId the ID of the badge to get * @return a Badge instance for the specified group/badge ID pair * @throws GitLabApiException if any exception occurs */ public Badge getBadge(Object groupIdOrPath, Long badgeId) throws GitLabApiException { Response response = get(Response.Status.OK, null, "groups", getGroupIdOrPath(groupIdOrPath), "badges", badgeId); return (response.readEntity(Badge.class)); } /** * Get an Optional instance with the value for the specified badge. * *
GitLab Endpoint: GET /groups/:id/badges/:badge_id
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param badgeId the ID of the badge to get * @return an Optional instance with the specified badge as the value */ public Optional getOptionalBadge(Object groupIdOrPath, Long badgeId) { try { return (Optional.ofNullable(getBadge(groupIdOrPath, badgeId))); } catch (GitLabApiException glae) { return (GitLabApi.createOptionalFromException(glae)); } } /** * Add a badge to a group. * *
GitLab Endpoint: POST /groups/:id/badges
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param linkUrl the URL of the badge link * @param imageUrl the URL of the image link * @return a Badge instance for the added badge * @throws GitLabApiException if any exception occurs */ public Badge addBadge(Object groupIdOrPath, String linkUrl, String imageUrl) throws GitLabApiException { GitLabApiForm formData = new GitLabApiForm() .withParam("link_url", linkUrl, true) .withParam("image_url", imageUrl, true); Response response = post(Response.Status.OK, formData, "groups", getGroupIdOrPath(groupIdOrPath), "badges"); return (response.readEntity(Badge.class)); } /** * Edit a badge of a group. * *
GitLab Endpoint: PUT /groups/:id/badges
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param badgeId the ID of the badge to get * @param linkUrl the URL of the badge link * @param imageUrl the URL of the image link * @return a Badge instance for the editted badge * @throws GitLabApiException if any exception occurs */ public Badge editBadge(Object groupIdOrPath, Long badgeId, String linkUrl, String imageUrl) throws GitLabApiException { GitLabApiForm formData = new GitLabApiForm() .withParam("link_url", linkUrl, false) .withParam("image_url", imageUrl, false); Response response = putWithFormData(Response.Status.OK, formData, "groups", getGroupIdOrPath(groupIdOrPath), "badges", badgeId); return (response.readEntity(Badge.class)); } /** * Remove a badge from a group. * *
GitLab Endpoint: DELETE /groups/:id/badges/:badge_id
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param badgeId the ID of the badge to remove * @throws GitLabApiException if any exception occurs */ public void removeBadge(Object groupIdOrPath, Long badgeId) throws GitLabApiException { delete(Response.Status.NO_CONTENT, null, "groups", getGroupIdOrPath(groupIdOrPath), "badges", badgeId); } /** * Returns how the link_url and image_url final URLs would be after resolving the placeholder interpolation. * *
GitLab Endpoint: GET /groups/:id/badges/render
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param linkUrl the URL of the badge link * @param imageUrl the URL of the image link * @return a Badge instance for the rendered badge * @throws GitLabApiException if any exception occurs */ public Badge previewBadge(Object groupIdOrPath, String linkUrl, String imageUrl) throws GitLabApiException { GitLabApiForm formData = new GitLabApiForm() .withParam("link_url", linkUrl, true) .withParam("image_url", imageUrl, true); Response response = get(Response.Status.OK, formData.asMap(), "groups", getGroupIdOrPath(groupIdOrPath), "badges", "render"); return (response.readEntity(Badge.class)); } /** * Uploads and sets the project avatar for the specified group. * *
GitLab Endpoint: PUT /groups/:id
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param avatarFile the File instance of the avatar file to upload * @return the updated Group instance * @throws GitLabApiException if any exception occurs */ public Group setGroupAvatar(Object groupIdOrPath, File avatarFile) throws GitLabApiException { Response response = putUpload(Response.Status.OK, "avatar", avatarFile, "groups", getGroupIdOrPath(groupIdOrPath)); return (response.readEntity(Group.class)); } /** * Share group with another group. Returns 200 and the group details on success. * *
GitLab Endpoint: POST /groups/:id/share
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param shareWithGroupId the ID of the group to share with, required * @param groupAccess the access level to grant the group, required * @param expiresAt expiration date of the share, optional * @return a Group instance holding the details of the shared group * @throws GitLabApiException if any exception occurs */ public Group shareGroup(Object groupIdOrPath, Long shareWithGroupId, AccessLevel groupAccess, Date expiresAt) throws GitLabApiException { GitLabApiForm formData = new GitLabApiForm() .withParam("group_id", shareWithGroupId, true) .withParam("group_access", groupAccess, true) .withParam("expires_at", expiresAt); Response response = post(Response.Status.OK, formData, "groups", getGroupIdOrPath(groupIdOrPath), "share"); return (response.readEntity(Group.class)); } /** * Unshare the group from another group. * *
GitLab Endpoint: DELETE /groups/:id/share/:group_id
* * @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path * @param sharedWithGroupId the ID of the group to unshare with, required * @throws GitLabApiException if any exception occurs */ public void unshareGroup(Object groupIdOrPath, Long sharedWithGroupId) throws GitLabApiException { delete(Response.Status.NO_CONTENT, null, "groups", getGroupIdOrPath(groupIdOrPath), "share", sharedWithGroupId); } /** * Get all custom attributes for the specified group. * *
GitLab Endpoint: GET /groups/:id/custom_attributes
* * @param groupIdOrPath the group in the form of an Long(ID), String(path), or Group instance * @return a list of group's CustomAttributes * @throws GitLabApiException if any exception occurs */ public List getCustomAttributes(final Object groupIdOrPath) throws GitLabApiException { return (getCustomAttributes(groupIdOrPath, getDefaultPerPage()).all()); } /** * Get a Pager of custom attributes for the specified group. * *
GitLab Endpoint: GET /groups/:id/custom_attributes
* * @param groupIdOrPath the group in the form of an Long(ID), String(path), or Group instance * @param itemsPerPage the number of items per page * @return a Pager of group's custom attributes * @throws GitLabApiException if any exception occurs */ public Pager getCustomAttributes(final Object groupIdOrPath, int itemsPerPage) throws GitLabApiException { return (new Pager(this, CustomAttribute.class, itemsPerPage, null, "groups", getGroupIdOrPath(groupIdOrPath), "custom_attributes")); } /** * Get a Stream of all custom attributes for the specified group. * *
GitLab Endpoint: GET /groups/:id/custom_attributes
* * @param groupIdOrPath the group in the form of an Long(ID), String(path), or Group instance * @return a Stream of group's custom attributes * @throws GitLabApiException if any exception occurs */ public Stream getCustomAttributesStream(final Object groupIdOrPath) throws GitLabApiException { return (getCustomAttributes(groupIdOrPath, getDefaultPerPage()).stream()); } /** * Get a single custom attribute for the specified group. * *
GitLab Endpoint: GET /groups/:id/custom_attributes/:key
* * @param groupIdOrPath the group in the form of an Long(ID), String(path), or Group instance * @param key the key for the custom attribute * @return a CustomAttribute instance for the specified key * @throws GitLabApiException if any exception occurs */ public CustomAttribute getCustomAttribute(final Object groupIdOrPath, final String key) throws GitLabApiException { Response response = get(Response.Status.OK, null, "groups", getGroupIdOrPath(groupIdOrPath), "custom_attributes", key); return (response.readEntity(CustomAttribute.class)); } /** * Get an Optional instance with the value for a single custom attribute for the specified group. * *
GitLab Endpoint: GET /groups/:id/custom_attributes/:key
* * @param groupIdOrPath the group in the form of an Long(ID), String(path), or Group instance, required * @param key the key for the custom attribute, required * @return an Optional instance with the value for a single custom attribute for the specified group */ public Optional geOptionalCustomAttribute(final Object groupIdOrPath, final String key) { try { return (Optional.ofNullable(getCustomAttribute(groupIdOrPath, key))); } catch (GitLabApiException glae) { return (GitLabApi.createOptionalFromException(glae)); } } /** * Set a custom attribute for the specified group. The attribute will be updated if it already exists, * or newly created otherwise. * *
GitLab Endpoint: PUT /groups/:id/custom_attributes/:key
* * @param groupIdOrPath the group in the form of an Long(ID), String(path), or Group instance * @param key the key for the custom attribute * @param value the value for the customAttribute * @return a CustomAttribute instance for the updated or created custom attribute * @throws GitLabApiException if any exception occurs */ public CustomAttribute setCustomAttribute(final Object groupIdOrPath, final String key, final String value) throws GitLabApiException { if (Objects.isNull(key) || key.trim().isEmpty()) { throw new IllegalArgumentException("Key cannot be null or empty"); } if (Objects.isNull(value) || value.trim().isEmpty()) { throw new IllegalArgumentException("Value cannot be null or empty"); } GitLabApiForm formData = new GitLabApiForm().withParam("value", value); Response response = putWithFormData(Response.Status.OK, formData, "groups", getGroupIdOrPath(groupIdOrPath), "custom_attributes", key); return (response.readEntity(CustomAttribute.class)); } /** * Delete a custom attribute for the specified group. * *
GitLab Endpoint: DELETE /groups/:id/custom_attributes/:key
* * @param groupIdOrPath the group in the form of an Long(ID), String(path), or Group instance * @param key the key of the custom attribute to delete * @throws GitLabApiException if any exception occurs */ public void deleteCustomAttribute(final Object groupIdOrPath, final String key) throws GitLabApiException { if (Objects.isNull(key) || key.trim().isEmpty()) { throw new IllegalArgumentException("Key can't be null or empty"); } delete(Response.Status.OK, null, "groups", getGroupIdOrPath(groupIdOrPath), "custom_attributes", key); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy