1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/requests/storage/put_object_url.rb
Paul Thornthwaite 2e0b7e545a Standardise empty lines throughout codebase
Done with `rubocop --auto-correct --only EmptyLineBetweenDefs,EmptyLines,EmptyLinesAroundBody`
2014-05-26 14:20:02 +01:00

41 lines
1.2 KiB
Ruby

module Fog
module Storage
class AWS
module PutObjectUrl
def put_object_url(bucket_name, object_name, expires, headers = {}, options = {})
unless bucket_name
raise ArgumentError.new('bucket_name is required')
end
unless object_name
raise ArgumentError.new('object_name is required')
end
signed_url(options.merge({
:bucket_name => bucket_name,
:object_name => object_name,
:method => 'PUT',
:headers => headers,
}), expires)
end
end
class Real
# Get an expiring object url from S3 for putting an object
#
# @param bucket_name [String] Name of bucket containing object
# @param object_name [String] Name of object to get expiring url for
# @param expires [Time] An expiry time for this url
#
# @return [Excon::Response] response:
# * body [String] url for object
#
# @see http://docs.amazonwebservices.com/AmazonS3/latest/dev/S3_QSAuth.html
include PutObjectUrl
end
class Mock # :nodoc:all
include PutObjectUrl
end
end
end
end