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-06 06:22:44 -04:00
|
|
|
def self.configure(service, **options)
|
2017-07-04 10:44:50 -04:00
|
|
|
begin
|
2017-07-06 06:22:44 -04:00
|
|
|
require "active_storage/service/#{service.to_s.downcase}_service"
|
|
|
|
ActiveStorage::Service.const_get(:"#{service}Service").new(**options)
|
2017-07-04 12:52:11 -04:00
|
|
|
rescue LoadError => e
|
2017-07-06 06:22:44 -04:00
|
|
|
puts "Couldn't configure service: #{service} (#{e.message})"
|
2017-07-04 10:44:50 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
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
|
|
|
|
|
|
|
|
def download(key)
|
2017-07-01 06:10:11 -04:00
|
|
|
raise NotImplementedError
|
2017-06-30 13:12:58 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def delete(key)
|
2017-07-01 06:10:11 -04:00
|
|
|
raise NotImplementedError
|
2017-06-30 13:12:58 -04:00
|
|
|
end
|
|
|
|
|
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-04 11:34:37 -04:00
|
|
|
def url(key, expires_in:, disposition:, filename:)
|
2017-07-01 06:10:11 -04:00
|
|
|
raise NotImplementedError
|
2017-06-30 13:12:58 -04:00
|
|
|
end
|
2017-06-30 18:14:22 -04:00
|
|
|
end
|