2010-03-13 16:37:24 -05:00
|
|
|
module Fog
|
|
|
|
module AWS
|
2010-09-08 17:40:02 -04:00
|
|
|
class Storage
|
2010-03-13 16:37:24 -05:00
|
|
|
class Real
|
2009-08-08 17:46:13 -04:00
|
|
|
|
|
|
|
# Change who pays for requests to an S3 bucket
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
|
|
|
# * bucket_name<~String> - name of bucket to modify
|
|
|
|
# * payer<~String> - valid values are BucketOwner or Requester
|
2010-10-29 21:05:59 -04:00
|
|
|
#
|
|
|
|
# ==== See Also
|
|
|
|
# http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTrequestPaymentPUT.html
|
|
|
|
|
2009-08-08 17:46:13 -04:00
|
|
|
def put_request_payment(bucket_name, payer)
|
|
|
|
data =
|
2009-07-13 22:14:59 -04:00
|
|
|
<<-DATA
|
|
|
|
<RequestPaymentConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
|
|
|
|
<Payer>#{payer}</Payer>
|
|
|
|
</RequestPaymentConfiguration>
|
|
|
|
DATA
|
2009-08-08 17:46:13 -04:00
|
|
|
request({
|
2009-08-16 14:44:50 -04:00
|
|
|
:body => data,
|
|
|
|
:expects => 200,
|
|
|
|
:headers => {},
|
|
|
|
:host => "#{bucket_name}.#{@host}",
|
|
|
|
:method => 'PUT',
|
2010-06-05 17:19:39 -04:00
|
|
|
:query => {'requestPayment' => nil}
|
2009-08-08 17:46:13 -04:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2009-07-13 22:14:59 -04:00
|
|
|
end
|
2009-08-08 17:46:13 -04:00
|
|
|
|
2010-10-29 21:16:36 -04:00
|
|
|
class Mock # :nodoc:all
|
2009-08-08 17:46:13 -04:00
|
|
|
|
|
|
|
def put_request_payment(bucket_name, payer)
|
2009-11-20 14:08:08 -05:00
|
|
|
response = Excon::Response.new
|
2010-03-13 16:37:24 -05:00
|
|
|
if bucket = @data[:buckets][bucket_name]
|
2009-08-08 17:46:13 -04:00
|
|
|
response.status = 200
|
|
|
|
bucket['Payer'] = payer
|
|
|
|
else
|
2009-08-16 14:45:52 -04:00
|
|
|
response.status = 404
|
2009-11-20 14:08:08 -05:00
|
|
|
raise(Excon::Errors.status_error({:expects => 200}, response))
|
2009-08-08 17:46:13 -04:00
|
|
|
end
|
|
|
|
response
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2009-07-13 22:14:59 -04:00
|
|
|
end
|
|
|
|
end
|
2010-03-13 16:37:24 -05:00
|
|
|
end
|