gitlab-org--gitlab-foss/app/controllers/groups/application_controller.rb

45 lines
970 B
Ruby
Raw Normal View History

2015-03-12 11:08:48 -04:00
class Groups::ApplicationController < ApplicationController
layout 'group'
2016-03-20 16:03:53 -04:00
skip_before_action :authenticate_user!
before_action :group
2015-03-12 11:08:48 -04:00
private
def group
2016-03-20 16:03:53 -04:00
unless @group
id = params[:group_id] || params[:id]
@group = Group.find_by_full_path(id)
2017-04-05 08:43:03 -04:00
@group_merge_requests = MergeRequestsFinder.new(current_user, group_id: @group.id).execute
2016-03-20 16:03:53 -04:00
unless @group && can?(current_user, :read_group, @group)
@group = nil
2016-03-20 16:03:53 -04:00
if current_user.nil?
authenticate_user!
else
render_404
end
end
end
2016-03-20 16:03:53 -04:00
@group
end
def group_projects
@projects ||= GroupProjectsFinder.new(group: group, current_user: current_user).execute
end
2015-03-12 11:08:48 -04:00
def authorize_admin_group!
unless can?(current_user, :admin_group, group)
2015-03-12 11:08:48 -04:00
return render_404
end
end
2015-07-31 08:15:49 -04:00
def authorize_admin_group_member!
unless can?(current_user, :admin_group_member, group)
return render_403
end
end
2015-03-12 11:08:48 -04:00
end