Class: ActiveStorage::VariantsController

Inherits:
ActionController::Base
  • Object
show all
Defined in:
app/controllers/active_storage/variants_controller.rb

Overview

Take a signed permanent reference for a variant and turn it into an expiring service URL for download. Note: These URLs are publicly accessible. If you need to enforce access protection beyond the security-through-obscurity factor of the signed blob and variation reference, you’ll need to implement your own authenticated redirection controller.

Instance Method Summary collapse

Instance Method Details

#showObject



8
9
10
11
12
13
14
# File 'app/controllers/active_storage/variants_controller.rb', line 8

def show
  if blob = find_signed_blob
    redirect_to ActiveStorage::Variant.new(blob, decoded_variation).processed.service_url(disposition: disposition_param)
  else
    head :not_found
  end
end