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

org.gitlab4j.api.GroupApi 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.util.Date;
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.Response;

import org.gitlab4j.api.GitLabApi.ApiVersion;
import org.gitlab4j.api.models.AccessLevel;
import org.gitlab4j.api.models.AccessRequest;
import org.gitlab4j.api.models.Badge;
import org.gitlab4j.api.models.Group;
import org.gitlab4j.api.models.GroupFilter;
import org.gitlab4j.api.models.GroupParams;
import org.gitlab4j.api.models.GroupProjectsFilter;
import org.gitlab4j.api.models.Member;
import org.gitlab4j.api.models.Project;
import org.gitlab4j.api.models.Variable;
import org.gitlab4j.api.models.Visibility;

/**
 * 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
 */
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(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, Integer 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(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(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, Integer 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(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 5.0, replaced by {@link #addGroup(String, String, String, Visibility, * Boolean, Boolean, Integer)} */ public Group addGroup(String name, String path, String description, Boolean membershipLock, Boolean shareWithGroupLock, Visibility visibility, Boolean lfsEnabled, Boolean requestAccessEnabled, Integer 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 5.0, replaced by {@link #updateGroup(Object, String, String, String, * Visibility, Boolean, Boolean, Integer)} */ public Group updateGroup(Object groupIdOrPath, String name, String path, String description, Boolean membershipLock, Boolean shareWithGroupLock, Visibility visibility, Boolean lfsEnabled, Boolean requestAccessEnabled, Integer 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(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, int userId) throws GitLabApiException { Response response = get(Response.Status.OK, getDefaultPerPageParam(), "groups", getGroupIdOrPath(groupIdOrPath), "members", userId); return (response.readEntity(new GenericType() {})); } /** * 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, int userId) { try { return (Optional.ofNullable(getMember(groupIdOrPath, userId))); } 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, getDefaultPerPage()).all()); } /** * 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 */ 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 (new Pager(this, Member.class, itemsPerPage, null, "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 * @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 (getAllMembers(groupIdOrPath, 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, Integer 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, Integer 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, Integer 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, Integer 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, Integer 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, Integer 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, Integer 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, Integer 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, Integer userId) throws GitLabApiException { Response.Status expectedStatus = (isApiVersion(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 { GitLabApiForm formData = new GitLabApiForm() .withParam("key", key, true) .withParam("value", value, true) .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 { GitLabApiForm formData = new GitLabApiForm() .withParam("value", value, true) .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 Integer(ID), String(path), or Project instance, required * @return the transfered 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 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, Integer 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, Integer 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, Integer 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, Integer 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, Integer 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, Integer 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)); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy