Methods

Class/Module Index [+]

Quicksearch

Fog::Storage::Atmos::Directories

Public Instance Methods

all() click to toggle source
# File lib/fog/atmos/models/storage/directories.rb, line 14
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/atmos/models/storage/directories.rb, line 28
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
# File lib/fog/atmos/models/storage/directories.rb, line 39
def new(attributes ={})
  attributes = {:directory => directory}.merge(attributes) if directory
  super(attributes)
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.