Wraps a local disk path as an Active Storage service. See ActiveStorage::Service
for the generic API documentation that applies to all services.
Methods
- D
- E
- H
- N
- U
Attributes
[R] | root |
Class Public methods
new(root:)
Link
Instance Public methods
delete(key)
Link
delete_prefixed(prefix)
Link
download(key, &block)
Link
# File activestorage/lib/active_storage/service/disk_service.rb, line 25 def download(key, &block) if block_given? instrument :streaming_download, key: key do stream key, &block end else instrument :download, key: key do File.binread path_for(key) rescue Errno::ENOENT raise ActiveStorage::FileNotFoundError end end end
download_chunk(key, range)
Link
# File activestorage/lib/active_storage/service/disk_service.rb, line 39 def download_chunk(key, range) instrument :download_chunk, key: key, range: range do File.open(path_for(key), "rb") do |file| file.seek range.begin file.read range.size end rescue Errno::ENOENT raise ActiveStorage::FileNotFoundError end end
exist?(key)
Link
headers_for_direct_upload(key, content_type:, **)
Link
upload(key, io, checksum: nil, **)
Link
url(key, expires_in:, filename:, disposition:, content_type:)
Link
# File activestorage/lib/active_storage/service/disk_service.rb, line 74 def url(key, expires_in:, filename:, disposition:, content_type:) instrument :url, key: key do |payload| content_disposition = content_disposition_with(type: disposition, filename: filename) verified_key_with_expiration = ActiveStorage.verifier.generate( { key: key, disposition: content_disposition, content_type: content_type }, expires_in: expires_in, purpose: :blob_key ) current_uri = URI.parse(current_host) generated_url = url_helpers.rails_disk_service_url(verified_key_with_expiration, protocol: current_uri.scheme, host: current_uri.host, port: current_uri.port, disposition: content_disposition, content_type: content_type, filename: filename ) payload[:url] = generated_url generated_url end end
url_for_direct_upload(key, expires_in:, content_type:, content_length:, checksum:)
Link
# File activestorage/lib/active_storage/service/disk_service.rb, line 103 def url_for_direct_upload(key, expires_in:, content_type:, content_length:, checksum:) instrument :url, key: key do |payload| verified_token_with_expiration = ActiveStorage.verifier.generate( { key: key, content_type: content_type, content_length: content_length, checksum: checksum }, expires_in: expires_in, purpose: :blob_token ) generated_url = url_helpers.update_rails_disk_service_url(verified_token_with_expiration, host: current_host) payload[:url] = generated_url generated_url end end