2017-07-03 17:54:57 -04:00
|
|
|
require "google/cloud/storage"
|
2017-07-05 11:24:32 -04:00
|
|
|
require "active_support/core_ext/object/to_query"
|
2017-07-03 17:54:57 -04:00
|
|
|
|
2017-07-24 16:36:30 -04:00
|
|
|
# Wraps the Google Cloud Storage as a Active Storage service. See `ActiveStorage::Service` for the generic API
|
|
|
|
# documentation that applies to all services.
|
2017-07-06 06:22:44 -04:00
|
|
|
class ActiveStorage::Service::GCSService < ActiveStorage::Service
|
2017-07-03 17:54:57 -04:00
|
|
|
attr_reader :client, :bucket
|
|
|
|
|
|
|
|
def initialize(project:, keyfile:, bucket:)
|
|
|
|
@client = Google::Cloud::Storage.new(project: project, keyfile: keyfile)
|
|
|
|
@bucket = @client.bucket(bucket)
|
|
|
|
end
|
|
|
|
|
2017-07-06 10:01:11 -04:00
|
|
|
def upload(key, io, checksum: nil)
|
2017-07-09 11:04:28 -04:00
|
|
|
instrument :upload, key, checksum: checksum do
|
|
|
|
begin
|
|
|
|
bucket.create_file(io, key, md5: checksum)
|
|
|
|
rescue Google::Cloud::InvalidArgumentError
|
|
|
|
raise ActiveStorage::IntegrityError
|
|
|
|
end
|
|
|
|
end
|
2017-07-03 17:54:57 -04:00
|
|
|
end
|
|
|
|
|
2017-07-06 09:35:58 -04:00
|
|
|
# FIXME: Add streaming when given a block
|
2017-07-03 17:54:57 -04:00
|
|
|
def download(key)
|
2017-07-09 11:04:28 -04:00
|
|
|
instrument :download, key do
|
|
|
|
io = file_for(key).download
|
|
|
|
io.rewind
|
|
|
|
io.read
|
|
|
|
end
|
2017-07-03 17:54:57 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def delete(key)
|
2017-07-09 11:04:28 -04:00
|
|
|
instrument :delete, key do
|
|
|
|
file_for(key)&.delete
|
|
|
|
end
|
2017-07-03 17:54:57 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def exist?(key)
|
2017-07-09 11:04:28 -04:00
|
|
|
instrument :exist, key do |payload|
|
2017-07-14 14:46:02 -04:00
|
|
|
answer = file_for(key).present?
|
|
|
|
payload[:exist] = answer
|
|
|
|
answer
|
2017-07-09 11:04:28 -04:00
|
|
|
end
|
2017-07-03 17:54:57 -04:00
|
|
|
end
|
|
|
|
|
2017-07-23 18:50:31 -04:00
|
|
|
def url(key, expires_in:, disposition:, filename:, content_type:)
|
2017-07-09 11:04:28 -04:00
|
|
|
instrument :url, key do |payload|
|
2017-07-24 12:41:34 -04:00
|
|
|
generated_url = file_for(key).signed_url expires: expires_in, query: {
|
2017-07-23 18:50:31 -04:00
|
|
|
"response-content-disposition" => "#{disposition}; filename=\"#{filename}\"",
|
|
|
|
"response-content-type" => content_type
|
|
|
|
}
|
2017-07-14 14:46:02 -04:00
|
|
|
|
|
|
|
payload[:url] = generated_url
|
|
|
|
|
|
|
|
generated_url
|
2017-07-09 11:04:28 -04:00
|
|
|
end
|
2017-07-04 14:01:03 -04:00
|
|
|
end
|
|
|
|
|
2017-07-24 12:41:34 -04:00
|
|
|
def url_for_direct_upload(key, expires_in:, content_type:, content_length:, checksum:)
|
2017-07-17 09:17:09 -04:00
|
|
|
instrument :url, key do |payload|
|
|
|
|
generated_url = bucket.signed_url key, method: "PUT", expires: expires_in,
|
2017-07-24 12:41:34 -04:00
|
|
|
content_type: content_type, content_md5: checksum
|
2017-07-17 09:17:09 -04:00
|
|
|
|
|
|
|
payload[:url] = generated_url
|
|
|
|
|
|
|
|
generated_url
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-07-30 11:00:55 -04:00
|
|
|
def headers_for_direct_upload(key, content_type:, checksum:, **)
|
|
|
|
{ "Content-Type" => content_type, "Content-MD5" => checksum }
|
|
|
|
end
|
|
|
|
|
2017-07-03 17:54:57 -04:00
|
|
|
private
|
|
|
|
def file_for(key)
|
|
|
|
bucket.file(key)
|
|
|
|
end
|
|
|
|
end
|