2010-03-13 16:37:24 -05:00
|
|
|
module Fog
|
|
|
|
module AWS
|
2010-09-08 17:40:02 -04:00
|
|
|
class Storage
|
2010-03-13 16:37:24 -05:00
|
|
|
class Real
|
2009-08-07 03:28:53 -04:00
|
|
|
|
2011-01-07 18:34:20 -05:00
|
|
|
require 'fog/storage/parsers/aws/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
|
|
|
|
#
|
|
|
|
# ==== Returns
|
2009-11-02 21:48:49 -05:00
|
|
|
# * response<~Excon::Response>:
|
2009-08-07 03:28:53 -04:00
|
|
|
# * 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
|
2010-10-29 21:05:59 -04:00
|
|
|
#
|
|
|
|
# ==== See Also
|
|
|
|
# http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTServiceGET.html
|
2010-11-15 20:17:37 -05:00
|
|
|
#
|
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',
|
2010-09-08 17:40:02 -04:00
|
|
|
:parser => Fog::Parsers::AWS::Storage::GetService.new,
|
2009-08-16 14:44:50 -04:00
|
|
|
:url => @host
|
2009-08-07 03:28:53 -04:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2009-07-13 22:14:59 -04:00
|
|
|
end
|
|
|
|
|
2010-10-29 21:16:36 -04:00
|
|
|
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
|
2010-03-13 16:37:24 -05:00
|
|
|
buckets = @data[:buckets].values.map do |bucket|
|
2009-08-08 15:31:32 -04:00
|
|
|
bucket.reject do |key, value|
|
|
|
|
!['CreationDate', 'Name'].include?(key)
|
|
|
|
end
|
|
|
|
end
|
2009-08-07 03:28:53 -04:00
|
|
|
response.body = {
|
2009-08-08 15:31:32 -04:00
|
|
|
'Buckets' => buckets,
|
2009-08-16 14:45:52 -04:00
|
|
|
'Owner' => { 'DisplayName' => 'owner', 'ID' => 'some_id'}
|
2009-08-07 03:28:53 -04:00
|
|
|
}
|
|
|
|
response
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2009-07-13 22:14:59 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|