2018-07-16 12:31:01 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-03-29 07:45:15 -04:00
|
|
|
module Labels
|
|
|
|
class CreateService < Labels::BaseService
|
|
|
|
def initialize(params = {})
|
2019-01-02 15:06:55 -05:00
|
|
|
@params = params.to_h.dup.with_indifferent_access
|
2017-03-29 07:45:15 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# returns the created label
|
|
|
|
def execute(target_params)
|
|
|
|
params[:color] = convert_color_name_to_hex if params[:color].present?
|
|
|
|
|
|
|
|
project_or_group = target_params[:project] || target_params[:group]
|
|
|
|
|
|
|
|
if project_or_group.present?
|
|
|
|
project_or_group.labels.create(params)
|
|
|
|
elsif target_params[:template]
|
|
|
|
label = Label.new(params)
|
|
|
|
label.template = true
|
|
|
|
label.save
|
|
|
|
label
|
|
|
|
else
|
2020-05-21 17:08:31 -04:00
|
|
|
Gitlab::AppLogger.warn("target_params should contain :project or :group or :template, actual value: #{target_params}")
|
2017-03-29 07:45:15 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2021-01-18 04:11:05 -05:00
|
|
|
|
2021-05-11 17:10:21 -04:00
|
|
|
Labels::CreateService.prepend_mod_with('Labels::CreateService')
|