2015-03-12 11:08:48 -04:00
|
|
|
class GroupsController < Groups::ApplicationController
|
2016-03-04 10:42:58 -05:00
|
|
|
include FilterProjects
|
2015-11-17 05:03:18 -05:00
|
|
|
include IssuesAction
|
|
|
|
include MergeRequestsAction
|
|
|
|
|
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]
|
|
|
|
before_action :authorize_create_group!, only: [:new, :create]
|
2013-01-24 10:47:09 -05:00
|
|
|
|
|
|
|
# Load group projects
|
2016-03-20 16:03:53 -04:00
|
|
|
before_action :group_projects, only: [:show, :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
|
|
|
|
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
|
|
|
|
@group = Group.new
|
|
|
|
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?
|
2015-07-29 18:06:16 -04:00
|
|
|
redirect_to @group, notice: "Group '#{@group.name}' was successfully created."
|
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
|
2016-06-21 15:50:13 -04:00
|
|
|
if current_user
|
|
|
|
@last_push = current_user.recent_push
|
|
|
|
@notification_setting = current_user.notification_settings_for(group)
|
|
|
|
end
|
2016-03-20 16:03:53 -04:00
|
|
|
|
2016-06-21 15:50:13 -04:00
|
|
|
setup_projects
|
2016-03-11 12:42:16 -05:00
|
|
|
|
2012-10-02 13:42:15 -04:00
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
2015-02-18 03:16:42 -05:00
|
|
|
|
|
|
|
format.json do
|
2016-02-06 12:36:46 -05:00
|
|
|
render json: {
|
|
|
|
html: view_to_html_string("dashboard/projects/_projects", locals: { projects: @projects })
|
|
|
|
}
|
2015-02-18 03:16:42 -05:00
|
|
|
end
|
|
|
|
|
2015-02-18 12:38:46 -05:00
|
|
|
format.atom do
|
|
|
|
load_events
|
|
|
|
render layout: false
|
|
|
|
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
|
|
|
|
@projects = @group.projects.page(params[:page])
|
|
|
|
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
|
|
|
|
render action: "edit"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
2016-05-28 22:54:17 -04:00
|
|
|
DestroyGroupService.new(@group, current_user).async_execute
|
2013-02-01 12:04:11 -05:00
|
|
|
|
2016-05-28 22:54:17 -04:00
|
|
|
redirect_to root_path, 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
|
|
|
|
|
2016-06-21 15:50:13 -04:00
|
|
|
def setup_projects
|
|
|
|
@projects = @projects.includes(:namespace)
|
|
|
|
@projects = @projects.sorted_by_activity
|
|
|
|
@projects = filter_projects(@projects)
|
|
|
|
@projects = @projects.sort(@sort = params[:sort])
|
|
|
|
@projects = @projects.page(params[:page]) if params[:filter_projects].blank?
|
|
|
|
|
|
|
|
@shared_projects = GroupProjectsFinder.new(group, only_shared: true).execute(current_user)
|
|
|
|
end
|
|
|
|
|
2013-01-25 04:30:49 -05:00
|
|
|
def authorize_create_group!
|
2013-02-01 12:04:11 -05:00
|
|
|
unless can?(current_user, :create_group, nil)
|
|
|
|
return render_404
|
|
|
|
end
|
|
|
|
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
|
2016-09-01 19:49:48 -04:00
|
|
|
params.require(:group).permit(
|
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,
|
|
|
|
:visibility_level
|
2016-09-01 19:49:48 -04:00
|
|
|
)
|
2014-06-26 09:57:10 -04:00
|
|
|
end
|
2015-02-18 12:38:46 -05:00
|
|
|
|
|
|
|
def load_events
|
2016-01-25 10:56:23 -05:00
|
|
|
@events = Event.in_projects(@projects)
|
2015-02-18 12:38:46 -05:00
|
|
|
@events = event_filter.apply_filter(@events).with_associations
|
|
|
|
@events = @events.limit(20).offset(params[:offset] || 0)
|
|
|
|
end
|
2012-10-02 13:42:15 -04:00
|
|
|
end
|