1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/lib/fog/aws/models/storage/directories.rb
2015-01-02 09:42:20 -08:00

39 lines
1.1 KiB
Ruby

require 'fog/core/collection'
require 'fog/aws/models/storage/directory'
module Fog
module Storage
class AWS
class Directories < Fog::Collection
model Fog::Storage::AWS::Directory
def all
data = service.get_service.body['Buckets']
load(data)
end
def get(key, options = {})
remap_attributes(options, {
:delimiter => 'delimiter',
:marker => 'marker',
:max_keys => 'max-keys',
:prefix => 'prefix'
})
data = service.get_bucket(key, options).body
directory = new(:key => data['Name'], :is_persisted => true)
options = {}
for k, v in data
if ['CommonPrefixes', 'Delimiter', 'IsTruncated', 'Marker', 'MaxKeys', 'Prefix'].include?(k)
options[k] = v
end
end
directory.files.merge_attributes(options)
directory.files.load(data['Contents'])
directory
rescue Excon::Errors::NotFound
nil
end
end
end
end
end