Class: Lcms::Engine::DocumentGeneratePdfJob

Inherits:
ApplicationJob
  • Object
show all
Includes:
RetrySimple, ResqueJob
Defined in:
app/jobs/lcms/engine/document_generate_pdf_job.rb

Constant Summary collapse

PDF_EXPORTERS =
{
  'full' => DocumentExporter::PDF::Document,
  'sm' => DocumentExporter::PDF::StudentMaterial,
  'tm' => DocumentExporter::PDF::TeacherMaterial
}.freeze

Instance Method Summary collapse

Methods included from ResqueJob

included, #result_key, #store_initial_result, #store_result

Instance Method Details

#perform(doc, options) ⇒ Object



17
18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'app/jobs/lcms/engine/document_generate_pdf_job.rb', line 17

def perform(doc, options)
  content_type = options[:content_type]
  document = DocumentGenerator.document_presenter.new doc.reload, content_type: content_type
  filename = options[:filename].presence || "#{DocumentExporter::PDF::Base.s3_folder}/#{document.pdf_filename}"
  pdf = PDF_EXPORTERS[content_type].new(document, options).export
  url = S3Service.upload filename, pdf

  return if options[:excludes].present?

  key = ::DocumentExporter::PDF::Base.pdf_key options[:content_type]
  document.with_lock do
    document.update links: document.reload.links.merge(key => url)
  end
end