Class: ActiveStorage::DiskController

Inherits:
ActionController::Base
  • Object
show all
Defined in:
app/controllers/active_storage/disk_controller.rb

Overview

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.

Instance Method Summary collapse

Instance Method Details

#showObject



6
7
8
9
10
11
12
13
# File 'app/controllers/active_storage/disk_controller.rb', line 6

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

#updateObject



15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'app/controllers/active_storage/disk_controller.rb', line 15

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