aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/lib/active_storage/service/gcs_service.rb
blob: b3fe5920979fcb2f752c74ba8b48f0448ed2e544 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# frozen_string_literal: true

require "google/cloud/storage"
require "active_support/core_ext/object/to_query"

module ActiveStorage
  # Wraps the Google Cloud Storage as an Active Storage service. See ActiveStorage::Service for the generic API
  # documentation that applies to all services.
  class Service::GCSService < Service
    attr_reader :client, :bucket

    def initialize(project:, keyfile:, bucket:)
      @client = Google::Cloud::Storage.new(project: project, keyfile: keyfile)
      @bucket = @client.bucket(bucket)
    end

    def upload(key, io, checksum: nil)
      instrument :upload, key, checksum: checksum do
        begin
          bucket.create_file(io, key, md5: checksum)
        rescue Google::Cloud::InvalidArgumentError
          raise ActiveStorage::IntegrityError
        end
      end
    end

    # FIXME: Add streaming when given a block
    def download(key)
      instrument :download, key do
        io = file_for(key).download
        io.rewind
        io.read
      end
    end

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

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

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

        payload[:url] = generated_url

        generated_url
      end
    end

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

        payload[:url] = generated_url

        generated_url
      end
    end

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

    private
      def file_for(key)
        bucket.file(key)
      end
  end
end