Sha256: 0b1cec327fa60e34d4b9c473655365240a6326ac7fd086fd087360b65652c073
Contents?: true
Size: 1.53 KB
Versions: 7
Compression:
Stored size: 1.53 KB
Contents
# Serves files stored with the disk service in the same way that the cloud services do. # This means using expiring, signed URLs that are meant for immediate access, not permanent linking. # Always go through the BlobsController, or your own authenticated controller, rather than directly # to the service url. class ActiveStorage::DiskController < ActionController::Base def show if key = decode_verified_key send_data disk_service.download(key), filename: params[:filename], disposition: disposition_param, content_type: params[:content_type] else head :not_found end end def update if token = decode_verified_token if acceptable_content?(token) disk_service.upload token[:key], request.body, checksum: token[:checksum] head :no_content else head :unprocessable_entity end else head :not_found end rescue ActiveStorage::IntegrityError head :unprocessable_entity end private def disk_service ActiveStorage::Blob.service end def decode_verified_key ActiveStorage.verifier.verified(params[:encoded_key], purpose: :blob_key) end def disposition_param params[:disposition].in?(%w(inline attachment)) ? params[:disposition] : 'inline' end def decode_verified_token ActiveStorage.verifier.verified(params[:encoded_token], purpose: :blob_token) end def acceptable_content?(token) token[:content_type] == request.content_type && token[:content_length] == request.content_length end end
Version data entries
7 entries across 7 versions & 1 rubygems