Class: Fog::Storage::HP::SharedFiles
- Inherits:
-
Collection
- Object
- Collection
- Fog::Storage::HP::SharedFiles
- Defined in:
- lib/fog/hp/models/storage/shared_files.rb
Instance Method Summary collapse
Instance Method Details
#all ⇒ Object
12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'lib/fog/hp/models/storage/shared_files.rb', line 12 def all requires :shared_directory parent = shared_directory.collection.get(shared_directory.url) if parent load(parent.files.map {|file| file.attributes}) else nil end # throws exception Fog::HP::Errors::Forbidden if insufficient access rescue Fog::Storage::HP::NotFound nil end |
#get(key, &block) ⇒ Object
25 26 27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/fog/hp/models/storage/shared_files.rb', line 25 def get(key, &block) requires :shared_directory shared_object_url = "#{shared_directory.url}/#{key}" data = service.get_shared_object(shared_object_url, &block) file_data = data.headers.merge({ :body => data.body, :key => key }) new(file_data) # throws exception Fog::HP::Errors::Forbidden if insufficient access rescue Fog::Storage::HP::NotFound nil end |
#head(key) ⇒ Object
39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/fog/hp/models/storage/shared_files.rb', line 39 def head(key) requires :shared_directory shared_object_url = "#{shared_directory.url}/#{key}" data = service.head_shared_object(shared_object_url) file_data = data.headers.merge({ :body => '', :key => key }) new(file_data) # throws exception Fog::HP::Errors::Forbidden if insufficient access rescue Fog::Storage::HP::NotFound nil end |
#new(attributes = {}) ⇒ Object
53 54 55 56 |
# File 'lib/fog/hp/models/storage/shared_files.rb', line 53 def new(attributes = {}) requires :shared_directory super({ :shared_directory => shared_directory }.merge!(attributes)) end |