Sha256: 1ba61bc36946dedd07ec6ea8f7ec4023b680cd08f0ee6202e70e9be8dfeafaec

Contents?: true

Size: 1.52 KB

Versions: 55

Compression:

Stored size: 1.52 KB

Contents

module Fog
  module Storage
    class GoogleXML
      class Real
        # Get an expiring object url from Google Storage for putting an object
        #
        # ==== Parameters
        # * bucket_name<~String> - Name of bucket containing object
        # * object_name<~String> - Name of object to get expiring url for
        # * expires<~Time> - An expiry time for this url
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~String> - url for object
        #
        def put_object_url(bucket_name, object_name, expires, headers = {})
          raise ArgumentError.new("bucket_name is required") unless bucket_name
          raise ArgumentError.new("object_name is required") unless object_name
          https_url({
                      :headers  => headers,
                      :host     => @host,
                      :method   => "PUT",
                      :path     => "#{bucket_name}/#{object_name}"
                    }, expires)
        end
      end

      class Mock
        def put_object_url(bucket_name, object_name, expires, headers = {})
          raise ArgumentError.new("bucket_name is required") unless bucket_name
          raise ArgumentError.new("object_name is required") unless object_name
          https_url({
                      :headers  => headers,
                      :host     => @host,
                      :method   => "PUT",
                      :path     => "#{bucket_name}/#{object_name}"
                    }, expires)
        end
      end
    end
  end
end

Version data entries

55 entries across 55 versions & 2 rubygems

Version Path
fog-google-1.24.1 lib/fog/storage/google_xml/requests/put_object_url.rb
fog-google-1.24.0 lib/fog/storage/google_xml/requests/put_object_url.rb
fog-google-1.23.0 lib/fog/storage/google_xml/requests/put_object_url.rb
fog-google-1.22.0 lib/fog/storage/google_xml/requests/put_object_url.rb
fog-google-1.21.1 lib/fog/storage/google_xml/requests/put_object_url.rb
fog-google-1.21.0 lib/fog/storage/google_xml/requests/put_object_url.rb
fog-google-1.20.0 lib/fog/storage/google_xml/requests/put_object_url.rb
fog-google-1.19.0 lib/fog/storage/google_xml/requests/put_object_url.rb
fog-google-1.18.0 lib/fog/storage/google_xml/requests/put_object_url.rb
fog-google-1.17.0 lib/fog/storage/google_xml/requests/put_object_url.rb
fog-google-1.16.1 lib/fog/storage/google_xml/requests/put_object_url.rb
fog-google-1.16.0 lib/fog/storage/google_xml/requests/put_object_url.rb
fog-google-1.15.0 lib/fog/storage/google_xml/requests/put_object_url.rb
fog-google-1.14.0 lib/fog/storage/google_xml/requests/put_object_url.rb
gitlab-fog-google-1.14.0 lib/fog/storage/google_xml/requests/put_object_url.rb
fog-google-1.13.0 lib/fog/storage/google_xml/requests/put_object_url.rb
gitlab-fog-google-1.13.0 lib/fog/storage/google_xml/requests/put_object_url.rb
fog-google-1.12.1 lib/fog/storage/google_xml/requests/put_object_url.rb
fog-google-1.12.0 lib/fog/storage/google_xml/requests/put_object_url.rb
fog-google-1.11.0 lib/fog/storage/google_xml/requests/put_object_url.rb