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