mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
43 lines
1 KiB
Ruby
43 lines
1 KiB
Ruby
require 'fog/collection'
|
|
require 'fog/google/models/storage/directory'
|
|
|
|
module Fog
|
|
module Google
|
|
class Storage
|
|
|
|
class Directories < Fog::Collection
|
|
|
|
model Fog::Google::Storage::Directory
|
|
|
|
def all
|
|
# data = connection.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 = connection.get_bucket(key, options).body
|
|
directory = new(:key => data['Name'])
|
|
options = {}
|
|
for k, v in data
|
|
if ['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
|