123456789_123456789_123456789_123456789_123456789_

Class: ActiveStorage::Service::GCSService

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
Instance Chain:
Inherits: ActiveStorage::Service
Defined in: activestorage/lib/active_storage/service/gcs_service.rb

Overview

Wraps the Google Cloud Storage as an Active Storage service. See ::ActiveStorage::Service for the generic API documentation that applies to all services.

Class Attribute Summary

Class Method Summary

::ActiveStorage::Service - Inherited

.configure

Configure an Active Storage service by name from a set of configurations, typically loaded from a YAML file.

::ActiveSupport::Autoload - Extended

Instance Attribute Summary

Instance Method Summary

::ActiveStorage::Service - Inherited

#delete

Delete the file at the key.

#delete_prefixed

Delete files at keys starting with the prefix.

#download

Return the content of the file at the key.

#download_chunk

Return the partial content in the byte range of the file at the key.

#exist?

Return true if a file exists at the key.

#headers_for_direct_upload

Returns a ::Hash of headers for #url_for_direct_upload requests.

#update_metadata

Update metadata for the file identified by key in the service.

#upload

Upload the io to the key specified.

#url

Returns a signed, temporary URL for the file at the key.

#url_for_direct_upload

Returns a signed, temporary URL that a direct upload file can be PUT to on the key.

Constructor Details

.new(**config) ⇒ GCSService

[ GitHub ]

  
# File 'activestorage/lib/active_storage/service/gcs_service.rb', line 14

def initialize(**config)
  @config = config
end

Instance Method Details

#delete(key)

[ GitHub ]

  
# File 'activestorage/lib/active_storage/service/gcs_service.rb', line 67

def delete(key)
  instrument :delete, key: key do
    begin
      file_for(key).delete
    rescue Google::Cloud::NotFoundError
      # Ignore files already deleted
    end
  end
end

#delete_prefixed(prefix)

[ GitHub ]

  
# File 'activestorage/lib/active_storage/service/gcs_service.rb', line 77

def delete_prefixed(prefix)
  instrument :delete_prefixed, prefix: prefix do
    bucket.files(prefix: prefix).all do |file|
      begin
        file.delete
      rescue Google::Cloud::NotFoundError
        # Ignore concurrently-deleted files
      end
    end
  end
end

#download(key)

FIXME: Download in chunks when given a block.

[ GitHub ]

  
# File 'activestorage/lib/active_storage/service/gcs_service.rb', line 43

def download(key)
  instrument :download, key: key do
    io = file_for(key).download
    io.rewind

    if block_given?
      yield io.string
    else
      io.string
    end
  end
end

#download_chunk(key, range)

[ GitHub ]

  
# File 'activestorage/lib/active_storage/service/gcs_service.rb', line 56

def download_chunk(key, range)
  instrument :download_chunk, key: key, range: range do
    file = file_for(key)
    uri  = URI(file.signed_url(expires: 30.seconds))

    Net::HTTP.start(uri.host, uri.port, use_ssl: uri.scheme == "https") do |client|
      client.get(uri, "Range" => "bytes=#{range.begin}-#{range.exclude_end? ? range.end - 1 : range.end}").body
    end
  end
end

#exist?(key) ⇒ Boolean

[ GitHub ]

  
# File 'activestorage/lib/active_storage/service/gcs_service.rb', line 89

def exist?(key)
  instrument :exist, key: key do |payload|
    answer = file_for(key).exists?
    payload[:exist] = answer
    answer
  end
end

#headers_for_direct_upload(key, checksum:)

[ GitHub ]

  
# File 'activestorage/lib/active_storage/service/gcs_service.rb', line 120

def headers_for_direct_upload(key, checksum:, **)
  { "Content-MD5" => checksum }
end

#update_metadata(key, content_type:, disposition: nil, filename: nil)

[ GitHub ]

  
# File 'activestorage/lib/active_storage/service/gcs_service.rb', line 33

def (key, content_type:, disposition: nil, filename: nil)
  instrument :, key: key, content_type: content_type, disposition: disposition do
    file_for(key).update do |file|
      file.content_type = content_type
      file.content_disposition = content_disposition_with(type: disposition, filename: filename) if disposition && filename
    end
  end
end

#upload(key, io, checksum: nil, content_type: nil, disposition: nil, filename: nil)

[ GitHub ]

  
# File 'activestorage/lib/active_storage/service/gcs_service.rb', line 18

def upload(key, io, checksum: nil, content_type: nil, disposition: nil, filename: nil)
  instrument :upload, key: key, checksum: checksum do
    begin
      # GCS's signed URLs don't include params such as response-content-type response-content_disposition
      # in the signature, which means an attacker can modify them and bypass our effort to force these to
      # binary and attachment when the file's content type requires it. The only way to force them is to
      # store them as object's metadata.
      content_disposition = content_disposition_with(type: disposition, filename: filename) if disposition && filename
      bucket.create_file(io, key, md5: checksum, content_type: content_type, content_disposition: content_disposition)
    rescue Google::Cloud::InvalidArgumentError
      raise ActiveStorage::IntegrityError
    end
  end
end

#url(key, expires_in:, filename:, content_type:, disposition:)

[ GitHub ]

  
# File 'activestorage/lib/active_storage/service/gcs_service.rb', line 97

def url(key, expires_in:, filename:, content_type:, disposition:)
  instrument :url, key: key do |payload|
    generated_url = file_for(key).signed_url expires: expires_in, query: {
      "response-content-disposition" => content_disposition_with(type: disposition, filename: filename),
      "response-content-type" => content_type
    }

    payload[:url] = generated_url

    generated_url
  end
end

#url_for_direct_upload(key, expires_in:, checksum:)

[ GitHub ]

  
# File 'activestorage/lib/active_storage/service/gcs_service.rb', line 110

def url_for_direct_upload(key, expires_in:, checksum:, **)
  instrument :url, key: key do |payload|
    generated_url = bucket.signed_url key, method: "PUT", expires: expires_in, content_md5: checksum

    payload[:url] = generated_url

    generated_url
  end
end