Class: ActiveStorage::Variation
- Inherits:
- 
      Object
      
        - Object
- ActiveStorage::Variation
 
- Defined in:
- app/models/active_storage/variation.rb
Overview
A set of transformations that can be applied to a blob to create a variant. This class is exposed via the ActiveStorage::Blob#variant method and should rarely be used directly.
In case you do need to use this directly, it's instantiated using a hash of transformations where the key is the command and the value is the arguments. Example:
ActiveStorage::Variation.new(resize_to_limit: [100, 100], monochrome: true, trim: true, rotate: "-90")
The options map directly to ImageProcessing commands.
Instance Attribute Summary collapse
- 
  
    
      #transformations  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute transformations. 
Class Method Summary collapse
- 
  
    
      .decode(key)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Returns a Variation instance with the transformations that were encoded by encode.
- 
  
    
      .encode(transformations)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Returns a signed key for the transformations, which can be used to refer to a specific variation in a URL or combined key (likeActiveStorage::Variant#key).
- 
  
    
      .wrap(variator)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Returns a Variation instance based on the given variator. 
Instance Method Summary collapse
- #content_type ⇒ Object
- #default_to(defaults) ⇒ Object
- #digest ⇒ Object
- #format ⇒ Object
- 
  
    
      #initialize(transformations)  ⇒ Variation 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Variation. 
- 
  
    
      #key  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Returns a signed key for all the transformationsthat this variation was instantiated with.
- 
  
    
      #transform(file, &block)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Accepts a File object, performs the transformationsagainst it, and saves the transformed image into a temporary file.
Constructor Details
#initialize(transformations) ⇒ Variation
Returns a new instance of Variation.
| 44 45 46 | # File 'app/models/active_storage/variation.rb', line 44 def initialize(transformations) @transformations = transformations.deep_symbolize_keys end | 
Instance Attribute Details
#transformations ⇒ Object (readonly)
Returns the value of attribute transformations.
| 15 16 17 | # File 'app/models/active_storage/variation.rb', line 15 def transformations @transformations end | 
Class Method Details
.decode(key) ⇒ Object
Returns a Variation instance with the transformations that were encoded by encode.
| 33 34 35 | # File 'app/models/active_storage/variation.rb', line 33 def decode(key) new ActiveStorage.verifier.verify(key, purpose: :variation) end | 
.encode(transformations) ⇒ Object
Returns a signed key for the transformations, which can be used to refer to a specific variation in a URL or combined key (like ActiveStorage::Variant#key).
| 39 40 41 | # File 'app/models/active_storage/variation.rb', line 39 def encode(transformations) ActiveStorage.verifier.generate(transformations, purpose: :variation) end | 
.wrap(variator) ⇒ Object
Returns a Variation instance based on the given variator. If the variator is a Variation, it is returned unmodified. If it is a String, it is passed to ActiveStorage::Variation.decode. Otherwise, it is assumed to be a transformations Hash and is passed directly to the constructor.
| 21 22 23 24 25 26 27 28 29 30 | # File 'app/models/active_storage/variation.rb', line 21 def wrap(variator) case variator when self variator when String decode variator else new variator end end | 
Instance Method Details
#content_type ⇒ Object
| 68 69 70 | # File 'app/models/active_storage/variation.rb', line 68 def content_type MiniMime.lookup_by_extension(format.to_s).content_type end | 
#default_to(defaults) ⇒ Object
| 48 49 50 | # File 'app/models/active_storage/variation.rb', line 48 def default_to(defaults) self.class.new transformations.reverse_merge(defaults) end | 
#digest ⇒ Object
| 77 78 79 | # File 'app/models/active_storage/variation.rb', line 77 def digest Digest::SHA1.base64digest Marshal.dump(transformations) end | 
#format ⇒ Object
| 60 61 62 63 64 65 66 | # File 'app/models/active_storage/variation.rb', line 60 def format transformations.fetch(:format, :png).tap do |format| if MiniMime.lookup_by_extension(format.to_s).nil? raise ArgumentError, "Invalid variant format (#{format.inspect})" end end end | 
#key ⇒ Object
Returns a signed key for all the transformations that this variation was instantiated with.
| 73 74 75 | # File 'app/models/active_storage/variation.rb', line 73 def key self.class.encode(transformations) end | 
#transform(file, &block) ⇒ Object
Accepts a File object, performs the transformations against it, and saves the transformed image into a temporary file.
| 54 55 56 57 58 | # File 'app/models/active_storage/variation.rb', line 54 def transform(file, &block) ActiveSupport::Notifications.instrument("transform.active_storage") do transformer.transform(file, format: format, &block) end end |