2021-01-03 14:25:43 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class BulkCreateIntegrationService
|
|
|
|
def initialize(integration, batch, association)
|
|
|
|
@integration = integration
|
|
|
|
@batch = batch
|
|
|
|
@association = association
|
|
|
|
end
|
|
|
|
|
|
|
|
def execute
|
2021-09-30 23:02:18 +05:30
|
|
|
service_list = ServiceList.new(batch, integration_hash, association).to_array
|
2021-01-03 14:25:43 +05:30
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
Integration.transaction do
|
2021-01-03 14:25:43 +05:30
|
|
|
results = bulk_insert(*service_list)
|
|
|
|
|
|
|
|
if integration.data_fields_present?
|
|
|
|
data_list = DataList.new(results, data_fields_hash, integration.data_fields.class).to_array
|
|
|
|
|
|
|
|
bulk_insert(*data_list)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
attr_reader :integration, :batch, :association
|
|
|
|
|
|
|
|
def bulk_insert(klass, columns, values_array)
|
|
|
|
items_to_insert = values_array.map { |array| Hash[columns.zip(array)] }
|
|
|
|
|
|
|
|
klass.insert_all(items_to_insert, returning: [:id])
|
|
|
|
end
|
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
def integration_hash
|
2021-01-03 14:25:43 +05:30
|
|
|
if integration.template?
|
2021-09-30 23:02:18 +05:30
|
|
|
integration.to_integration_hash
|
2021-01-03 14:25:43 +05:30
|
|
|
else
|
2021-09-30 23:02:18 +05:30
|
|
|
integration.to_integration_hash.tap { |json| json['inherit_from_id'] = integration.inherit_from_id || integration.id }
|
2021-01-03 14:25:43 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def data_fields_hash
|
|
|
|
integration.to_data_fields_hash
|
|
|
|
end
|
|
|
|
end
|