Active Storage Service¶ ↑
Abstract class serving as an interface for concrete services.
The available services are:
-
Disk, to manage attachments saved directly on the hard drive. -
GCS, to manage attachments through Google Cloud Storage. -
S3, to manage attachments through Amazon S3. -
Mirror, to be able to use several services to manage attachments.
Inside a Rails application, you can set-up your services through the generated config/storage.yml file and reference one of the aforementioned constant under the service key. For example:
local:
service: Disk
root: <%= Rails.root.join("storage") %>
You can checkout the service’s constructor to know which keys are required.
Then, in your application’s configuration, you can specify the service to use like this:
config.active_storage.service = :local
If you are using Active Storage outside of a Ruby on Rails application, you can configure the service to use like this:
ActiveStorage::Blob.service = ActiveStorage::Service.configure( :local, { local: {service: "Disk", root: Pathname("/tmp/foo/storage") } } )
- CLASS ActiveStorage::Service::DiskService
- CLASS ActiveStorage::Service::GCSService
- CLASS ActiveStorage::Service::MirrorService
- CLASS ActiveStorage::Service::S3Service
- C
- D
- E
- H
- O
- P
- U
Attributes
| [RW] | name |
Class Public methods
configure(service_name, configurations) Link
Configure an Active Storage service by name from a set of configurations, typically loaded from a YAML file. The Active Storage engine uses this to set the global Active Storage service when the app boots.
Instance Public methods
checksum_implementation(**) Link
compose(source_keys, destination_key, filename: nil, content_type: nil, disposition: nil, custom_metadata: {}) Link
Concatenate multiple files into a single “composed” file.
compute_checksum(io, **options) Link
# File activestorage/lib/active_storage/service.rb, line 155 def compute_checksum(io, **options) raise ArgumentError, "io must be rewindable" unless io.respond_to?(:rewind) # Defer to Digest class's file implementation if File or base64digest if no chunk_size return checksum_implementation(**options).file(io).base64digest if io.is_a?(File) return checksum_implementation(**options).base64digest(io.read) if default_chunk_size.to_i == 0 checksum_implementation(**options).new.tap do |checksum| read_buffer = "".b while io.read(default_chunk_size, read_buffer) checksum << read_buffer end io.rewind end.base64digest end
delete(key) Link
Delete the file at the key.
delete_prefixed(prefix) Link
Delete files at keys starting with the prefix.
download(key) Link
Return the content of the file at the key.
download_chunk(key, range) Link
Return the partial content in the byte range of the file at the key.
exist?(key) Link
Return true if a file exists at the key.
headers_for_direct_upload(key, filename:, content_type:, content_length:, checksum:, custom_metadata: {}) Link
Returns a Hash of headers for url_for_direct_upload requests.
open(*args, **options, &block) Link
public?() Link
update_metadata(key, **metadata) Link
Update metadata for the file identified by key in the service.
upload(key, io, checksum: nil, **options) Link
Upload the io to the key specified. If a checksum is provided, the service will ensure a match when the upload has completed or raise an ActiveStorage::IntegrityError.
url(key, **options) Link
Returns the URL for the file at the key. This returns a permanent URL for public files, and returns a short-lived URL for private files. For private files you can provide the disposition (:inline or :attachment), filename, and content_type that you wish the file to be served with on request. Additionally, you can also provide the amount of seconds the URL will be valid for, specified in expires_in.
url_for_direct_upload(key, expires_in:, content_type:, content_length:, checksum:, custom_metadata: {}) Link
Returns a signed, temporary URL that a direct upload file can be PUT to on the key. The URL will be valid for the amount of seconds specified in expires_in. You must also provide the content_type, content_length, and checksum of the file that will be uploaded. All these attributes will be validated by the service upon upload.