2013-06-23 12:47:22 -04:00
|
|
|
class Projects::LabelsController < Projects::ApplicationController
|
2016-03-15 12:18:47 -04:00
|
|
|
include ToggleSubscriptionAction
|
|
|
|
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :module_enabled
|
2016-11-02 07:58:59 -04:00
|
|
|
before_action :label, only: [:edit, :update, :destroy, :promote]
|
2016-11-01 13:02:58 -04:00
|
|
|
before_action :find_labels, only: [:index, :set_priorities, :remove_priority, :toggle_subscription]
|
2015-06-17 10:33:51 -04:00
|
|
|
before_action :authorize_read_label!
|
2016-09-20 10:03:41 -04:00
|
|
|
before_action :authorize_admin_labels!, only: [:new, :create, :edit, :update,
|
|
|
|
:generate, :destroy, :remove_priority,
|
|
|
|
:set_priorities]
|
2016-11-02 07:58:59 -04:00
|
|
|
before_action :authorize_admin_group!, only: [:promote]
|
2012-08-24 06:05:40 -04:00
|
|
|
|
|
|
|
respond_to :js, :html
|
|
|
|
|
|
|
|
def index
|
2016-10-14 17:32:44 -04:00
|
|
|
@prioritized_labels = @available_labels.prioritized(@project)
|
|
|
|
@labels = @available_labels.unprioritized(@project).page(params[:page])
|
2016-03-16 14:08:35 -04:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
|
|
|
format.json do
|
2016-10-11 15:33:55 -04:00
|
|
|
render json: @available_labels.as_json(only: [:id, :title, :color])
|
2016-03-16 14:08:35 -04:00
|
|
|
end
|
|
|
|
end
|
2012-08-24 06:05:40 -04:00
|
|
|
end
|
|
|
|
|
2014-07-30 06:12:11 -04:00
|
|
|
def new
|
|
|
|
@label = @project.labels.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
|
|
|
@label = @project.labels.create(label_params)
|
|
|
|
|
|
|
|
if @label.valid?
|
2016-09-22 12:07:57 -04:00
|
|
|
respond_to do |format|
|
|
|
|
format.html { redirect_to namespace_project_labels_path(@project.namespace, @project) }
|
|
|
|
format.json { render json: @label }
|
|
|
|
end
|
2014-07-30 06:12:11 -04:00
|
|
|
else
|
2016-09-22 12:07:57 -04:00
|
|
|
respond_to do |format|
|
2016-09-20 10:03:41 -04:00
|
|
|
format.html { render :new }
|
2016-09-22 12:07:57 -04:00
|
|
|
format.json { render json: { message: @label.errors.messages }, status: 400 }
|
|
|
|
end
|
2014-07-30 06:12:11 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def edit
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
if @label.update_attributes(label_params)
|
2015-01-24 13:02:58 -05:00
|
|
|
redirect_to namespace_project_labels_path(@project.namespace, @project)
|
2014-07-30 06:12:11 -04:00
|
|
|
else
|
2016-09-20 10:03:41 -04:00
|
|
|
render :edit
|
2014-07-30 06:12:11 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-05-07 10:57:29 -04:00
|
|
|
def generate
|
2013-05-07 12:26:41 -04:00
|
|
|
Gitlab::IssuesLabels.generate(@project)
|
2013-05-07 10:57:29 -04:00
|
|
|
|
2014-04-14 21:12:07 -04:00
|
|
|
if params[:redirect] == 'issues'
|
2015-01-24 13:02:58 -05:00
|
|
|
redirect_to namespace_project_issues_path(@project.namespace, @project)
|
2014-04-14 21:12:07 -04:00
|
|
|
elsif params[:redirect] == 'merge_requests'
|
2015-01-24 13:02:58 -05:00
|
|
|
redirect_to namespace_project_merge_requests_path(@project.namespace,
|
|
|
|
@project)
|
2014-06-04 04:08:21 -04:00
|
|
|
else
|
2015-01-24 13:02:58 -05:00
|
|
|
redirect_to namespace_project_labels_path(@project.namespace, @project)
|
2014-04-14 21:12:07 -04:00
|
|
|
end
|
2013-05-07 10:57:29 -04:00
|
|
|
end
|
|
|
|
|
2014-07-30 08:15:39 -04:00
|
|
|
def destroy
|
|
|
|
@label.destroy
|
2016-09-29 00:03:28 -04:00
|
|
|
@labels = find_labels
|
2014-07-30 08:15:39 -04:00
|
|
|
|
2016-11-12 18:51:47 -05:00
|
|
|
redirect_to(namespace_project_labels_path(@project.namespace, @project), notice: 'Label was removed')
|
2014-07-30 08:15:39 -04:00
|
|
|
end
|
|
|
|
|
2016-05-13 11:26:18 -04:00
|
|
|
def remove_priority
|
2016-05-02 19:19:46 -04:00
|
|
|
respond_to do |format|
|
2016-09-29 00:03:28 -04:00
|
|
|
label = @available_labels.find(params[:id])
|
2016-09-19 23:09:57 -04:00
|
|
|
|
2016-10-17 14:34:22 -04:00
|
|
|
if label.unprioritize!(project)
|
2016-05-02 19:19:46 -04:00
|
|
|
format.json { render json: label }
|
|
|
|
else
|
2016-10-14 17:32:44 -04:00
|
|
|
format.json { head :unprocessable_entity }
|
2016-05-02 19:19:46 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-06-02 16:21:15 -04:00
|
|
|
def set_priorities
|
2016-05-13 11:26:18 -04:00
|
|
|
Label.transaction do
|
2016-10-17 14:34:22 -04:00
|
|
|
available_labels_ids = @available_labels.where(id: params[:label_ids]).pluck(:id)
|
|
|
|
label_ids = params[:label_ids].select { |id| available_labels_ids.include?(id.to_i) }
|
2016-09-29 00:03:28 -04:00
|
|
|
|
2016-10-17 14:34:22 -04:00
|
|
|
label_ids.each_with_index do |label_id, index|
|
|
|
|
label = @available_labels.find(label_id)
|
|
|
|
label.prioritize!(project, index)
|
2016-05-13 11:26:18 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-05-02 19:19:46 -04:00
|
|
|
respond_to do |format|
|
2016-05-13 11:26:18 -04:00
|
|
|
format.json { render json: { message: 'success' } }
|
2016-05-02 19:19:46 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-11-02 07:58:59 -04:00
|
|
|
def promote
|
|
|
|
promote_service = Labels::PromoteService.new(@project, @current_user)
|
|
|
|
|
|
|
|
begin
|
|
|
|
return render_404 unless promote_service.execute(@label)
|
|
|
|
respond_to do |format|
|
|
|
|
format.html do
|
|
|
|
redirect_to(namespace_project_labels_path(@project.namespace, @project),
|
|
|
|
notice: 'Label was promoted to a Group Label')
|
|
|
|
end
|
|
|
|
format.js
|
|
|
|
end
|
|
|
|
rescue ActiveRecord::RecordInvalid => e
|
|
|
|
Gitlab::AppLogger.error "Failed to promote label \"#{@label.title}\" to group label"
|
|
|
|
Gitlab::AppLogger.error e
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html do
|
|
|
|
redirect_to(namespace_project_labels_path(@project.namespace, @project),
|
|
|
|
notice: 'Failed to promote label due to internal error. Please contact administrators.')
|
|
|
|
end
|
|
|
|
format.js
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-08-24 06:05:40 -04:00
|
|
|
protected
|
|
|
|
|
|
|
|
def module_enabled
|
2016-08-01 18:31:21 -04:00
|
|
|
unless @project.feature_available?(:issues, current_user) || @project.feature_available?(:merge_requests, current_user)
|
2014-04-14 21:12:07 -04:00
|
|
|
return render_404
|
|
|
|
end
|
2012-08-24 06:05:40 -04:00
|
|
|
end
|
2014-07-30 06:12:11 -04:00
|
|
|
|
|
|
|
def label_params
|
2016-06-02 17:33:53 -04:00
|
|
|
params.require(:label).permit(:title, :description, :color)
|
2014-07-30 06:12:11 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def label
|
2016-03-15 12:18:47 -04:00
|
|
|
@label ||= @project.labels.find(params[:id])
|
2014-07-30 06:12:11 -04:00
|
|
|
end
|
2016-11-01 13:02:58 -04:00
|
|
|
|
|
|
|
def subscribable_resource
|
|
|
|
@available_labels.find(params[:id])
|
|
|
|
end
|
2014-07-30 06:12:11 -04:00
|
|
|
|
2016-09-29 00:03:28 -04:00
|
|
|
def find_labels
|
2016-10-26 09:51:34 -04:00
|
|
|
@available_labels ||= LabelsFinder.new(current_user, project_id: @project.id).execute
|
2016-09-20 10:03:41 -04:00
|
|
|
end
|
|
|
|
|
2014-07-30 06:12:11 -04:00
|
|
|
def authorize_admin_labels!
|
|
|
|
return render_404 unless can?(current_user, :admin_label, @project)
|
|
|
|
end
|
2016-11-02 07:58:59 -04:00
|
|
|
|
|
|
|
def authorize_admin_group!
|
|
|
|
return render_404 unless can?(current_user, :admin_group, @project.group)
|
|
|
|
end
|
2012-08-24 06:05:40 -04:00
|
|
|
end
|