Sha256: 9089c03f15d1627b473a88c7b8b16976b3b150b04382f9d0ea3a03dfd27339f5
Contents?: true
Size: 1.44 KB
Versions: 31
Compression:
Stored size: 1.44 KB
Contents
# frozen_string_literal: true require_dependency "renalware/feeds" module Renalware module Feeds module Files module PracticeMemberships class ImportJob < ApplicationJob include StringLogging include Feeds::Job FILE_TO_EXTRACT_FROM_ARCHIVE = /epracmem.csv/.freeze # TODO: refactor def perform(file) logging_to_stringio(strio = StringIO.new) log "Before upload there are #{practice_membership_count} practice memberships" file.update!(status: :processing, attempts: file.attempts + 1) status = :success elapsed_ms = Benchmark.ms { process_archive(file.location) } log "After upload there are #{practice_membership_count} practice memberships" 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) PracticeMemberships::ImportCSV.new(csv_path).call end end def practice_membership_count Patients::PracticeMembership.count end end end end end end
Version data entries
31 entries across 31 versions & 1 rubygems