mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
58 lines
1.4 KiB
Ruby
58 lines
1.4 KiB
Ruby
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({
|
|
:expects => 200,
|
|
:headers => {},
|
|
:host => @host,
|
|
:method => 'GET',
|
|
:parser => Fog::Parsers::AWS::S3::GetService.new,
|
|
:url => @host
|
|
})
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
|
|
else
|
|
|
|
module Fog
|
|
module AWS
|
|
class S3
|
|
|
|
def get_service
|
|
response = Fog::Response.new
|
|
response.headers['Status'] = 200
|
|
buckets = Fog::AWS::S3.data[:buckets].values.map do |bucket|
|
|
bucket.reject do |key, value|
|
|
!['CreationDate', 'Name'].include?(key)
|
|
end
|
|
end
|
|
response.body = {
|
|
'Buckets' => buckets,
|
|
'Owner' => { 'DisplayName' => 'owner', 'ID' => 'some_id'}
|
|
}
|
|
response
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|