Class: CarrierWave::Workers::ProcessAsset

Inherits:
Struct
  • Object
show all
Includes:
Sidekiq::Worker
Defined in:
lib/backgrounder/workers/process_asset.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#columnObject

Returns the value of attribute column

Returns:

  • (Object)

    the current value of column



5
6
7
# File 'lib/backgrounder/workers/process_asset.rb', line 5

def column
  @column
end

#idObject

Returns the value of attribute id

Returns:

  • (Object)

    the current value of id



5
6
7
# File 'lib/backgrounder/workers/process_asset.rb', line 5

def id
  @id
end

#klassObject

Returns the value of attribute klass

Returns:

  • (Object)

    the current value of klass



5
6
7
# File 'lib/backgrounder/workers/process_asset.rb', line 5

def klass
  @klass
end

Class Method Details

.perform(*args) ⇒ Object



8
9
10
# File 'lib/backgrounder/workers/process_asset.rb', line 8

def self.perform(*args)
  new(*args).perform
end

Instance Method Details

#perform(*args) ⇒ Object



12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/backgrounder/workers/process_asset.rb', line 12

def perform(*args)
  set_args(*args) unless args.empty?
  resource = klass.is_a?(String) ? klass.constantize : klass
  record = resource.find id

  if record
    record.send(:"process_#{column}_upload=", true)
    if record.send(:"#{column}").recreate_versions! && record.respond_to?(:"#{column}_processing")
      record.send :"#{column}_processing=", nil
      record.save!
    end
  end
end

#set_args(klass, id, column) ⇒ Object



26
27
28
# File 'lib/backgrounder/workers/process_asset.rb', line 26

def set_args(klass, id, column)
  self.klass, self.id, self.column = klass, id, column
end