Sha256: 0126e797ed72f705625b19fcf42f5100f810f6b6f66e8adf4edac7e9d19b8f83
Contents?: true
Size: 1.19 KB
Versions: 55
Compression:
Stored size: 1.19 KB
Contents
require "open-uri" module CanvasSync module Jobs # ActiveJob class that wraps around a report processor. This job will # download the report, and then pass the file path and options into the # process method on the processor. class ReportProcessorJob < CanvasSync::Job # @param report_name [Hash] e.g., 'provisioning_csv' # @param report_url [String] # @param processor [String] a stringified report processor class name # @param options [Hash] hash of options that will be passed to the job processor # @return [nil] def perform(report_name, report_url, processor, options, report_id) @job_log.update(job_class: processor) download(report_name, report_url) do |file_path| options = batch_context.merge(options).merge({ report_processor_job_id: @job_log.job_id }) processor.constantize.process(file_path, options, report_id) end end private def download(report_name, report_url) Dir.mktmpdir do |dir| file_path = "#{dir}/#{report_name}" IO.copy_stream(URI.open(report_url), file_path) yield file_path end end end end end
Version data entries
55 entries across 55 versions & 1 rubygems