Class: Fog::Google::Storage::Directory
- Inherits:
-
Model
- Object
- Model
- Fog::Google::Storage::Directory
show all
- Extended by:
- Deprecation
- Defined in:
- lib/fog/storage/models/google/directory.rb
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
17
18
19
20
21
22
23
|
# File 'lib/fog/storage/models/google/directory.rb', line 17
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
|
#destroy ⇒ Object
25
26
27
28
29
30
31
|
# File 'lib/fog/storage/models/google/directory.rb', line 25
def destroy
requires :key
connection.delete_bucket(key)
true
rescue Excon::Errors::NotFound
false
end
|
#files ⇒ Object
33
34
35
36
37
38
39
40
|
# File 'lib/fog/storage/models/google/directory.rb', line 33
def files
@files ||= begin
Fog::Google::Storage::Files.new(
:directory => self,
:connection => connection
)
end
end
|
#public=(new_public) ⇒ Object
42
43
44
45
46
47
48
49
|
# File 'lib/fog/storage/models/google/directory.rb', line 42
def public=(new_public)
if new_public
@acl = 'public-read'
else
@acl = 'private'
end
new_public
end
|
#public_url ⇒ Object
51
52
53
54
55
56
57
58
59
60
61
62
|
# File 'lib/fog/storage/models/google/directory.rb', line 51
def public_url
requires :key
if connection.get_bucket_acl(key).body['AccessControlList'].detect {|entry| entry['Scope']['type'] == 'AllUsers' && entry['Permission'] == 'READ'}
if key.to_s =~ /^(?:[a-z]|\d(?!\d{0,2}(?:\.\d{1,3}){3}$))(?:[a-z0-9]|\.(?![\.\-])|\-(?![\.])){1,61}[a-z0-9]$/
"https://#{key}.commondatastorage.googleapis.com"
else
"https://commondatastorage.googleapis.com/#{key}"
end
else
nil
end
end
|
#save ⇒ Object
64
65
66
67
68
69
70
71
72
73
74
75
|
# File 'lib/fog/storage/models/google/directory.rb', line 64
def save
requires :key
options = {}
if @acl
options['x-goog-acl'] = @acl
end
if @location
options['LocationConstraint'] = @location
end
connection.put_bucket(key, options)
true
end
|