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/s3/put_request_payment.rb

56 lines
1.2 KiB
Ruby
Raw Normal View History

2009-08-08 17:46:13 -04:00
unless Fog.mocking?
module Fog
module AWS
class S3
# 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
def put_request_payment(bucket_name, payer)
data =
<<-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',
:query => "requestPayment"
2009-08-08 17:46:13 -04:00
})
end
end
2009-08-08 17:46:13 -04:00
end
end
else
2009-08-08 17:46:13 -04:00
module Fog
module AWS
class S3
def put_request_payment(bucket_name, payer)
response = Fog::Response.new
if bucket = Fog::AWS::S3.data[:buckets][bucket_name]
2009-08-08 17:46:13 -04:00
response.status = 200
bucket['Payer'] = payer
else
response.status = 404
raise(Fog::Errors.status_error(200, 404, response))
2009-08-08 17:46:13 -04:00
end
response
end
end
end
end
2009-08-08 17:46:13 -04:00
end