Sha256: b2ced95766a972b2aa7315f8790d774b2f59a38a66546641782955a68a836b7c

Contents?: true

Size: 704 Bytes

Versions: 9

Compression:

Stored size: 704 Bytes

Contents

# frozen_string_literal: true

# Take a signed permanent reference for a blob representation 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.
class ActiveStorage::Representations::RedirectController < ActiveStorage::BaseController
  include ActiveStorage::SetBlob

  def show
    expires_in ActiveStorage.service_urls_expire_in
    redirect_to @blob.representation(params[:variation_key]).processed.url(disposition: params[:disposition])
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
activestorage-6.1.3.2 app/controllers/active_storage/representations/redirect_controller.rb
activestorage-6.1.3.1 app/controllers/active_storage/representations/redirect_controller.rb
activestorage-6.1.3 app/controllers/active_storage/representations/redirect_controller.rb
activestorage-6.1.2.1 app/controllers/active_storage/representations/redirect_controller.rb
activestorage-6.1.2 app/controllers/active_storage/representations/redirect_controller.rb
activestorage-6.1.1 app/controllers/active_storage/representations/redirect_controller.rb
activestorage-6.1.0 app/controllers/active_storage/representations/redirect_controller.rb
activestorage-6.1.0.rc2 app/controllers/active_storage/representations/redirect_controller.rb
activestorage-6.1.0.rc1 app/controllers/active_storage/representations/redirect_controller.rb