Wraps a local disk path as an Active Storage service. See ActiveStorage::Service
for the generic API documentation that applies to all services.
Methods
- C
- D
- E
- H
- N
- U
Attributes
[RW] | root |
Class Public methods
new(root:, public: false, **options) Link
Instance Public methods
compose(source_keys, destination_key, **) Link
# File activestorage/lib/active_storage/service/disk_service.rb, line 103 def compose(source_keys, destination_key, **) File.open(make_path_for(destination_key), "w") do |destination_file| source_keys.each do |source_key| File.open(path_for(source_key), "rb") do |source_file| IO.copy_stream(source_file, destination_file) end end end end
delete(key) Link
delete_prefixed(prefix) Link
download(key, &block) Link
# File activestorage/lib/active_storage/service/disk_service.rb, line 26 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 40 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_for_direct_upload(key, expires_in:, content_type:, content_length:, checksum:, custom_metadata: {}) Link
# File activestorage/lib/active_storage/service/disk_service.rb, line 75 def url_for_direct_upload(key, expires_in:, content_type:, content_length:, checksum:, custom_metadata: {}) 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, service_name: name }, expires_in: expires_in, purpose: :blob_token ) url_helpers.update_rails_disk_service_url(verified_token_with_expiration, url_options).tap do |generated_url| payload[:url] = generated_url end end end