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

49 lines
1.3 KiB
Ruby
Raw Normal View History

2010-03-13 16:37:24 -05:00
module Fog
module AWS
module S3
class Real
2009-08-08 17:46:13 -04:00
2010-06-12 18:31:17 -04:00
require 'fog/aws/parsers/s3/get_request_payment'
2009-08-08 17:46:13 -04:00
# Get configured payer for an S3 bucket
#
# ==== Parameters
# * bucket_name<~String> - name of bucket to get payer for
#
# ==== Returns
# * response<~Excon::Response>:
2009-08-08 17:46:13 -04:00
# * 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}",
2009-12-08 14:22:46 -05:00
:idempotent => true,
2009-08-16 14:44:50 -04:00
:method => 'GET',
:parser => Fog::Parsers::AWS::S3::GetRequestPayment.new,
:query => {'requestPayment' => nil}
2009-08-08 17:46:13 -04:00
})
end
end
2010-03-13 16:37:24 -05:00
class Mock
2009-08-08 17:46:13 -04:00
def get_request_payment(bucket_name)
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
response.body = { 'Payer' => bucket['Payer'] }
else
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
end
end
end