2010-05-28 23:53:15 -04:00
|
|
|
module Fog
|
|
|
|
module AWS
|
2010-09-08 17:40:02 -04:00
|
|
|
class Storage
|
2010-05-28 23:53:15 -04:00
|
|
|
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
|
|
|
|
#
|
2010-10-29 21:05:59 -04:00
|
|
|
# ==== See Also
|
|
|
|
# http://docs.amazonwebservices.com/AmazonS3/latest/dev/S3_QSAuth.html
|
|
|
|
|
2010-05-28 23:53:15 -04:00
|
|
|
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 => {},
|
2010-09-24 14:32:48 -04:00
|
|
|
:host => @host,
|
2010-05-28 23:53:15 -04:00
|
|
|
:method => 'PUT',
|
2010-09-24 14:32:48 -04:00
|
|
|
:path => [bucket_name, CGI.escape(object_name)].join('/')
|
2010-05-28 23:53:15 -04:00
|
|
|
}, expires)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2010-10-29 21:16:36 -04:00
|
|
|
class Mock # :nodoc:all
|
2010-05-28 23:53:15 -04:00
|
|
|
|
|
|
|
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 => {},
|
2010-09-24 14:32:48 -04:00
|
|
|
:host => @host,
|
2010-05-28 23:53:15 -04:00
|
|
|
:method => 'PUT',
|
2010-09-24 14:32:48 -04:00
|
|
|
:path => [bucket_name, CGI.escape(object_name)].join('/')
|
2010-05-28 23:53:15 -04:00
|
|
|
}, expires)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|