2020-09-29 11:10:08 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class BulkUpdateIntegrationService
|
|
|
|
def initialize(integration, batch)
|
|
|
|
@integration = integration
|
|
|
|
@batch = batch
|
|
|
|
end
|
|
|
|
|
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
|
|
|
def execute
|
|
|
|
Service.transaction do
|
2020-10-28 17:08:42 -04:00
|
|
|
Service.where(id: batch.select(:id)).update_all(service_hash)
|
2020-09-29 11:10:08 -04:00
|
|
|
|
|
|
|
if integration.data_fields_present?
|
|
|
|
integration.data_fields.class.where(service_id: batch.select(:id)).update_all(data_fields_hash)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
attr_reader :integration, :batch
|
|
|
|
|
|
|
|
def service_hash
|
2020-10-23 14:08:31 -04:00
|
|
|
integration.to_service_hash.tap { |json| json['inherit_from_id'] = integration.inherit_from_id || integration.id }
|
2020-09-29 11:10:08 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def data_fields_hash
|
|
|
|
integration.to_data_fields_hash
|
|
|
|
end
|
|
|
|
end
|