2010-05-28 22:53:15 -05:00
|
|
|
module Fog
|
2011-06-15 14:26:43 -07:00
|
|
|
module Storage
|
|
|
|
class AWS
|
2012-04-22 19:16:19 -07:00
|
|
|
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
|
2013-04-12 11:31:10 +01:00
|
|
|
signed_url(options.merge({
|
|
|
|
:bucket_name => bucket_name,
|
|
|
|
:object_name => object_name,
|
2012-04-22 19:16:19 -07:00
|
|
|
:method => 'PUT',
|
2013-04-12 11:31:10 +01:00
|
|
|
:headers => headers,
|
|
|
|
}), expires)
|
2012-04-22 19:16:19 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-05-28 22:53:15 -05:00
|
|
|
class Real
|
|
|
|
|
|
|
|
# Get an expiring object url from S3 for putting an object
|
|
|
|
#
|
2013-01-13 19:49:47 -06:00
|
|
|
# @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
|
2010-05-28 22:53:15 -05:00
|
|
|
#
|
2013-01-13 19:49:47 -06:00
|
|
|
# @return [Excon::Response] response:
|
|
|
|
# * body [String] url for object
|
2010-05-28 22:53:15 -05:00
|
|
|
#
|
2013-01-13 19:49:47 -06:00
|
|
|
# @see http://docs.amazonwebservices.com/AmazonS3/latest/dev/S3_QSAuth.html
|
2010-10-29 18:05:59 -07:00
|
|
|
|
2012-04-22 19:16:19 -07:00
|
|
|
include PutObjectUrl
|
2010-05-28 22:53:15 -05:00
|
|
|
|
|
|
|
end
|
|
|
|
|
2010-10-29 18:16:36 -07:00
|
|
|
class Mock # :nodoc:all
|
2010-05-28 22:53:15 -05:00
|
|
|
|
2012-04-22 19:16:19 -07:00
|
|
|
include PutObjectUrl
|
2010-05-28 22:53:15 -05:00
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|