mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
40 lines
1.1 KiB
Ruby
40 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
|