Class: Gcloud::Storage::Bucket::Acl
- Inherits:
-
Object
- Object
- Gcloud::Storage::Bucket::Acl
- Defined in:
- lib/gcloud/storage/bucket/acl.rb
Overview
# Bucket Access Control List
Represents a Bucket’s Access Control List.
Constant Summary collapse
- RULES =
{ "authenticatedRead" => "authenticatedRead", "auth" => "authenticatedRead", "auth_read" => "authenticatedRead", "authenticated" => "authenticatedRead", "authenticated_read" => "authenticatedRead", "private" => "private", "projectPrivate" => "projectPrivate", "proj_private" => "projectPrivate", "project_private" => "projectPrivate", "publicRead" => "publicRead", "public" => "publicRead", "public_read" => "publicRead", "publicReadWrite" => "publicReadWrite", "public_write" => "publicReadWrite" }
Class Method Summary collapse
Instance Method Summary collapse
-
#add_owner(entity) ⇒ Object
Grants owner permission to the bucket.
-
#add_reader(entity) ⇒ Object
Grants reader permission to the bucket.
-
#add_writer(entity) ⇒ Object
Grants writer permission to the bucket.
-
#auth! ⇒ Object
(also: #authenticatedRead!, #auth_read!, #authenticated!, #authenticated_read!)
Convenience method to apply the ‘authenticatedRead` predefined ACL rule to the bucket.
-
#delete(entity) ⇒ Object
Permanently deletes the entity from the bucket’s access control list.
-
#initialize(bucket) ⇒ Acl
constructor
Must provide a valid Bucket object.
-
#owners ⇒ Array<String>
Lists the owners of the bucket.
-
#private! ⇒ Object
Convenience method to apply the ‘private` predefined ACL rule to the bucket.
-
#project_private! ⇒ Object
(also: #projectPrivate!)
Convenience method to apply the ‘projectPrivate` predefined ACL rule to the bucket.
-
#public! ⇒ Object
(also: #publicRead!, #public_read!)
Convenience method to apply the ‘publicRead` predefined ACL rule to the bucket.
-
#public_write! ⇒ Object
(also: #publicReadWrite!)
Convenience method to apply the ‘publicReadWrite` predefined ACL rule to the bucket.
-
#readers ⇒ Array<String>
Lists the readers of the bucket.
-
#reload! ⇒ Object
(also: #refresh!)
Reloads all Access Control List data for the bucket.
-
#writers ⇒ Array<String>
Lists the owners of the bucket.
Constructor Details
#initialize(bucket) ⇒ Acl
Must provide a valid Bucket object.
54 55 56 57 58 59 60 |
# File 'lib/gcloud/storage/bucket/acl.rb', line 54 def initialize bucket @bucket = bucket.name @service = bucket.service @owners = nil @writers = nil @readers = nil end |
Class Method Details
.predefined_rule_for(rule_name) ⇒ Object
311 312 313 |
# File 'lib/gcloud/storage/bucket/acl.rb', line 311 def self.predefined_rule_for rule_name RULES[rule_name.to_s] end |
Instance Method Details
#add_owner(entity) ⇒ Object
Grants owner permission to the bucket.
181 182 183 184 185 186 |
# File 'lib/gcloud/storage/bucket/acl.rb', line 181 def add_owner entity gapi = @service.insert_bucket_acl @bucket, entity, "OWNER" entity = gapi.entity @owners.push entity unless @owners.nil? entity end |
#add_reader(entity) ⇒ Object
Grants reader permission to the bucket.
269 270 271 272 273 274 |
# File 'lib/gcloud/storage/bucket/acl.rb', line 269 def add_reader entity gapi = @service.insert_bucket_acl @bucket, entity, "READER" entity = gapi.entity @readers.push entity unless @readers.nil? entity end |
#add_writer(entity) ⇒ Object
Grants writer permission to the bucket.
225 226 227 228 229 230 |
# File 'lib/gcloud/storage/bucket/acl.rb', line 225 def add_writer entity gapi = @service.insert_bucket_acl @bucket, entity, "WRITER" entity = gapi.entity @writers.push entity unless @writers.nil? entity end |
#auth! ⇒ Object Also known as: authenticatedRead!, auth_read!, authenticated!, authenticated_read!
Convenience method to apply the ‘authenticatedRead` predefined ACL rule to the bucket.
331 332 333 |
# File 'lib/gcloud/storage/bucket/acl.rb', line 331 def auth! update_predefined_acl! "authenticatedRead" end |
#delete(entity) ⇒ Object
Permanently deletes the entity from the bucket’s access control list.
302 303 304 305 306 307 308 |
# File 'lib/gcloud/storage/bucket/acl.rb', line 302 def delete entity @service.delete_bucket_acl @bucket, entity @owners.delete entity unless @owners.nil? @writers.delete entity unless @writers.nil? @readers.delete entity unless @readers.nil? true end |
#owners ⇒ Array<String>
Lists the owners of the bucket.
99 100 101 102 |
# File 'lib/gcloud/storage/bucket/acl.rb', line 99 def owners reload! if @owners.nil? @owners end |
#private! ⇒ Object
Convenience method to apply the ‘private` predefined ACL rule to the bucket.
353 354 355 |
# File 'lib/gcloud/storage/bucket/acl.rb', line 353 def private! update_predefined_acl! "private" end |
#project_private! ⇒ Object Also known as: projectPrivate!
Convenience method to apply the ‘projectPrivate` predefined ACL rule to the bucket.
371 372 373 |
# File 'lib/gcloud/storage/bucket/acl.rb', line 371 def project_private! update_predefined_acl! "projectPrivate" end |
#public! ⇒ Object Also known as: publicRead!, public_read!
Convenience method to apply the ‘publicRead` predefined ACL rule to the bucket.
390 391 392 |
# File 'lib/gcloud/storage/bucket/acl.rb', line 390 def public! update_predefined_acl! "publicRead" end |
#public_write! ⇒ Object Also known as: publicReadWrite!
Convenience method to apply the ‘publicReadWrite` predefined ACL rule to the bucket.
409 410 411 |
# File 'lib/gcloud/storage/bucket/acl.rb', line 409 def public_write! update_predefined_acl! "publicReadWrite" end |
#readers ⇒ Array<String>
Lists the readers of the bucket.
139 140 141 142 |
# File 'lib/gcloud/storage/bucket/acl.rb', line 139 def readers reload! if @readers.nil? @readers end |
#reload! ⇒ Object Also known as: refresh!
Reloads all Access Control List data for the bucket.
75 76 77 78 79 80 81 |
# File 'lib/gcloud/storage/bucket/acl.rb', line 75 def reload! gapi = @service.list_bucket_acls @bucket acls = Array(gapi.items) @owners = entities_from_acls acls, "OWNER" @writers = entities_from_acls acls, "WRITER" @readers = entities_from_acls acls, "READER" end |
#writers ⇒ Array<String>
Lists the owners of the bucket.
119 120 121 122 |
# File 'lib/gcloud/storage/bucket/acl.rb', line 119 def writers reload! if @writers.nil? @writers end |