Class: Fog::Google::Storage::File
Instance Attribute Summary
Attributes inherited from Model
#collection, #connection
Instance Method Summary
collapse
deprecate, self_deprecate
Methods inherited from Model
#initialize, #inspect, #reload, #to_json, #wait_for
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
#_dump, #attributes, #identity, #identity=, #merge_attributes, #new_record?, #requires
Constructor Details
This class inherits a constructor from Fog::Model
Instance Method Details
#acl=(new_acl) ⇒ Object
27
28
29
30
31
32
33
|
# File 'lib/fog/storage/models/google/file.rb', line 27
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
35
36
37
38
39
40
41
|
# File 'lib/fog/storage/models/google/file.rb', line 35
def body
attributes[:body] ||= if last_modified && (file = collection.get(identity))
file.body
else
''
end
end
|
#body=(new_body) ⇒ Object
43
44
45
|
# File 'lib/fog/storage/models/google/file.rb', line 43
def body=(new_body)
attributes[:body] = new_body
end
|
#copy(target_directory_key, target_file_key) ⇒ Object
51
52
53
54
55
56
|
# File 'lib/fog/storage/models/google/file.rb', line 51
def copy(target_directory_key, target_file_key)
requires :directory, :key
connection.copy_object(directory.key, key, target_directory_key, target_file_key)
target_directory = connection.directories.new(:key => target_directory_key)
target_directory.files.get(target_file_key)
end
|
#destroy ⇒ Object
58
59
60
61
62
63
64
65
|
# File 'lib/fog/storage/models/google/file.rb', line 58
def destroy
requires :directory, :key
begin
connection.delete_object(directory.key, key)
rescue Excon::Errors::NotFound
end
true
end
|
#directory ⇒ Object
47
48
49
|
# File 'lib/fog/storage/models/google/file.rb', line 47
def directory
@directory
end
|
68
69
70
|
# File 'lib/fog/storage/models/google/file.rb', line 68
def metadata
attributes.reject {|key, value| !(key.to_s =~ /^x-goog-meta-/)}
end
|
73
74
75
|
# File 'lib/fog/storage/models/google/file.rb', line 73
def metadata=(new_metadata)
merge_attributes(new_metadata)
end
|
#owner=(new_owner) ⇒ Object
78
79
80
81
82
83
84
85
|
# File 'lib/fog/storage/models/google/file.rb', line 78
def owner=(new_owner)
if new_owner
attributes[:owner] = {
:display_name => new_owner['DisplayName'],
:id => new_owner['ID']
}
end
end
|
#public=(new_public) ⇒ Object
87
88
89
90
91
92
93
94
|
# File 'lib/fog/storage/models/google/file.rb', line 87
def public=(new_public)
if new_public
@acl = 'public-read'
else
@acl = 'private'
end
new_public
end
|
#public_url ⇒ Object
96
97
98
99
100
101
102
103
104
105
106
107
|
# File 'lib/fog/storage/models/google/file.rb', line 96
def public_url
requires :directory, :key
if connection.get_object_acl(directory.key, key).body['AccessControlList'].detect {|entry| entry['Scope']['type'] == 'AllUsers' && entry['Permission'] == 'READ'}
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}.commondatastorage.googleapis.com/#{key}"
else
"https://commondatastorage.googleapis.com/#{directory.key}/#{key}"
end
else
nil
end
end
|
#save(options = {}) ⇒ Object
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
# File 'lib/fog/storage/models/google/file.rb', line 109
def save(options = {})
requires :body, :directory, :key
if options != {}
Formatador.display_line("[yellow][WARN] options param is deprecated, use acl= instead[/] [light_black](#{caller.first})[/]")
end
options['x-goog-acl'] ||= @acl if @acl
options['Cache-Control'] = cache_control if cache_control
options['Content-Disposition'] = content_disposition if content_disposition
options['Content-Encoding'] = content_encoding if content_encoding
options['Content-MD5'] = content_md5 if content_md5
options['Content-Type'] = content_type if content_type
options['Expires'] = expires if expires
options.merge(metadata)
data = connection.put_object(directory.key, key, body, options)
merge_attributes(data.)
if body.is_a?(String)
self.content_length = body.size
else
self.content_length = ::File.size(body.path)
end
true
end
|
#url(expires) ⇒ Object
133
134
135
136
|
# File 'lib/fog/storage/models/google/file.rb', line 133
def url(expires)
requires :key
collection.get_url(key, expires)
end
|