2015-03-12 11:08:48 -04:00
|
|
|
class GroupsController < Groups::ApplicationController
|
2015-11-17 05:03:18 -05:00
|
|
|
include IssuesAction
|
|
|
|
include MergeRequestsAction
|
2017-03-03 05:35:04 -05:00
|
|
|
include ParamsBackwardCompatibility
|
2017-10-11 05:03:19 -04:00
|
|
|
include PreviewMarkdown
|
2015-11-17 05:03:18 -05:00
|
|
|
|
2012-10-02 13:42:15 -04:00
|
|
|
respond_to :html
|
2016-01-23 19:08:15 -05:00
|
|
|
|
2016-03-20 16:03:53 -04:00
|
|
|
before_action :authenticate_user!, only: [:new, :create]
|
2016-01-23 19:08:15 -05:00
|
|
|
before_action :group, except: [:index, :new, :create]
|
2012-10-02 13:42:15 -04:00
|
|
|
|
2012-11-29 10:17:01 -05:00
|
|
|
# Authorize
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :authorize_admin_group!, only: [:edit, :update, :destroy, :projects]
|
2017-09-07 14:35:45 -04:00
|
|
|
before_action :authorize_create_group!, only: [:new]
|
2013-01-24 10:47:09 -05:00
|
|
|
|
2017-01-24 10:32:34 -05:00
|
|
|
before_action :group_projects, only: [:projects, :activity, :issues, :merge_requests]
|
2017-05-01 16:46:30 -04:00
|
|
|
before_action :group_merge_requests, only: [:merge_requests]
|
2016-03-10 08:29:38 -05:00
|
|
|
before_action :event_filter, only: [:activity]
|
2013-06-08 09:26:57 -04:00
|
|
|
|
2017-01-24 10:32:34 -05:00
|
|
|
before_action :user_actions, only: [:show, :subgroups]
|
|
|
|
|
2015-05-01 04:39:11 -04:00
|
|
|
layout :determine_layout
|
|
|
|
|
2015-09-08 09:49:20 -04:00
|
|
|
def index
|
2015-09-08 10:14:14 -04:00
|
|
|
redirect_to(current_user ? dashboard_groups_path : explore_groups_path)
|
2015-09-08 09:49:20 -04:00
|
|
|
end
|
|
|
|
|
2013-01-24 10:47:09 -05:00
|
|
|
def new
|
2017-09-07 14:35:45 -04:00
|
|
|
@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-11-29 10:17:01 -05:00
|
|
|
|
2012-10-02 13:42:15 -04:00
|
|
|
def show
|
|
|
|
respond_to do |format|
|
2017-10-10 08:11:55 -04:00
|
|
|
format.html do
|
|
|
|
@has_children = GroupDescendantsFinder.new(current_user: current_user,
|
|
|
|
parent_group: @group,
|
|
|
|
params: params).has_children?
|
2015-02-18 03:16:42 -05:00
|
|
|
end
|
|
|
|
|
2015-02-18 12:38:46 -05:00
|
|
|
format.atom do
|
|
|
|
load_events
|
2017-06-12 13:21:13 -04:00
|
|
|
render layout: 'xml.atom'
|
2015-02-18 12:38:46 -05:00
|
|
|
end
|
2012-10-02 13:42:15 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-03-10 08:29:38 -05:00
|
|
|
def activity
|
2016-02-06 12:36:46 -05:00
|
|
|
respond_to do |format|
|
2016-03-10 08:29:38 -05:00
|
|
|
format.html
|
|
|
|
|
2016-02-06 12:36:46 -05:00
|
|
|
format.json do
|
|
|
|
load_events
|
|
|
|
pager_json("events/_events", @events.count)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-01 12:04:11 -05:00
|
|
|
def edit
|
|
|
|
end
|
|
|
|
|
2016-06-22 09:50:19 -04:00
|
|
|
def projects
|
2016-11-22 11:58:10 -05:00
|
|
|
@projects = @group.projects.with_statistics.page(params[:page])
|
2016-06-22 09:50:19 -04:00
|
|
|
end
|
|
|
|
|
2013-02-01 12:04:11 -05:00
|
|
|
def update
|
2016-03-08 19:01:33 -05:00
|
|
|
if Groups::UpdateService.new(@group, current_user, group_params).execute
|
2015-07-29 18:06:16 -04:00
|
|
|
redirect_to edit_group_path(@group), notice: "Group '#{@group.name}' was successfully updated."
|
2013-02-01 12:04:11 -05:00
|
|
|
else
|
2017-01-27 21:50:25 -05:00
|
|
|
@group.restore_path!
|
2016-12-21 07:29:27 -05:00
|
|
|
|
2016-12-21 05:50:31 -05:00
|
|
|
render action: "edit"
|
2013-02-01 12:04:11 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
2016-08-13 08:45:31 -04:00
|
|
|
Groups::DestroyService.new(@group, current_user).async_execute
|
2013-02-01 12:04:11 -05:00
|
|
|
|
2017-06-06 18:45:16 -04:00
|
|
|
redirect_to root_path, status: 302, alert: "Group '#{@group.name}' was scheduled for deletion."
|
2013-02-01 12:04:11 -05:00
|
|
|
end
|
|
|
|
|
2012-10-02 13:42:15 -04:00
|
|
|
protected
|
|
|
|
|
2013-01-25 04:30:49 -05:00
|
|
|
def authorize_create_group!
|
2017-09-07 14:35:45 -04:00
|
|
|
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
|
2013-02-01 12:04:11 -05:00
|
|
|
end
|
|
|
|
|
2015-05-01 04:39:11 -04:00
|
|
|
def determine_layout
|
2013-06-08 09:26:57 -04:00
|
|
|
if [:new, :create].include?(action_name.to_sym)
|
2015-05-01 04:39:11 -04:00
|
|
|
'application'
|
2015-06-15 18:32:14 -04:00
|
|
|
elsif [:edit, :update, :projects].include?(action_name.to_sym)
|
|
|
|
'group_settings'
|
2014-02-13 15:45:51 -05:00
|
|
|
else
|
2015-05-01 04:39:11 -04:00
|
|
|
'group'
|
2013-06-08 09:26:57 -04:00
|
|
|
end
|
|
|
|
end
|
2014-01-15 09:16:45 -05:00
|
|
|
|
2014-06-26 09:57:10 -04:00
|
|
|
def group_params
|
2017-01-10 09:57:09 -05:00
|
|
|
params.require(:group).permit(group_params_ce)
|
|
|
|
end
|
|
|
|
|
|
|
|
def group_params_ce
|
|
|
|
[
|
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,
|
|
|
|
:public,
|
|
|
|
:request_access_enabled,
|
2016-09-06 12:48:00 -04:00
|
|
|
:share_with_group_lock,
|
2017-01-24 10:32:34 -05:00
|
|
|
: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
|
2017-01-10 09:57:09 -05:00
|
|
|
]
|
2014-06-26 09:57:10 -04:00
|
|
|
end
|
2015-02-18 12:38:46 -05:00
|
|
|
|
|
|
|
def load_events
|
2017-10-20 09:39:15 -04:00
|
|
|
params[:sort] ||= 'latest_activity_desc'
|
|
|
|
|
|
|
|
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
|
|
|
|
.includes(:namespace)
|
|
|
|
.page(params[:page])
|
|
|
|
|
2017-07-27 13:42:15 -04:00
|
|
|
@events = EventCollection
|
|
|
|
.new(@projects, offset: params[:offset].to_i, filter: event_filter)
|
|
|
|
.to_a
|
2017-11-06 11:52:56 -05:00
|
|
|
|
|
|
|
Events::RenderService.new(current_user).execute(@events, atom_request: request.format.atom?)
|
2015-02-18 12:38:46 -05:00
|
|
|
end
|
2017-01-24 10:32:34 -05:00
|
|
|
|
|
|
|
def user_actions
|
|
|
|
if current_user
|
|
|
|
@notification_setting = current_user.notification_settings_for(group)
|
|
|
|
end
|
|
|
|
end
|
2017-05-18 19:23:05 -04:00
|
|
|
|
|
|
|
def build_canonical_path(group)
|
|
|
|
return group_path(group) if action_name == 'show' # root group path
|
2017-06-06 18:45:16 -04:00
|
|
|
|
2017-05-18 19:23:05 -04:00
|
|
|
params[:id] = group.to_param
|
|
|
|
|
|
|
|
url_for(params)
|
|
|
|
end
|
2012-10-02 13:42:15 -04:00
|
|
|
end
|