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/get_request_payment.rb

55 lines
1.3 KiB
Ruby
Raw Normal View History

2009-08-08 17:46:13 -04:00
unless Fog.mocking?
module Fog
module AWS
class S3
# Get configured payer for an S3 bucket
#
# ==== Parameters
# * bucket_name<~String> - name of bucket to get payer for
#
# ==== Returns
# * response<~Fog::AWS::Response>:
# * body<~Hash>:
# * 'Payer'<~String> - Specifies who pays for download and requests
def get_request_payment(bucket_name)
request({
2009-08-16 14:44:50 -04:00
:expects => 200,
:headers => {},
:host => "#{bucket_name}.#{@host}",
:method => 'GET',
:parser => Fog::Parsers::AWS::S3::GetRequestPayment.new,
:query => 'requestPayment'
2009-08-08 17:46:13 -04:00
})
end
end
2009-08-08 17:46:13 -04:00
end
end
2009-08-08 17:46:13 -04:00
else
module Fog
module AWS
class S3
def get_request_payment(bucket_name)
response = Fog::Response.new
bucket_status = get_bucket(bucket_name).status
if bucket_status == 200
response.status = 200
bucket = @data['Buckets'].select {|bucket| bucket['Name'] == bucket_name}.first
response.body = { 'Payer' => bucket['Payer'] }
else
response.status = bucket_status
end
response
end
end
end
end
2009-08-08 17:46:13 -04:00
end