Sha256: 0c170afe1d401c5205333dac463c600e5aff1bd53ef36abf4b2a6cbc4a94a0ae

Contents?: true

Size: 1.42 KB

Versions: 6

Compression:

Stored size: 1.42 KB

Contents

# frozen_string_literal: true

require_dependency "renalware/feeds"

module Renalware
  module Feeds
    module Files
      module PrimaryCarePhysicians
        class ImportJob < ApplicationJob
          include StringLogging
          include Feeds::Job

          FILE_TO_EXTRACT_FROM_ARCHIVE = /^egpcur.csv$/

          def perform(file)
            logging_to_stringio(strio = StringIO.new)
            log "PrimaryCarePhysician count before update: #{primary_care_physician_count}"
            file.update!(status: :processing, attempts: file.attempts + 1)
            status = :success
            elapsed_ms = Benchmark.ms { process_archive(file.location) }
            log "PrimaryCarePhysician count after update: #{primary_care_physician_count}"
          rescue StandardError => e
            Rails.logger.error(formatted_exception(e))
            status = :failure
            raise e
          ensure
            file.update!(status: status, result: strio.string, time_taken: elapsed_ms)
          end

          private

          def process_archive(location)
            ZipArchive.new(location).unzip do |files|
              csv_path = find_file_in(files, FILE_TO_EXTRACT_FROM_ARCHIVE)
              PrimaryCarePhysicians::ImportCSV.new(csv_path).call
            end
          end

          def primary_care_physician_count
            Renalware::Patients::PrimaryCarePhysician.count
          end
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
renalware-core-2.0.83 app/models/renalware/feeds/files/primary_care_physicians/import_job.rb
renalware-core-2.0.82 app/models/renalware/feeds/files/primary_care_physicians/import_job.rb
renalware-core-2.0.81 app/models/renalware/feeds/files/primary_care_physicians/import_job.rb
renalware-core-2.0.80 app/models/renalware/feeds/files/primary_care_physicians/import_job.rb
renalware-core-2.0.79 app/models/renalware/feeds/files/primary_care_physicians/import_job.rb
renalware-core-2.0.78 app/models/renalware/feeds/files/primary_care_physicians/import_job.rb