debian-mirror-gitlab/lib/api/groups.rb

126 lines
3.7 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
module API
# groups API
class Groups < Grape::API
before { authenticate! }
resource :groups do
# Get a groups list
#
# Example Request:
# GET /groups
get do
2015-04-26 12:48:37 +05:30
@groups = if current_user.admin
Group.all
else
current_user.groups
end
@groups = @groups.search(params[:search]) if params[:search].present?
@groups = paginate @groups
2014-09-02 18:07:02 +05:30
present @groups, with: Entities::Group
end
2015-09-11 14:41:01 +05:30
# Create group. Available only for users who can create groups.
2014-09-02 18:07:02 +05:30
#
# Parameters:
2016-06-02 11:05:42 +05:30
# name (required) - The name of the group
# path (required) - The path of the group
# description (optional) - The description of the group
# visibility_level (optional) - The visibility level of the group
2014-09-02 18:07:02 +05:30
# Example Request:
# POST /groups
post do
2015-09-11 14:41:01 +05:30
authorize! :create_group, current_user
2014-09-02 18:07:02 +05:30
required_attributes! [:name, :path]
2016-06-02 11:05:42 +05:30
attrs = attributes_for_keys [:name, :path, :description, :visibility_level]
2014-09-02 18:07:02 +05:30
@group = Group.new(attrs)
if @group.save
2015-04-26 12:48:37 +05:30
@group.add_owner(current_user)
2014-09-02 18:07:02 +05:30
present @group, with: Entities::Group
else
2015-04-26 12:48:37 +05:30
render_api_error!("Failed to save group #{@group.errors.messages}", 400)
2014-09-02 18:07:02 +05:30
end
end
2016-06-02 11:05:42 +05:30
# Update group. Available only for users who can administrate groups.
#
# Parameters:
# id (required) - The ID of a group
# path (optional) - The path of the group
# description (optional) - The description of the group
# visibility_level (optional) - The visibility level of the group
# Example Request:
# PUT /groups/:id
put ':id' do
group = find_group(params[:id])
authorize! :admin_group, group
attrs = attributes_for_keys [:name, :path, :description, :visibility_level]
if ::Groups::UpdateService.new(group, current_user, attrs).execute
present group, with: Entities::GroupDetail
else
render_validation_error!(group)
end
end
2014-09-02 18:07:02 +05:30
# Get a single group, with containing projects
#
# Parameters:
# id (required) - The ID of a group
# Example Request:
# GET /groups/:id
get ":id" do
group = find_group(params[:id])
present group, with: Entities::GroupDetail
end
# Remove group
#
# Parameters:
# id (required) - The ID of a group
# Example Request:
# DELETE /groups/:id
delete ":id" do
group = find_group(params[:id])
2015-04-26 12:48:37 +05:30
authorize! :admin_group, group
2015-09-11 14:41:01 +05:30
DestroyGroupService.new(group, current_user).execute
2014-09-02 18:07:02 +05:30
end
2015-12-23 02:04:40 +05:30
# Get a list of projects in this group
#
# Example Request:
# GET /groups/:id/projects
get ":id/projects" do
group = find_group(params[:id])
projects = group.projects
projects = filter_projects(projects)
projects = paginate projects
present projects, with: Entities::Project
end
2014-09-02 18:07:02 +05:30
# Transfer a project to the Group namespace
#
# Parameters:
# id - group id
# project_id - project id
# Example Request:
# POST /groups/:id/projects/:project_id
post ":id/projects/:project_id" do
authenticated_as_admin!
2015-09-11 14:41:01 +05:30
group = Group.find_by(id: params[:id])
2014-09-02 18:07:02 +05:30
project = Project.find(params[:project_id])
2015-09-11 14:41:01 +05:30
result = ::Projects::TransferService.new(project, current_user).execute(group)
2014-09-02 18:07:02 +05:30
if result
present group
else
2015-04-26 12:48:37 +05:30
render_api_error!("Failed to transfer project #{project.errors.messages}", 400)
2014-09-02 18:07:02 +05:30
end
end
end
end
end