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
# File 'lib/backgrounder/workers/process_asset.rb', line 12

def perform(*args)
  set_args(*args) if args.present?
  record = constantized_resource.find id

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