gitlab-org--gitlab-foss/app/controllers/groups_controller.rb

207 lines
5.0 KiB
Ruby
Raw Normal View History

2015-03-12 11:08:48 -04:00
class GroupsController < Groups::ApplicationController
include IssuesAction
include MergeRequestsAction
include ParamsBackwardCompatibility
2012-10-02 13:42:15 -04:00
respond_to :html
2016-03-20 16:03:53 -04:00
before_action :authenticate_user!, only: [:new, :create]
before_action :group, except: [:index, :new, :create]
2012-10-02 13:42:15 -04:00
# Authorize
before_action :authorize_admin_group!, only: [:edit, :update, :destroy, :projects]
before_action :authorize_create_group!, only: [:new]
2013-01-24 10:47:09 -05:00
before_action :group_projects, only: [:projects, :activity, :issues, :merge_requests]
before_action :group_merge_requests, only: [:merge_requests]
before_action :event_filter, only: [:activity]
2013-06-08 09:26:57 -04:00
before_action :user_actions, only: [:show, :subgroups]
layout :determine_layout
def index
redirect_to(current_user ? dashboard_groups_path : explore_groups_path)
end
2013-01-24 10:47:09 -05:00
def new
@group = Group.new(params.permit(:parent_id))
2013-01-24 10:47:09 -05:00
end
def create
2016-03-17 18:42:46 -04:00
@group = Groups::CreateService.new(current_user, group_params).execute
2013-01-24 10:47:09 -05:00
2016-03-17 18:42:46 -04:00
if @group.persisted?
2017-03-01 14:34:29 -05:00
notice = if @group.chat_team.present?
"Group '#{@group.name}' and its Mattermost team were successfully created."
else
2017-03-03 03:01:54 -05:00
"Group '#{@group.name}' was successfully created."
2017-03-01 14:34:29 -05:00
end
redirect_to @group, notice: notice
2013-01-24 10:47:09 -05:00
else
render action: "new"
end
end
2012-10-02 13:42:15 -04:00
def show
setup_children(@group)
2012-10-02 13:42:15 -04:00
respond_to do |format|
format.html
2015-02-18 03:16:42 -05:00
2015-02-18 12:38:46 -05:00
format.atom do
setup_projects
2015-02-18 12:38:46 -05:00
load_events
render layout: 'xml.atom'
2015-02-18 12:38:46 -05:00
end
2012-10-02 13:42:15 -04:00
end
end
2017-09-05 05:30:16 -04:00
def children
parent = if params[:parent_id].present?
GroupFinder.new(current_user).execute(id: params[:parent_id])
else
@group
end
if parent.nil?
2017-09-05 05:30:16 -04:00
render_404
return
2017-09-05 05:30:16 -04:00
end
setup_children(parent)
2017-09-05 05:30:16 -04:00
respond_to do |format|
format.json do
serializer = GroupChildSerializer
.new(current_user: current_user)
.with_pagination(request, response)
serializer.expand_hierarchy(parent) if params[:filter].present?
render json: serializer.represent(@children)
2017-09-05 05:30:16 -04:00
end
end
end
def activity
respond_to do |format|
format.html
format.json do
load_events
pager_json("events/_events", @events.count)
end
end
end
def edit
end
2016-06-22 09:50:19 -04:00
def projects
@projects = @group.projects.with_statistics.page(params[:page])
2016-06-22 09:50:19 -04:00
end
def update
if Groups::UpdateService.new(@group, current_user, group_params).execute
redirect_to edit_group_path(@group), notice: "Group '#{@group.name}' was successfully updated."
else
@group.restore_path!
2016-12-21 07:29:27 -05:00
render action: "edit"
end
end
def destroy
Groups::DestroyService.new(@group, current_user).async_execute
redirect_to root_path, status: 302, alert: "Group '#{@group.name}' was scheduled for deletion."
end
2012-10-02 13:42:15 -04:00
protected
def setup_children(parent)
@children = GroupDescendantsFinder.new(current_user: current_user,
parent_group: parent,
params: params).execute
@children = @children.page(params[:page])
end
def setup_projects
set_non_archived_param
params[:sort] ||= 'latest_activity_desc'
@sort = params[:sort]
options = {}
options[:only_owned] = true if params[:shared] == '0'
options[:only_shared] = true if params[:shared] == '1'
@projects = GroupProjectsFinder.new(params: params, group: group, options: options, current_user: current_user).execute
@projects = @projects.includes(:namespace)
@projects = @projects.page(params[:page]) if params[:name].blank?
end
2013-01-25 04:30:49 -05:00
def authorize_create_group!
allowed = if params[:parent_id].present?
parent = Group.find_by(id: params[:parent_id])
can?(current_user, :create_subgroup, parent)
else
can?(current_user, :create_group)
end
render_404 unless allowed
end
def determine_layout
2013-06-08 09:26:57 -04:00
if [:new, :create].include?(action_name.to_sym)
'application'
elsif [:edit, :update, :projects].include?(action_name.to_sym)
'group_settings'
else
'group'
2013-06-08 09:26:57 -04:00
end
end
def group_params
params.require(:group).permit(group_params_ce)
end
def group_params_ce
[
:avatar,
:description,
:lfs_enabled,
:name,
:path,
:public,
:request_access_enabled,
:share_with_group_lock,
:visibility_level,
2017-02-20 08:51:47 -05:00
:parent_id,
2017-02-07 02:24:57 -05:00
:create_chat_team,
2017-01-24 16:09:58 -05:00
:chat_team_name,
:require_two_factor_authentication,
:two_factor_grace_period
]
end
2015-02-18 12:38:46 -05:00
def load_events
@events = EventCollection
.new(@projects, offset: params[:offset].to_i, filter: event_filter)
.to_a
2015-02-18 12:38:46 -05:00
end
def user_actions
if current_user
@notification_setting = current_user.notification_settings_for(group)
end
end
def build_canonical_path(group)
return group_path(group) if action_name == 'show' # root group path
params[:id] = group.to_param
url_for(params)
end
2012-10-02 13:42:15 -04:00
end