Class: Fog::Storage::Softlayer::Directories

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

Instance Method Summary collapse

Instance Method Details

#allObject



18
19
20
21
# File 'lib/fog/softlayer/models/storage/directories.rb', line 18

def all
  data = service.get_containers.body
  load(data)
end

#get(key, options = {}) ⇒ Object



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# File 'lib/fog/softlayer/models/storage/directories.rb', line 23

def get(key, options = {})
  data = service.get_container(key, options)
  directory = new(:key => key)
  keep_headers = data.headers.select do |k,v|
    ['X-Container-Bytes-Used', 'X-Container-Object-Count', 'X-Container-Read'].include?(k)
  end
  directory.merge_attributes(keep_headers)
  directory.files.merge_attributes(options)
  directory.files.instance_variable_set(:@loaded, true)

  data.body.each do |file|
    directory.files << directory.files.new(file)
  end
  directory
rescue Fog::Storage::Softlayer::NotFound
  nil
end