Class: Fog::Storage::Google::File
- Inherits:
-
Model
- Object
- Model
- Fog::Storage::Google::File
- Defined in:
- lib/fog/google/models/storage/file.rb
Instance Method Summary collapse
- #acl=(new_acl) ⇒ Object
- #body ⇒ Object
- #body=(new_body) ⇒ Object
- #copy(target_directory_key, target_file_key) ⇒ Object
- #destroy ⇒ Object
- #directory ⇒ Object
- #metadata ⇒ Object
- #metadata=(new_metadata) ⇒ Object
- #owner=(new_owner) ⇒ Object
- #public=(new_public) ⇒ Object
- #public_url ⇒ Object
- #save(options = {}) ⇒ Object
- #url(expires) ⇒ Object
Instance Method Details
#acl=(new_acl) ⇒ Object
22 23 24 25 26 27 28 |
# File 'lib/fog/google/models/storage/file.rb', line 22 def acl=(new_acl) valid_acls = ['private', 'public-read', 'public-read-write', 'authenticated-read'] unless valid_acls.include?(new_acl) raise ArgumentError.new("acl must be one of [#{valid_acls.join(', ')}]") end @acl = new_acl end |
#body ⇒ Object
30 31 32 33 34 35 36 |
# File 'lib/fog/google/models/storage/file.rb', line 30 def body attributes[:body] ||= if last_modified && (file = collection.get(identity)) file.body else '' end end |
#body=(new_body) ⇒ Object
38 39 40 |
# File 'lib/fog/google/models/storage/file.rb', line 38 def body=(new_body) attributes[:body] = new_body end |
#copy(target_directory_key, target_file_key) ⇒ Object
46 47 48 49 50 51 |
# File 'lib/fog/google/models/storage/file.rb', line 46 def copy(target_directory_key, target_file_key) requires :directory, :key service.copy_object(directory.key, key, target_directory_key, target_file_key) target_directory = service.directories.new(:key => target_directory_key) target_directory.files.get(target_file_key) end |
#destroy ⇒ Object
53 54 55 56 57 58 59 60 |
# File 'lib/fog/google/models/storage/file.rb', line 53 def destroy requires :directory, :key begin service.delete_object(directory.key, key) rescue Excon::Errors::NotFound end true end |
#directory ⇒ Object
42 43 44 |
# File 'lib/fog/google/models/storage/file.rb', line 42 def directory @directory end |
#metadata ⇒ Object
63 64 65 |
# File 'lib/fog/google/models/storage/file.rb', line 63 def attributes.reject {|key, value| !(key.to_s =~ /^x-goog-meta-/)} end |
#metadata=(new_metadata) ⇒ Object
68 69 70 |
# File 'lib/fog/google/models/storage/file.rb', line 68 def () merge_attributes() end |
#owner=(new_owner) ⇒ Object
73 74 75 76 77 78 79 80 |
# File 'lib/fog/google/models/storage/file.rb', line 73 def owner=(new_owner) if new_owner attributes[:owner] = { :display_name => new_owner['DisplayName'], :id => new_owner['ID'] } end end |
#public=(new_public) ⇒ Object
82 83 84 85 86 87 88 89 |
# File 'lib/fog/google/models/storage/file.rb', line 82 def public=(new_public) if new_public @acl = 'public-read' else @acl = 'private' end new_public end |
#public_url ⇒ Object
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
# File 'lib/fog/google/models/storage/file.rb', line 91 def public_url requires :directory, :key acl = service.get_object_acl(directory.key, key).body['AccessControlList'] access_granted = acl.find do |entry| entry['Scope']['type'] == 'AllUsers' && entry['Permission'] == 'READ' end if access_granted if directory.key.to_s =~ /^(?:[a-z]|\d(?!\d{0,2}(?:\.\d{1,3}){3}$))(?:[a-z0-9]|\.(?![\.\-])|\-(?![\.])){1,61}[a-z0-9]$/ "https://#{directory.key}.storage.googleapis.com/#{key}" else "https://storage.googleapis.com/#{directory.key}/#{key}" end else nil end end |
#save(options = {}) ⇒ Object
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
# File 'lib/fog/google/models/storage/file.rb', line 110 def save( = {}) requires :body, :directory, :key if != {} Fog::Logger.deprecation("options param is deprecated, use acl= instead [light_black](#{caller.first})[/]") end ['x-goog-acl'] ||= @acl if @acl ['Cache-Control'] = cache_control if cache_control ['Content-Disposition'] = content_disposition if content_disposition ['Content-Encoding'] = content_encoding if content_encoding ['Content-MD5'] = content_md5 if content_md5 ['Content-Type'] = content_type if content_type ['Expires'] = expires if expires .merge!() data = service.put_object(directory.key, key, body, ) merge_attributes(data.headers.reject {|key, value| ['Content-Length', 'Content-Type'].include?(key)}) self.content_length = Fog::Storage.get_body_size(body) self.content_type ||= Fog::Storage.get_content_type(body) true end |
#url(expires) ⇒ Object
131 132 133 134 |
# File 'lib/fog/google/models/storage/file.rb', line 131 def url(expires) requires :key collection.get_http_url(key, expires) end |