Sha256: 75d74661a5caa85de477a0068f03274e75feb53a5334ab78ecb61cff516b6249
Contents?: true
Size: 1.4 KB
Versions: 5
Compression:
Stored size: 1.4 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/ 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
5 entries across 5 versions & 1 rubygems