debian-mirror-gitlab/app/services/issuable/bulk_update_service.rb

55 lines
1.3 KiB
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2016-09-29 09:46:39 +05:30
module Issuable
2019-09-30 21:07:59 +05:30
class BulkUpdateService
include Gitlab::Allowable
attr_accessor :current_user, :params
def initialize(user = nil, params = {})
@current_user, @params = user, params.dup
end
2018-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ActiveRecord
2016-09-29 09:46:39 +05:30
def execute(type)
model_class = type.classify.constantize
update_class = type.classify.pluralize.constantize::UpdateService
ids = params.delete(:issuable_ids).split(",")
items = model_class.where(id: ids)
2017-08-17 22:00:37 +05:30
permitted_attrs(type).each do |key|
2016-09-29 09:46:39 +05:30
params.delete(key) unless params[key].present?
end
2017-08-17 22:00:37 +05:30
if params[:assignee_ids] == [IssuableFinder::NONE.to_s]
params[:assignee_ids] = []
end
2016-09-29 09:46:39 +05:30
items.each do |issuable|
next unless can?(current_user, :"update_#{type}", issuable)
2019-10-12 21:52:04 +05:30
update_class.new(issuable.issuing_parent, current_user, params).execute(issuable)
2016-09-29 09:46:39 +05:30
end
{
count: items.count,
success: !items.count.zero?
}
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2017-08-17 22:00:37 +05:30
private
def permitted_attrs(type)
attrs = %i(state_event milestone_id assignee_id assignee_ids add_label_ids remove_label_ids subscription_event)
if type == 'issue'
attrs.push(:assignee_ids)
else
attrs.push(:assignee_id)
end
end
2016-09-29 09:46:39 +05:30
end
end