aboutsummaryrefslogblamecommitdiffstats
path: root/activestorage/app/controllers/active_storage/disk_controller.rb
blob: 63918eb6f4aad406cccbf965e7c1d1e5664488a9 (plain) (tree)
1
2
3
4
5
6
7
8
9

                             



                                                                                                    
                                                                   

                                
                         
 
          
                                





                                                                                                     

                     
       

                         

     



                                                                                 
                        







                                      

                         

     
         



                                 
 
                           
                                                                               

       
 



                                                                                   
                                  
                                                                                                      
       
   
# frozen_string_literal: true

# 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 < ActiveStorage::BaseController
  include ActionController::Live

  skip_forgery_protection

  def show
    if key = decode_verified_key
      response.headers["Content-Type"] = params[:content_type] || DEFAULT_SEND_FILE_TYPE
      response.headers["Content-Disposition"] = params[:disposition] || DEFAULT_SEND_FILE_DISPOSITION

      disk_service.download key do |chunk|
        response.stream.write chunk
      end
    else
      head :not_found
    end
  ensure
    response.stream.close
  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
  ensure
    response.stream.close
  end

  private
    def disk_service
      ActiveStorage::Blob.service
    end


    def decode_verified_key
      ActiveStorage.verifier.verified(params[:encoded_key], purpose: :blob_key)
    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