Class: Fog::Storage::HP::Directories

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

Instance Method Summary collapse

Instance Method Details

#allObject



10
11
12
13
# File 'lib/fog/hp/models/storage/directories.rb', line 10

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

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



26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/fog/hp/models/storage/directories.rb', line 26

def get(key, options = {})
  data = service.get_container(key, options)
  directory = create_directory(key, data)
  # set the files for the directory
  directory.files.merge_attributes(options)
  directory.files.instance_variable_set(:@loaded, true)
  data.body.each do |file|
    directory.files << directory.files.new(file)
  end
  # set the cdn state for the directory
  directory.cdn_enabled?

  directory
rescue Fog::Storage::HP::NotFound
  nil
end

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



15
16
17
18
19
20
21
22
23
24
# File 'lib/fog/hp/models/storage/directories.rb', line 15

def head(key, options = {})
  data = service.head_container(key)
  directory = create_directory(key, data)
  # set the cdn state for the directory
  directory.cdn_enabled?

  directory
rescue Fog::Storage::HP::NotFound
  nil
end