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

126 lines
3.1 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-09-19 19:49:08 +00:00
class Groups::LabelsController < Groups::ApplicationController
include ToggleSubscriptionAction
before_action :label, only: [:edit, :update, :destroy]
2016-09-19 19:49:08 +00:00
before_action :authorize_admin_labels!, only: [:new, :create, :edit, :update, :destroy]
before_action :save_previous_label_path, only: [:edit]
2016-09-19 19:49:08 +00:00
respond_to :html
feature_category :team_planning
2016-09-19 19:49:08 +00:00
def index
2018-04-25 10:56:54 +00:00
respond_to do |format|
2018-05-17 15:14:17 +00:00
format.html do
# at group level we do not want to list project labels,
# we only want `only_group_labels = false` when pulling labels for label filter dropdowns, fetched through json
@labels = available_labels(params.merge(only_group_labels: true)).page(params[:page]) # rubocop: disable CodeReuse/ActiveRecord
Preloaders::LabelsPreloader.new(@labels, current_user).preload_all
2018-05-17 15:14:17 +00:00
end
format.json do
render json: LabelSerializer.new.represent_appearance(available_labels)
end
end
2016-09-19 19:49:08 +00:00
end
def new
@label = @group.labels.new
@previous_labels_path = previous_labels_path
2016-09-19 19:49:08 +00:00
end
def create
2017-03-29 11:45:15 +00:00
@label = Labels::CreateService.new(label_params).execute(group: group)
2016-09-19 19:49:08 +00:00
2018-02-19 19:06:16 +00:00
respond_to do |format|
format.html do
if @label.valid?
redirect_to group_labels_path(@group)
else
render :new
end
end
format.json do
render json: LabelSerializer.new.represent_appearance(@label)
end
2016-09-19 19:49:08 +00:00
end
end
def edit
@previous_labels_path = previous_labels_path
2016-09-19 19:49:08 +00:00
end
def update
2017-03-29 11:45:15 +00:00
@label = Labels::UpdateService.new(label_params).execute(@label)
if @label.valid?
redirect_back_or_group_labels_path
2016-09-19 19:49:08 +00:00
else
render :edit
end
end
def destroy
@label.destroy
redirect_to group_labels_path(@group), status: :found, notice: "#{@label.name} deleted permanently"
2016-09-19 19:49:08 +00:00
end
protected
def authorize_admin_labels!
return render_404 unless can?(current_user, :admin_label, @group)
end
def authorize_read_labels!
return render_404 unless can?(current_user, :read_label, @group)
end
def label
@label ||= available_labels(params.merge(only_group_labels: true)).find(params[:id])
2016-09-19 19:49:08 +00:00
end
alias_method :subscribable_resource, :label
def subscribable_project
nil
end
2016-09-19 19:49:08 +00:00
def label_params
params.require(:label).permit(:title, :description, :color)
end
def redirect_back_or_group_labels_path(options = {})
redirect_to previous_labels_path, options
end
def previous_labels_path
session.fetch(:previous_labels_path, fallback_path)
end
def fallback_path
group_labels_path(@group)
end
def save_previous_label_path
session[:previous_labels_path] = URI(request.referer || '').path
end
2018-04-25 10:56:54 +00:00
def available_labels(options = params)
2018-04-25 10:56:54 +00:00
@available_labels ||=
LabelsFinder.new(
current_user,
group_id: @group.id,
only_group_labels: options[:only_group_labels],
include_ancestor_groups: true,
sort: sort,
subscribed: options[:subscribed],
include_descendant_groups: options[:include_descendant_groups],
search: options[:search]).execute
2018-04-25 10:56:54 +00:00
end
def sort
@sort ||= params[:sort] || 'name_asc'
end
2016-09-19 19:49:08 +00:00
end