Sha256: 7f8741cd24eae88c1bf81434b2dba8f7baa0c5c8bd4688bbe6f2fd8447a68750

Contents?: true

Size: 1.58 KB

Versions: 29

Compression:

Stored size: 1.58 KB

Contents

module Fog
  module Storage
    class AWS
      class Real

        # Get an expiring object url from S3 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
        #
        # ==== See Also
        # http://docs.amazonwebservices.com/AmazonS3/latest/dev/S3_QSAuth.html

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

      end

      class Mock # :nodoc:all

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

      end
    end
  end
end

Version data entries

29 entries across 29 versions & 6 rubygems

Version Path
brightbox-cli-0.18.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/put_object_url.rb
brightbox-cli-0.18.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/put_object_url.rb
fog-1.3.0 lib/fog/aws/requests/storage/put_object_url.rb
brightbox-cli-0.17.5 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/put_object_url.rb
fog-1.2.0 lib/fog/aws/requests/storage/put_object_url.rb
ktheory-fog-1.1.2 lib/fog/aws/requests/storage/put_object_url.rb
brightbox-cli-0.17.4 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/put_object_url.rb
brightbox-cli-0.17.3 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/put_object_url.rb
brightbox-cli-0.17.2 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/put_object_url.rb
brightbox-cli-0.17.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/put_object_url.rb
brightbox-cli-0.17.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/put_object_url.rb
fog-1.1.2 lib/fog/aws/requests/storage/put_object_url.rb
fog_tractical-1.1.4 lib/fog/aws/requests/storage/put_object_url.rb
fog_tractical-1.1.3 lib/fog/aws/requests/storage/put_object_url.rb
brightbox-cli-0.16.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/put_object_url.rb
fog-1.1.1 lib/fog/aws/requests/storage/put_object_url.rb
fog-1.1.0 lib/fog/aws/requests/storage/put_object_url.rb
brightbox-cli-0.15.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/put_object_url.rb
tag-fog-1.0.1 lib/fog/aws/requests/storage/put_object_url.rb
brightbox-cli-0.14.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/put_object_url.rb