Class: Fog::Storage::HP::SharedFile
- Inherits:
-
Model
- Object
- Model
- Fog::Storage::HP::SharedFile
- Defined in:
- lib/fog/hp/models/storage/shared_file.rb
Instance Method Summary collapse
- #body ⇒ Object
- #body=(new_body) ⇒ Object
- #destroy ⇒ Object
- #save(options = {}) ⇒ Object
- #shared_directory ⇒ Object
- #url ⇒ Object
Instance Method Details
#body ⇒ Object
19 20 21 22 23 24 25 |
# File 'lib/fog/hp/models/storage/shared_file.rb', line 19 def body attributes[:body] ||= if last_modified collection.get(identity).body else '' end end |
#body=(new_body) ⇒ Object
27 28 29 |
# File 'lib/fog/hp/models/storage/shared_file.rb', line 27 def body=(new_body) attributes[:body] = new_body end |
#destroy ⇒ Object
31 32 33 34 35 36 37 38 |
# File 'lib/fog/hp/models/storage/shared_file.rb', line 31 def destroy requires :shared_directory, :key service.delete_shared_object(self.url) true # throws exception Fog::HP::Errors::Forbidden if insufficient access rescue Fog::Storage::HP::NotFound false end |
#save(options = {}) ⇒ Object
44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/fog/hp/models/storage/shared_file.rb', line 44 def save( = {}) requires :shared_directory, :key ['Content-Type'] = content_type if content_type data = service.put_shared_object(shared_directory.url, key, body, ) merge_attributes(data.headers) self.content_length = Fog::Storage.get_body_size(body) true # throws exception Fog::HP::Errors::Forbidden if insufficient access rescue Fog::Storage::HP::NotFound false end |
#shared_directory ⇒ Object
40 41 42 |
# File 'lib/fog/hp/models/storage/shared_file.rb', line 40 def shared_directory @shared_directory end |
#url ⇒ Object
15 16 17 |
# File 'lib/fog/hp/models/storage/shared_file.rb', line 15 def url "#{self.collection.shared_directory.url}/#{key}" end |