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

50 lines
1.4 KiB
Ruby
Raw Normal View History

2010-03-13 13:37:24 -08:00
module Fog
module Storage
class AWS
2010-03-13 13:37:24 -08:00
class Real
2009-08-08 14:46:13 -07:00
require 'fog/aws/parsers/storage/get_request_payment'
2010-06-12 15:31:17 -07:00
2009-08-08 14:46:13 -07:00
# Get configured payer for an S3 bucket
#
# @param bucket_name [String] name of bucket to get payer for
2009-08-08 14:46:13 -07:00
#
# @return [Excon::Response] response:
# * body [Hash]:
# * Payer [String] - Specifies who pays for download and requests
#
# @see http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTrequestPaymentGET.html
2009-08-08 14:46:13 -07:00
def get_request_payment(bucket_name)
request({
2009-08-16 11:44:50 -07:00
:expects => 200,
:headers => {},
:host => "#{bucket_name}.#{@host}",
2009-12-08 11:22:46 -08:00
:idempotent => true,
2009-08-16 11:44:50 -07:00
:method => 'GET',
:parser => Fog::Parsers::Storage::AWS::GetRequestPayment.new,
:query => {'requestPayment' => nil}
2009-08-08 14:46:13 -07:00
})
end
end
class Mock # :nodoc:all
2009-08-08 14:46:13 -07:00
def get_request_payment(bucket_name)
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
response.body = { 'Payer' => bucket['Payer'] }
else
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
end
end
end