class Google::Cloud::Storage::PostObject

PostObject represents the URL, fields, and values needed to upload objects via html forms.

@see cloud.google.com/storage/docs/xml-api/post-object

@attr_reader [String] url The URL the form must post to. @attr_reader [Hash] fields The input fields that must be included in the

form. Each key/value pair should be set as an input tag's name and
value.

@example Using Bucket#post_object (V2):

require "google/cloud/storage"

storage = Google::Cloud::Storage.new

bucket = storage.bucket "my-todo-app"
post = bucket.post_object "avatars/heidi/400x400.png"

post.url #=> "https://storage.googleapis.com"
post.fields[:key] #=> "my-todo-app/avatars/heidi/400x400.png"
post.fields[:GoogleAccessId] #=> "0123456789@gserviceaccount.com"
post.fields[:signature] #=> "ABC...XYZ="
post.fields[:policy] #=> "ABC...XYZ="

@example Using Bucket#generate_signed_post_policy_v4 (V4):

require "google/cloud/storage"

storage = Google::Cloud::Storage.new

bucket = storage.bucket "my-todo-app"
conditions = [["starts-with","$acl","public"]]
post = bucket.generate_signed_post_policy_v4 "avatars/heidi/400x400.png", expires: 10, conditions: conditions

post.url #=> "https://storage.googleapis.com/my-todo-app/"
post.fields["key"] #=> "my-todo-app/avatars/heidi/400x400.png"
post.fields["policy"] #=> "ABC...XYZ"
post.fields["x-goog-algorithm"] #=> "GOOG4-RSA-SHA256"
post.fields["x-goog-credential"] #=> "cred@pid.iam.gserviceaccount.com/20200123/auto/storage/goog4_request"
post.fields["x-goog-date"] #=> "20200128T000000Z"
post.fields["x-goog-signature"] #=> "4893a0e...cd82"

Attributes

fields[R]
url[R]

Public Class Methods

new(url, fields) click to toggle source

@private

# File lib/google/cloud/storage/post_object.rb, line 66
def initialize url, fields
  @url = url
  @fields = fields
end