2015-03-12 11:08:48 -04:00
|
|
|
class GroupsController < Groups::ApplicationController
|
2015-11-17 05:03:18 -05:00
|
|
|
include IssuesAction
|
|
|
|
include MergeRequestsAction
|
|
|
|
|
2015-04-16 08:03:37 -04:00
|
|
|
skip_before_action :authenticate_user!, only: [:show, :issues, :merge_requests]
|
2012-10-02 13:42:15 -04:00
|
|
|
respond_to :html
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :group, except: [:new, :create]
|
2012-10-02 13:42:15 -04:00
|
|
|
|
2012-11-29 10:17:01 -05:00
|
|
|
# Authorize
|
2015-11-05 05:38:00 -05:00
|
|
|
before_action :authorize_read_group!, except: [:show, :new, :create, :autocomplete]
|
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
|
2015-11-05 05:38:00 -05:00
|
|
|
before_action :load_projects, except: [:new, :create, :projects, :edit, :update, :autocomplete]
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :event_filter, only: :show
|
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
|
2014-06-26 09:57:10 -04:00
|
|
|
@group = Group.new(group_params)
|
2014-12-22 06:50:58 -05:00
|
|
|
@group.name = @group.path.dup unless @group.name
|
2013-01-24 10:47:09 -05:00
|
|
|
|
|
|
|
if @group.save
|
2013-09-26 07:49:22 -04:00
|
|
|
@group.add_owner(current_user)
|
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
|
2014-02-13 15:45:51 -05:00
|
|
|
@last_push = current_user.recent_push if current_user
|
2015-02-18 03:16:42 -05:00
|
|
|
@projects = @projects.includes(:namespace)
|
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
|
2015-02-18 12:38:46 -05:00
|
|
|
load_events
|
2015-02-18 03:16:42 -05:00
|
|
|
pager_json("events/_events", @events.count)
|
|
|
|
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
|
|
|
|
|
2013-02-01 12:04:11 -05:00
|
|
|
def edit
|
|
|
|
end
|
|
|
|
|
2014-05-29 14:30:20 -04:00
|
|
|
def projects
|
|
|
|
@projects = @group.projects.page(params[:page])
|
|
|
|
end
|
|
|
|
|
2013-02-01 12:04:11 -05:00
|
|
|
def update
|
2014-06-26 09:57:10 -04:00
|
|
|
if @group.update_attributes(group_params)
|
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
|
2015-06-03 08:07:20 -04:00
|
|
|
DestroyGroupService.new(@group, current_user).execute
|
2013-02-01 12:04:11 -05:00
|
|
|
|
2015-10-12 08:37:56 -04:00
|
|
|
redirect_to root_path, alert: "Group '#{@group.name}' was successfully deleted."
|
2013-02-01 12:04:11 -05:00
|
|
|
end
|
|
|
|
|
2012-10-02 13:42:15 -04:00
|
|
|
protected
|
|
|
|
|
|
|
|
def group
|
2014-01-19 13:55:59 -05:00
|
|
|
@group ||= Group.find_by(path: params[:id])
|
2012-10-02 13:42:15 -04:00
|
|
|
end
|
|
|
|
|
2014-05-29 14:30:20 -04:00
|
|
|
def load_projects
|
2014-03-06 11:31:08 -05:00
|
|
|
@projects ||= ProjectsFinder.new.execute(current_user, group: group).sorted_by_activity.non_archived
|
2012-10-02 13:42:15 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def project_ids
|
2014-05-29 15:03:42 -04:00
|
|
|
@projects.pluck(:id)
|
2012-10-02 13:42:15 -04:00
|
|
|
end
|
2012-11-29 10:17:01 -05:00
|
|
|
|
|
|
|
# Dont allow unauthorized access to group
|
|
|
|
def authorize_read_group!
|
2014-05-29 15:03:42 -04:00
|
|
|
unless @group and (@projects.present? or can?(current_user, :read_group, @group))
|
2014-02-13 15:45:51 -05:00
|
|
|
if current_user.nil?
|
|
|
|
return authenticate_user!
|
|
|
|
else
|
|
|
|
return render_404
|
|
|
|
end
|
2012-11-29 10:17:01 -05:00
|
|
|
end
|
|
|
|
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
|
2015-11-05 05:38:00 -05:00
|
|
|
params.require(:group).permit(:name, :description, :path, :avatar, :public)
|
2014-06-26 09:57:10 -04:00
|
|
|
end
|
2015-02-18 12:38:46 -05:00
|
|
|
|
|
|
|
def load_events
|
|
|
|
@events = Event.in_projects(project_ids)
|
|
|
|
@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
|