1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/lib/active_vault/disk_controller.rb

29 lines
763 B
Ruby
Raw Normal View History

require "action_controller"
require "active_vault/blob"
require "active_vault/verified_key_with_expiration"
require "active_support/core_ext/object/inclusion"
class ActiveVault::DiskController < ActionController::Base
2017-07-03 14:14:28 -04:00
def show
2017-07-03 15:06:09 -04:00
if key = decode_verified_key
blob = ActiveVault::Blob.find_by!(key: key)
if stale?(etag: blob.checksum)
send_data blob.download, filename: blob.filename, type: blob.content_type, disposition: disposition_param
end
2017-07-03 15:06:09 -04:00
else
head :not_found
2017-07-03 14:14:28 -04:00
end
end
private
2017-07-03 15:06:09 -04:00
def decode_verified_key
ActiveVault::VerifiedKeyWithExpiration.decode(params[:encoded_key])
2017-07-03 14:14:28 -04:00
end
def disposition_param
params[:disposition].presence_in(%w( inline attachment )) || 'inline'
end
end