Sha256: 31bd5a0f96eb1f64e9415f896da4f1a553d3f792bbdc634b87bed03d6485f785

Contents?: true

Size: 1.89 KB

Versions: 24

Compression:

Stored size: 1.89 KB

Contents

# 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
  skip_forgery_protection

  def show
    if key = decode_verified_key
      serve_file disk_service.path_for(key[:key]), content_type: key[:content_type], disposition: key[:disposition]
    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
    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 serve_file(path, content_type:, disposition:)
      Rack::File.new(nil).serving(request, path).tap do |(status, headers, body)|
        self.status = status
        self.response_body = body

        headers.each do |name, value|
          response.headers[name] = value
        end

        response.headers["Content-Type"] = content_type || DEFAULT_SEND_FILE_TYPE
        response.headers["Content-Disposition"] = disposition || DEFAULT_SEND_FILE_DISPOSITION
      end
    end


    def decode_verified_token
      ActiveStorage.verifier.verified(params[:encoded_token], purpose: :blob_token)
    end

    def acceptable_content?(token)
      token[:content_type] == request.content_mime_type && token[:content_length] == request.content_length
    end
end

Version data entries

24 entries across 24 versions & 2 rubygems

Version Path
activestorage-5.2.8.1 app/controllers/active_storage/disk_controller.rb
activestorage-5.2.8 app/controllers/active_storage/disk_controller.rb
activestorage-5.2.7.1 app/controllers/active_storage/disk_controller.rb
activestorage-5.2.7 app/controllers/active_storage/disk_controller.rb
activestorage-5.2.6.3 app/controllers/active_storage/disk_controller.rb
activestorage-5.2.6.2 app/controllers/active_storage/disk_controller.rb
activestorage-5.2.6.1 app/controllers/active_storage/disk_controller.rb
activestorage-5.2.6 app/controllers/active_storage/disk_controller.rb
activestorage-5.2.4.6 app/controllers/active_storage/disk_controller.rb
activestorage-5.2.5 app/controllers/active_storage/disk_controller.rb
activestorage-5.2.4.5 app/controllers/active_storage/disk_controller.rb
activestorage-5.2.4.4 app/controllers/active_storage/disk_controller.rb
activestorage-5.2.4.3 app/controllers/active_storage/disk_controller.rb
activestorage-5.2.4.2 app/controllers/active_storage/disk_controller.rb
activestorage-5.2.4.1 app/controllers/active_storage/disk_controller.rb
activestorage-5.2.4 app/controllers/active_storage/disk_controller.rb
activestorage-5.2.4.rc1 app/controllers/active_storage/disk_controller.rb
spiral_form-0.1.1 vendor/bundle/gems/activestorage-5.2.3/app/controllers/active_storage/disk_controller.rb
spiral_form-0.1.0 vendor/bundle/gems/activestorage-5.2.3/app/controllers/active_storage/disk_controller.rb
activestorage-5.2.3 app/controllers/active_storage/disk_controller.rb