Class: Fog::Storage::Atmos::Directories

Inherits:
Collection
  • Object
show all
Defined in:
lib/fog/storage/atmos/models/directories.rb

Instance Method Summary collapse

Instance Method Details

#allObject



9
10
11
12
13
14
15
16
17
18
19
20
21
# 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 = {}) ⇒ Object



23
24
25
26
27
28
29
30
31
32
# 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 = {}) ⇒ Object



34
35
36
37
# File 'lib/fog/storage/atmos/models/directories.rb', line 34

def new(attributes ={})
  attributes = {:directory => directory}.merge(attributes) if directory
  super(attributes)
end