2017-07-22 10:47:24 -04:00
|
|
|
require "active_storage/log_subscriber"
|
2017-07-09 11:04:28 -04:00
|
|
|
|
2017-07-06 06:22:44 -04:00
|
|
|
# Abstract class serving as an interface for concrete services.
|
2017-07-07 08:20:38 -04:00
|
|
|
#
|
|
|
|
# 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 <tt>config/storage_services.yml</tt> 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(
|
|
|
|
# :Disk,
|
|
|
|
# root: Pathname("/foo/bar/storage")
|
|
|
|
# )
|
2017-07-06 06:22:44 -04:00
|
|
|
class ActiveStorage::Service
|
2017-07-06 10:01:11 -04:00
|
|
|
class ActiveStorage::IntegrityError < StandardError; end
|
|
|
|
|
2017-07-09 07:23:21 -04:00
|
|
|
extend ActiveSupport::Autoload
|
|
|
|
autoload :Configurator
|
|
|
|
|
2017-07-09 11:04:28 -04:00
|
|
|
class_attribute :logger
|
|
|
|
|
2017-07-09 08:42:46 -04:00
|
|
|
class << self
|
|
|
|
# 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.
|
|
|
|
def configure(service_name, configurations)
|
|
|
|
Configurator.build(service_name, configurations)
|
|
|
|
end
|
2017-07-08 19:55:50 -04:00
|
|
|
|
2017-07-09 08:42:46 -04:00
|
|
|
# Override in subclasses that stitch together multiple services and hence
|
|
|
|
# need to build additional services using the configurator.
|
|
|
|
#
|
|
|
|
# Passes the configurator and all of the service's config as keyword args.
|
|
|
|
#
|
|
|
|
# See MirrorService for an example.
|
|
|
|
def build(configurator:, service: nil, **service_config) #:nodoc:
|
|
|
|
new(**service_config)
|
|
|
|
end
|
2017-07-04 10:44:50 -04:00
|
|
|
end
|
|
|
|
|
2017-07-24 16:36:30 -04:00
|
|
|
# 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`.
|
2017-07-06 10:01:11 -04:00
|
|
|
def upload(key, io, checksum: nil)
|
2017-07-01 06:10:11 -04:00
|
|
|
raise NotImplementedError
|
2017-06-30 13:12:58 -04:00
|
|
|
end
|
|
|
|
|
2017-07-24 16:36:30 -04:00
|
|
|
# Return the content of the file at the `key`.
|
2017-06-30 13:12:58 -04:00
|
|
|
def download(key)
|
2017-07-01 06:10:11 -04:00
|
|
|
raise NotImplementedError
|
2017-06-30 13:12:58 -04:00
|
|
|
end
|
|
|
|
|
2017-07-24 16:36:30 -04:00
|
|
|
# Delete the file at the `key`.
|
2017-06-30 13:12:58 -04:00
|
|
|
def delete(key)
|
2017-07-01 06:10:11 -04:00
|
|
|
raise NotImplementedError
|
2017-06-30 13:12:58 -04:00
|
|
|
end
|
|
|
|
|
2017-07-24 16:36:30 -04:00
|
|
|
# Return true if a file exists at the `key`.
|
2017-07-03 15:08:36 -04:00
|
|
|
def exist?(key)
|
2017-07-01 06:10:11 -04:00
|
|
|
raise NotImplementedError
|
2017-06-30 13:12:58 -04:00
|
|
|
end
|
|
|
|
|
2017-07-24 16:36:30 -04:00
|
|
|
# Returns a signed, temporary URL for the file at the `key`. The URL will be valid for the amount
|
|
|
|
# of seconds specified in `expires_in`. You most also provide the `disposition` (`:inline` or `:attachment`),
|
|
|
|
# `filename`, and `content_type` that you wish the file to be served with on request.
|
2017-07-23 18:50:31 -04:00
|
|
|
def url(key, expires_in:, disposition:, filename:, content_type:)
|
2017-07-01 06:10:11 -04:00
|
|
|
raise NotImplementedError
|
2017-06-30 13:12:58 -04:00
|
|
|
end
|
2017-07-09 11:04:28 -04:00
|
|
|
|
2017-07-24 16:36:30 -04:00
|
|
|
# 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 most 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.
|
2017-07-24 12:41:34 -04:00
|
|
|
def url_for_direct_upload(key, expires_in:, content_type:, content_length:, checksum:)
|
2017-07-09 12:03:13 -04:00
|
|
|
raise NotImplementedError
|
|
|
|
end
|
|
|
|
|
2017-07-09 11:04:28 -04:00
|
|
|
private
|
|
|
|
def instrument(operation, key, payload = {}, &block)
|
|
|
|
ActiveSupport::Notifications.instrument(
|
2017-07-13 18:09:56 -04:00
|
|
|
"service_#{operation}.active_storage",
|
2017-07-09 11:04:28 -04:00
|
|
|
payload.merge(key: key, service: service_name), &block)
|
|
|
|
end
|
|
|
|
|
|
|
|
def service_name
|
|
|
|
# ActiveStorage::Service::DiskService => Disk
|
|
|
|
self.class.name.split("::").third.remove("Service")
|
|
|
|
end
|
2017-06-30 18:14:22 -04:00
|
|
|
end
|