mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
46da4ee7da
We don't need to lookup multiple different classes, so no need to use a globalid.
24 lines
621 B
Ruby
24 lines
621 B
Ruby
require "active_storage/variant"
|
|
|
|
class ActiveStorage::VariantsController < ActionController::Base
|
|
def show
|
|
if blob = find_signed_blob
|
|
redirect_to ActiveStorage::Variant.new(blob, decoded_variation).processed.url(disposition: disposition_param)
|
|
else
|
|
head :not_found
|
|
end
|
|
end
|
|
|
|
private
|
|
def find_signed_blob
|
|
ActiveStorage::Blob.find_signed(params[:signed_blob_id])
|
|
end
|
|
|
|
def decoded_variation
|
|
ActiveStorage::Variation.decode(params[:variation_key])
|
|
end
|
|
|
|
def disposition_param
|
|
params[:disposition].presence_in(%w( inline attachment )) || "inline"
|
|
end
|
|
end
|