Class: Para::Exporter::Base

Inherits:
Job::Base
  • Object
show all
Defined in:
lib/para/exporter/base.rb

Direct Known Subclasses

Table

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#modelObject (readonly)

Returns the value of attribute model.



4
5
6
# File 'lib/para/exporter/base.rb', line 4

def model
  @model
end

#nameObject (readonly)

Returns the value of attribute name.



4
5
6
# File 'lib/para/exporter/base.rb', line 4

def name
  @name
end

#optionsObject (readonly)

Returns the value of attribute options.



4
5
6
# File 'lib/para/exporter/base.rb', line 4

def options
  @options
end

Instance Method Details

#fileObject



34
35
36
# File 'lib/para/exporter/base.rb', line 34

def file
  @file ||= GlobalID::Locator.locate(store(:file_gid))
end

#file_nameObject



38
39
40
# File 'lib/para/exporter/base.rb', line 38

def file_name
  @file_name ||= [name, extension].join
end

#perform(model_name: nil, **options) ⇒ Object



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/para/exporter/base.rb', line 6

def perform(model_name: nil, **options)
  @model = model_name && model_name.constantize
  @options = options
  @name = model.try(:model_name).try(:route_key).try(:parameterize)

  # Render file and store it in a Library::File object, allowing us
  # to retrieve that file easily from the job and subsequent requests
  #
  file = Para::Library::File.new

  if file.respond_to?(:attachment?)
    file.attachment = render
  else
    file.attachment.attach(
      io: render,
      filename: file_name,
      content_type: mime_type
    )
  end

  file.save!

  store(:file_gid, file.to_global_id)

  # Ensure that `.perform_now` returns the exporter
  self
end