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/models/s3/buckets.rb

83 lines
2.3 KiB
Ruby
Raw Normal View History

2009-08-02 19:37:54 -04:00
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
2009-08-04 13:51:54 -04:00
owner = Fog::AWS::S3::Owner.new(data.delete('Owner').merge!(:connection => connection))
buckets = Fog::AWS::S3::Buckets.new(:connection => connection)
2009-08-02 19:37:54 -04:00
data['Buckets'].each do |bucket|
buckets << Fog::AWS::S3::Bucket.new({
:buckets => buckets,
:connection => connection,
:owner => owner
2009-08-04 13:51:54 -04:00
}.merge!(bucket))
2009-08-02 19:37:54 -04:00
end
buckets
2009-08-02 19:37:54 -04:00
end
2009-08-04 01:50:52 -04:00
def create(attributes = {})
bucket = new(attributes)
bucket.save
bucket
end
def get(name, options = {})
remap_attributes(options, {
:is_truncated => 'IsTruncated',
:marker => 'Marker',
:max_keys => 'MaxKeys',
:prefix => 'Prefix'
})
data = connection.get_bucket(name, options).body
bucket = Fog::AWS::S3::Bucket.new({
:buckets => self,
:connection => connection,
:name => data['Name']
})
objects_data = {}
for key, value in data
if ['IsTruncated', 'Marker', 'MaxKeys', 'Prefix'].include?(key)
objects_data[key] = value
end
end
bucket.objects.merge_attributes(objects_data)
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,
:objects => self,
:owner => owner
}.merge!(object))
end
bucket
rescue Fog::Errors::NotFound
nil
end
2009-08-04 01:50:52 -04:00
def new(attributes = {})
Fog::AWS::S3::Bucket.new(
attributes.merge!(
:connection => connection,
:buckets => self
)
)
2009-08-04 01:50:52 -04:00
end
def reload
all
end
2009-08-02 19:37:54 -04:00
end
end
end
end