mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
79 lines
2.1 KiB
Ruby
79 lines
2.1 KiB
Ruby
module Fog
|
|
module AWS
|
|
class S3
|
|
|
|
def buckets
|
|
Fog::AWS::S3::Buckets.new(:connection => self)
|
|
end
|
|
|
|
class Buckets < Fog::Collection
|
|
|
|
def all
|
|
data = connection.get_service.body
|
|
owner = Fog::AWS::S3::Owner.new(data.delete('Owner').merge!(:connection => connection))
|
|
buckets = Fog::AWS::S3::Buckets.new(:connection => connection)
|
|
data['Buckets'].each do |bucket|
|
|
buckets << Fog::AWS::S3::Bucket.new({
|
|
:collection => buckets,
|
|
:connection => connection,
|
|
:owner => owner
|
|
}.merge!(bucket))
|
|
end
|
|
buckets
|
|
end
|
|
|
|
def create(attributes = {})
|
|
bucket = new(attributes)
|
|
bucket.save
|
|
bucket
|
|
end
|
|
|
|
def get(name, options = {})
|
|
remap_attributes(options, {
|
|
:max_keys => 'max-keys',
|
|
})
|
|
data = connection.get_bucket(name, options).body
|
|
bucket = Fog::AWS::S3::Bucket.new({
|
|
:collection => self,
|
|
:connection => connection,
|
|
:name => data['Name']
|
|
})
|
|
options = {}
|
|
for key, value in data
|
|
if ['Delimiter', 'IsTruncated', 'Marker', 'MaxKeys', 'Prefix'].include?(key)
|
|
options[key] = value
|
|
end
|
|
end
|
|
bucket.objects.merge_attributes(options)
|
|
data['Contents'].each do |object|
|
|
owner = Fog::AWS::S3::Owner.new(object.delete('Owner').merge!(:connection => connection))
|
|
bucket.objects << Fog::AWS::S3::Object.new({
|
|
:bucket => bucket,
|
|
:connection => connection,
|
|
:collection => bucket.objects,
|
|
:owner => owner
|
|
}.merge!(object))
|
|
end
|
|
bucket
|
|
rescue Fog::Errors::NotFound
|
|
nil
|
|
end
|
|
|
|
def new(attributes = {})
|
|
Fog::AWS::S3::Bucket.new(
|
|
attributes.merge!(
|
|
:collection => self,
|
|
:connection => connection
|
|
)
|
|
)
|
|
end
|
|
|
|
def reload
|
|
all
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|