class Fog::Storage::Atmos::Directories
Public Instance Methods
all()
click to toggle source
# File lib/fog/storage/atmos/models/directories.rb, line 9 def all directory ? ns = directory.key : ns = '' ns = ns + '/' unless ns =~ /\/$/ data = service.get_namespace(ns).body[:DirectoryList] data = {:DirectoryEntry => []} if data.kind_of? String data[:DirectoryEntry] = [data[:DirectoryEntry]] if data[:DirectoryEntry].kind_of? Hash dirs = data[:DirectoryEntry].select {|de| de[:FileType] == 'directory'} dirs.each do |d| d[:Filename] = ns + d[:Filename] if directory d[:Filename] += '/' unless d[:Filename] =~ /\/$/ end load(dirs) end
get(key, _options = {})
click to toggle source
# File lib/fog/storage/atmos/models/directories.rb, line 23 def get(key, _options = {}) return nil if key == '' # Root dir shouldn't be retrieved like this. key =~ /\/$/ ? ns = key : ns = key + '/' res = service.get_namespace ns emc_meta = res.headers['x-emc-meta'] obj_id = emc_meta.scan(/objectid=(\w+),/).flatten[0] new(:objectid => obj_id, :key => ns) rescue Fog::Storage::Atmos::NotFound nil end
new(attributes ={})
click to toggle source
Calls superclass method
# File lib/fog/storage/atmos/models/directories.rb, line 34 def new(attributes ={}) attributes = {:directory => directory}.merge(attributes) if directory super(attributes) end