Class: ActiveStorage::VariantWithRecord

Inherits:
Object
  • Object
show all
Defined in:
activestorage/app/models/active_storage/variant_with_record.rb

Overview

Active Storage Variant With Record

Like an ActiveStorage::Variant, but keeps detail about the variant in the database as an ActiveStorage::VariantRecord. This is only used if ActiveStorage.track_variants is enabled.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(blob, variation) ⇒ VariantWithRecord

Returns a new instance of VariantWithRecord.



12
13
14
# File 'activestorage/app/models/active_storage/variant_with_record.rb', line 12

def initialize(blob, variation)
  @blob, @variation = blob, ActiveStorage::Variation.wrap(variation)
end

Instance Attribute Details

#blobObject (readonly)

Returns the value of attribute blob.



8
9
10
# File 'activestorage/app/models/active_storage/variant_with_record.rb', line 8

def blob
  @blob
end

#variationObject (readonly)

Returns the value of attribute variation.



8
9
10
# File 'activestorage/app/models/active_storage/variant_with_record.rb', line 8

def variation
  @variation
end

Instance Method Details

#destroyObject

Destroys record and deletes file from service.



30
31
32
# File 'activestorage/app/models/active_storage/variant_with_record.rb', line 30

def destroy
  record&.destroy
end

#filenameObject



25
26
27
# File 'activestorage/app/models/active_storage/variant_with_record.rb', line 25

def filename
  ActiveStorage::Filename.new "#{blob.filename.base}.#{variation.format.downcase}"
end

#imageObject



21
22
23
# File 'activestorage/app/models/active_storage/variant_with_record.rb', line 21

def image
  record&.image
end

#processedObject



16
17
18
19
# File 'activestorage/app/models/active_storage/variant_with_record.rb', line 16

def processed
  process unless processed?
  self
end