2018-09-14 01:42:05 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-03-12 11:08:48 -04:00
|
|
|
class GroupsController < Groups::ApplicationController
|
2018-09-03 09:16:23 -04:00
|
|
|
include API::Helpers::RelatedResourcesHelpers
|
2019-01-06 19:00:48 -05:00
|
|
|
include IssuableCollectionsAction
|
2017-03-03 05:35:04 -05:00
|
|
|
include ParamsBackwardCompatibility
|
2017-10-11 05:03:19 -04:00
|
|
|
include PreviewMarkdown
|
2019-02-05 09:55:31 -05:00
|
|
|
include RecordUserLastActivity
|
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
|
|
|
|
2018-11-28 14:06:02 -05:00
|
|
|
prepend_before_action(only: [:show, :issues]) { authenticate_sessionless_user!(:rss) }
|
|
|
|
prepend_before_action(only: [:issues_calendar]) { authenticate_sessionless_user!(:ics) }
|
|
|
|
|
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
|
2018-02-05 19:10:58 -05:00
|
|
|
before_action :authorize_admin_group!, only: [:edit, :update, :destroy, :projects, :transfer]
|
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]
|
2016-03-10 08:29:38 -05:00
|
|
|
before_action :event_filter, only: [:activity]
|
2013-06-08 09:26:57 -04:00
|
|
|
|
2018-09-07 02:09:13 -04:00
|
|
|
before_action :user_actions, only: [:show]
|
2017-01-24 10:32:34 -05:00
|
|
|
|
2017-12-11 09:21:06 -05:00
|
|
|
skip_cross_project_access_check :index, :new, :create, :edit, :update,
|
|
|
|
:destroy, :projects
|
|
|
|
# When loading show as an atom feed, we render events that could leak cross
|
|
|
|
# project information
|
|
|
|
skip_cross_project_access_check :show, if: -> { request.format.html? }
|
|
|
|
|
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|
|
2019-03-14 08:55:46 -04:00
|
|
|
format.html do
|
|
|
|
render_show_html
|
|
|
|
end
|
2015-02-18 03:16:42 -05:00
|
|
|
|
2015-02-18 12:38:46 -05:00
|
|
|
format.atom do
|
2019-03-14 08:55:46 -04:00
|
|
|
render_details_view_atom
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def details
|
|
|
|
respond_to do |format|
|
|
|
|
format.html do
|
|
|
|
render_details_html
|
|
|
|
end
|
|
|
|
|
|
|
|
format.atom do
|
|
|
|
render_details_view_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
|
2018-09-03 09:16:23 -04:00
|
|
|
@badge_api_endpoint = expose_url(api_v4_groups_badges_path(id: @group.id))
|
2013-02-01 12:04:11 -05:00
|
|
|
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
|
2018-08-08 02:24:36 -04:00
|
|
|
redirect_to edit_group_path(@group, anchor: params[:update_section]), 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
|
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2018-02-05 19:10:58 -05:00
|
|
|
def transfer
|
|
|
|
parent_group = Group.find_by(id: params[:new_parent_group_id])
|
|
|
|
service = ::Groups::TransferService.new(@group, current_user)
|
|
|
|
|
|
|
|
if service.execute(parent_group)
|
|
|
|
flash[:notice] = "Group '#{@group.name}' was successfully transferred."
|
|
|
|
redirect_to group_path(@group)
|
|
|
|
else
|
|
|
|
flash.now[:alert] = service.error
|
|
|
|
render :edit
|
|
|
|
end
|
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2018-02-05 19:10:58 -05:00
|
|
|
|
2012-10-02 13:42:15 -04:00
|
|
|
protected
|
|
|
|
|
2019-03-14 08:55:46 -04:00
|
|
|
def render_show_html
|
|
|
|
render 'groups/show'
|
|
|
|
end
|
|
|
|
|
|
|
|
def render_details_html
|
|
|
|
render 'groups/show'
|
|
|
|
end
|
|
|
|
|
|
|
|
def render_details_view_atom
|
|
|
|
load_events
|
|
|
|
render layout: 'xml.atom', template: 'groups/show'
|
|
|
|
end
|
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
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
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2013-02-01 12:04:11 -05:00
|
|
|
|
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
|
2018-01-31 10:23:15 -05:00
|
|
|
params.require(:group).permit(group_params_attributes)
|
2017-01-10 09:57:09 -05:00
|
|
|
end
|
|
|
|
|
2018-01-31 10:23:15 -05:00
|
|
|
def group_params_attributes
|
2017-01-10 09:57:09 -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,
|
|
|
|
: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
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
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)
|
|
|
|
|
2017-07-27 13:42:15 -04:00
|
|
|
@events = EventCollection
|
2019-03-14 08:55:46 -04:00
|
|
|
.new(@projects, offset: params[:offset].to_i, filter: event_filter)
|
|
|
|
.to_a
|
2017-11-06 11:52:56 -05:00
|
|
|
|
2018-04-03 09:45:17 -04:00
|
|
|
Events::RenderService
|
|
|
|
.new(current_user)
|
|
|
|
.execute(@events, atom_request: request.format.atom?)
|
2015-02-18 12:38:46 -05:00
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
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
|
|
|
|
|
2018-04-08 00:35:30 -04:00
|
|
|
url_for(safe_params)
|
2017-05-18 19:23:05 -04:00
|
|
|
end
|
2012-10-02 13:42:15 -04:00
|
|
|
end
|