2018-09-14 01:42:05 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-01-20 06:20:50 -05:00
|
|
|
class Admin::GroupsController < Admin::ApplicationController
|
2017-12-05 09:03:16 -05:00
|
|
|
include MembersPresentation
|
|
|
|
|
2016-11-22 11:58:10 -05:00
|
|
|
before_action :group, only: [:edit, :update, :destroy, :project_update, :members_update]
|
2012-10-02 12:01:40 -04:00
|
|
|
|
2020-10-05 17:08:47 -04:00
|
|
|
feature_category :subgroups
|
|
|
|
|
2012-10-02 12:01:40 -04:00
|
|
|
def index
|
2020-01-24 10:09:00 -05:00
|
|
|
@groups = groups.sort_by_attribute(@sort = params[:sort])
|
2012-10-02 12:01:40 -04:00
|
|
|
@groups = @groups.search(params[:name]) if params[:name].present?
|
2016-03-19 17:37:54 -04:00
|
|
|
@groups = @groups.page(params[:page])
|
2012-10-02 12:01:40 -04:00
|
|
|
end
|
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2012-10-02 12:01:40 -04:00
|
|
|
def show
|
2019-08-27 13:15:28 -04:00
|
|
|
# Group.with_statistics doesn't behave nicely when including other relations.
|
|
|
|
# Group.find_by_full_path includes the routes relation to avoid a common N+1
|
|
|
|
# (at the expense of this action: there are two queries here to find and retrieve
|
|
|
|
# the Group with statistics).
|
|
|
|
@group = Group.with_statistics.find(group&.id)
|
2017-12-05 09:03:16 -05:00
|
|
|
@members = present_members(
|
2020-09-10 14:08:54 -04:00
|
|
|
group_members.order("access_level DESC").page(params[:members_page]))
|
2017-12-05 09:03:16 -05:00
|
|
|
@requesters = present_members(
|
|
|
|
AccessRequestsFinder.new(@group).execute(current_user))
|
2016-11-22 11:58:10 -05:00
|
|
|
@projects = @group.projects.with_statistics.page(params[:projects_page])
|
2012-10-02 12:01:40 -04:00
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2012-10-02 12:01:40 -04:00
|
|
|
|
|
|
|
def new
|
|
|
|
@group = Group.new
|
2021-03-29 14:09:37 -04:00
|
|
|
@group.build_admin_note
|
2012-10-02 12:01:40 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def edit
|
2021-03-29 14:09:37 -04:00
|
|
|
@group.build_admin_note unless @group.admin_note
|
2012-10-02 12:01:40 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2022-11-04 17:09:59 -04:00
|
|
|
@group = ::Groups::CreateService.new(current_user, group_params).execute
|
2012-10-02 12:01:40 -04:00
|
|
|
|
2022-11-04 17:09:59 -04:00
|
|
|
if @group.persisted?
|
2019-03-21 09:31:05 -04:00
|
|
|
redirect_to [:admin, @group], notice: _('Group %{group_name} was successfully created.') % { group_name: @group.name }
|
2012-10-02 12:01:40 -04:00
|
|
|
else
|
2013-06-22 08:08:11 -04:00
|
|
|
render "new"
|
2012-10-02 12:01:40 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2021-03-29 14:09:37 -04:00
|
|
|
@group.build_admin_note unless @group.admin_note
|
|
|
|
|
2018-07-02 06:43:06 -04:00
|
|
|
if @group.update(group_params)
|
2019-03-21 09:31:05 -04:00
|
|
|
redirect_to [:admin, @group], notice: _('Group was successfully updated.')
|
2012-10-02 12:01:40 -04:00
|
|
|
else
|
2013-06-22 08:08:11 -04:00
|
|
|
render "edit"
|
2012-10-02 12:01:40 -04:00
|
|
|
end
|
2012-12-25 17:52:20 -05:00
|
|
|
end
|
|
|
|
|
2012-10-02 12:01:40 -04:00
|
|
|
def destroy
|
2016-08-13 08:45:31 -04:00
|
|
|
Groups::DestroyService.new(@group, current_user).async_execute
|
2012-10-02 12:01:40 -04:00
|
|
|
|
2017-06-06 18:45:16 -04:00
|
|
|
redirect_to admin_groups_path,
|
2019-11-17 07:06:19 -05:00
|
|
|
status: :found,
|
2019-03-21 09:31:05 -04:00
|
|
|
alert: _('Group %{group_name} was scheduled for deletion.') % { group_name: @group.name }
|
2012-10-02 12:01:40 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2020-01-24 10:09:00 -05:00
|
|
|
def groups
|
|
|
|
Group.with_statistics.with_route
|
|
|
|
end
|
|
|
|
|
2012-10-02 12:01:40 -04:00
|
|
|
def group
|
2016-10-31 07:00:53 -04:00
|
|
|
@group ||= Group.find_by_full_path(params[:id])
|
2012-10-02 12:01:40 -04:00
|
|
|
end
|
2014-06-26 09:57:10 -04:00
|
|
|
|
2020-09-10 14:08:54 -04:00
|
|
|
def group_members
|
|
|
|
@group.members
|
|
|
|
end
|
|
|
|
|
2014-06-26 09:57:10 -04:00
|
|
|
def group_params
|
2018-06-25 09:11:00 -04:00
|
|
|
params.require(:group).permit(allowed_group_params)
|
2017-01-10 08:43:06 -05:00
|
|
|
end
|
|
|
|
|
2018-06-25 09:11:00 -04:00
|
|
|
def allowed_group_params
|
2017-01-10 08:43:06 -05:00
|
|
|
[
|
2016-09-06 12:48:00 -04:00
|
|
|
:avatar,
|
2016-09-01 19:49:48 -04:00
|
|
|
:description,
|
2016-09-06 12:48:00 -04:00
|
|
|
:lfs_enabled,
|
|
|
|
:name,
|
2016-09-01 19:49:48 -04:00
|
|
|
:path,
|
|
|
|
:request_access_enabled,
|
2017-01-24 16:09:58 -05:00
|
|
|
:visibility_level,
|
|
|
|
:require_two_factor_authentication,
|
2019-04-05 14:49:46 -04:00
|
|
|
:two_factor_grace_period,
|
2022-06-16 11:09:00 -04:00
|
|
|
:enabled_git_access_protocol,
|
2019-06-27 16:45:58 -04:00
|
|
|
:project_creation_level,
|
2021-03-29 14:09:37 -04:00
|
|
|
:subgroup_creation_level,
|
|
|
|
admin_note_attributes: [
|
|
|
|
:note
|
|
|
|
]
|
2017-01-10 08:43:06 -05:00
|
|
|
]
|
2014-06-26 09:57:10 -04:00
|
|
|
end
|
2012-10-02 12:01:40 -04:00
|
|
|
end
|
2019-09-13 09:26:31 -04:00
|
|
|
|
2021-05-11 17:10:21 -04:00
|
|
|
Admin::GroupsController.prepend_mod_with('Admin::GroupsController')
|