aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/active_storage/variation.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2017-07-24 12:05:15 -0500
committerDavid Heinemeier Hansson <david@loudthinking.com>2017-07-24 12:05:15 -0500
commit48d0427ff8dc6d338e2a05103a234872c32e718e (patch)
treef68a9e082eab482538e350855746549bd38469f4 /app/models/active_storage/variation.rb
parentd0e90b4a9dc1accd4f1044fde0dd9a347cd0afcf (diff)
downloadrails-48d0427ff8dc6d338e2a05103a234872c32e718e.tar.gz
rails-48d0427ff8dc6d338e2a05103a234872c32e718e.tar.bz2
rails-48d0427ff8dc6d338e2a05103a234872c32e718e.zip
Basic documentation for all the models
Diffstat (limited to 'app/models/active_storage/variation.rb')
-rw-r--r--app/models/active_storage/variation.rb16
1 files changed, 15 insertions, 1 deletions
diff --git a/app/models/active_storage/variation.rb b/app/models/active_storage/variation.rb
index 45274006a2..34b854fd9f 100644
--- a/app/models/active_storage/variation.rb
+++ b/app/models/active_storage/variation.rb
@@ -1,14 +1,25 @@
require "active_support/core_ext/object/inclusion"
-# A set of transformations that can be applied to a blob to create a variant.
+# 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: "100x100", monochrome: true, trim: true, rotate: "-90")
+#
+# A list of all possible transformations is available at https://www.imagemagick.org/script/mogrify.php.
class ActiveStorage::Variation
attr_reader :transformations
class << self
+ # Returns a variation instance with the transformations that were encoded by `#encode`.
def decode(key)
new ActiveStorage.verifier.verify(key, purpose: :variation)
end
+ # 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`).
def encode(transformations)
ActiveStorage.verifier.generate(transformations, purpose: :variation)
end
@@ -18,6 +29,8 @@ class ActiveStorage::Variation
@transformations = transformations
end
+ # Accepts an open MiniMagick image instance, like what's return by `MiniMagick::Image.read(io)`,
+ # and performs the `transformations` against it. The transformed image instance is then returned.
def transform(image)
transformations.each do |(method, argument)|
if eligible_argument?(argument)
@@ -28,6 +41,7 @@ class ActiveStorage::Variation
end
end
+ # Returns a signed key for all the `transformations` that this variation was instantiated with.
def key
self.class.encode(transformations)
end