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_service.rb

55 lines
1.5 KiB
Ruby
Raw Normal View History

2010-03-13 16:37:24 -05:00
module Fog
module Storage
class AWS
2010-03-13 16:37:24 -05:00
class Real
2009-08-07 03:28:53 -04:00
require 'fog/aws/parsers/storage/get_service'
2010-06-12 18:31:17 -04:00
2009-08-07 03:28:53 -04:00
# List information about S3 buckets for authorized user
#
# @return [Excon::Response] response:
# * body [Hash]:
# * Buckets [Hash]:
# * Name [String] - Name of bucket
# * CreationTime [Time] - Timestamp of bucket creation
# * Owner [Hash]:
# * DisplayName [String] - Display name of bucket owner
# * ID [String] - Id of bucket owner
#
# @see http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTServiceGET.html
#
2009-08-07 03:28:53 -04:00
def get_service
request({
2009-08-16 14:44:50 -04:00
:expects => 200,
:headers => {},
:host => @host,
2009-12-08 14:22:46 -05:00
:idempotent => true,
2009-08-16 14:44:50 -04:00
:method => 'GET',
2013-02-27 04:24:28 -05:00
:parser => Fog::Parsers::Storage::AWS::GetService.new
2009-08-07 03:28:53 -04:00
})
end
end
class Mock # :nodoc:all
2009-08-07 03:28:53 -04:00
def get_service
2009-11-20 14:08:08 -05:00
response = Excon::Response.new
2009-08-07 03:28:53 -04:00
response.headers['Status'] = 200
2011-05-19 18:35:33 -04:00
buckets = self.data[:buckets].values.map do |bucket|
bucket.reject do |key, value|
!['CreationDate', 'Name'].include?(key)
end
end
2009-08-07 03:28:53 -04:00
response.body = {
'Buckets' => buckets,
'Owner' => { 'DisplayName' => 'owner', 'ID' => 'some_id'}
2009-08-07 03:28:53 -04:00
}
response
end
end
end
end
end