2 changed files with 28 additions and 9 deletions
@ -0,0 +1,23 @@ |
|||||||
|
namespace :core do |
||||||
|
desc "Update sales log database field from data XMLs provided by Softwire" |
||||||
|
task :sales_data_import_field, %i[field path] => :environment do |_task, args| |
||||||
|
field = args[:field] |
||||||
|
path = args[:path] |
||||||
|
raise "Usage: rake core:sales_data_import_field['field','path/to/xml_files']" if path.blank? || field.blank? |
||||||
|
|
||||||
|
# We only allow a reduced list of known fields to be updatable |
||||||
|
case field |
||||||
|
when "owning_organisation_id" |
||||||
|
s3_service = Storage::S3Service.new(PlatformHelper.is_paas? ? Configuration::PaasConfigurationService.new : Configuration::EnvConfigurationService.new, ENV["IMPORT_PAAS_INSTANCE"]) |
||||||
|
archive_io = s3_service.get_file_io(path) |
||||||
|
archive_service = Storage::ArchiveService.new(archive_io) |
||||||
|
if archive_service.folder_present?("logs") |
||||||
|
Rails.logger.info("Start importing field from folder logs") |
||||||
|
Imports::SalesLogsFieldImportService.new(archive_service).update_field(field, "logs") |
||||||
|
Rails.logger.info("Imported") |
||||||
|
end |
||||||
|
else |
||||||
|
raise "Field #{field} cannot be updated by data_import_field" |
||||||
|
end |
||||||
|
end |
||||||
|
end |
||||||
Loading…
Reference in new issue