2009-08-07 03:28:53 -04:00
|
|
|
unless Fog.mocking?
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module AWS
|
|
|
|
class S3
|
|
|
|
|
|
|
|
# List information about S3 buckets for authorized user
|
|
|
|
#
|
|
|
|
# ==== Returns
|
|
|
|
# * response<~Fog::AWS::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
|
|
|
|
def get_service
|
|
|
|
request({
|
2009-08-16 14:44:50 -04:00
|
|
|
:expects => 200,
|
|
|
|
:headers => {},
|
|
|
|
:host => @host,
|
|
|
|
:method => 'GET',
|
|
|
|
:parser => Fog::Parsers::AWS::S3::GetService.new,
|
|
|
|
:url => @host
|
2009-08-07 03:28:53 -04:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2009-07-13 22:14:59 -04:00
|
|
|
end
|
2009-08-07 03:28:53 -04:00
|
|
|
end
|
|
|
|
end
|
2009-07-13 22:14:59 -04:00
|
|
|
|
2009-08-07 03:28:53 -04:00
|
|
|
else
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module AWS
|
|
|
|
class S3
|
|
|
|
|
|
|
|
def get_service
|
|
|
|
response = Fog::Response.new
|
|
|
|
response.headers['Status'] = 200
|
2009-08-18 01:39:44 -04:00
|
|
|
buckets = Fog::AWS::S3.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
|
2009-08-07 03:28:53 -04:00
|
|
|
|
2009-07-13 22:14:59 -04:00
|
|
|
end
|