Sha256: f502774712dd389387a73ec2dee01a53acb403308044c67de178517acea3c4e9

Contents?: true

Size: 1.93 KB

Versions: 60

Compression:

Stored size: 1.93 KB

Contents

module Fog
  module Storage
    class AWS
      class Real

        # Get a hash of hidden fields for form uploading to S3, in the form {:field_name => :field_value}
        # Form should look like: <form action="http://#{bucket_name}.s3.amazonaws.com/" method="post" enctype="multipart/form-data">
        # These hidden fields should then appear, followed by a field named 'file' which is either a textarea or file input.
        #
        # @param options Hash:
        # @option options acl [String] access control list, in ['private', 'public-read', 'public-read-write', 'authenticated-read', 'bucket-owner-read', 'bucket-owner-full-control']
        # @option options Cache-Control [String] same as REST header
        # @option options Content-Type [String] same as REST header
        # @option options Content-Disposition [String] same as REST header
        # @option options Content-Encoding [String] same as REST header
        # @option options Expires same as REST header
        # @option options key key for object, set to '${filename}' to use filename provided by user
        # @option options policy security policy for upload
        # @option options success_action_redirect url to redirct to upon success
        # @option options success_action_status status code to return on success, in [200, 201, 204]
        # @option options x-amz-security token devpay security token
        # @option options x-amz-meta... meta data tags
        #
        # @see http://docs.amazonwebservices.com/AmazonS3/latest/dev/HTTPPOSTForms.html
        # 
        def post_object_hidden_fields(options = {})
          if options['policy']
            options['policy'] = Base64.encode64(Fog::JSON.encode(options['policy'])).gsub("\n", "")
            options['AWSAccessKeyId'] = @aws_access_key_id
            options['Signature'] = Base64.encode64(@hmac.sign(options['policy'])).gsub("\n", "")
          end
          options
        end

      end
    end
  end
end

Version data entries

60 entries across 60 versions & 6 rubygems

Version Path
fog-maestrodev-1.20.0.20140305101839 lib/fog/aws/requests/storage/post_object_hidden_fields.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/aws/requests/storage/post_object_hidden_fields.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/aws/requests/storage/post_object_hidden_fields.rb
fog-1.20.0 lib/fog/aws/requests/storage/post_object_hidden_fields.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/aws/requests/storage/post_object_hidden_fields.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/aws/requests/storage/post_object_hidden_fields.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/aws/requests/storage/post_object_hidden_fields.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/aws/requests/storage/post_object_hidden_fields.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/aws/requests/storage/post_object_hidden_fields.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/aws/requests/storage/post_object_hidden_fields.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/aws/requests/storage/post_object_hidden_fields.rb
fog-1.19.0 lib/fog/aws/requests/storage/post_object_hidden_fields.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/aws/requests/storage/post_object_hidden_fields.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/aws/requests/storage/post_object_hidden_fields.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/aws/requests/storage/post_object_hidden_fields.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/aws/requests/storage/post_object_hidden_fields.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/aws/requests/storage/post_object_hidden_fields.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/aws/requests/storage/post_object_hidden_fields.rb
fog-maestrodev-1.18.0.20131209090811 lib/fog/aws/requests/storage/post_object_hidden_fields.rb
fog-maestrodev-1.18.0.20131206115947 lib/fog/aws/requests/storage/post_object_hidden_fields.rb