#-- # Copyright 2015 Google Inc. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. module Gcloud module Storage class File ## # = File Access Control List # # Represents a File's Access Control List. # # require "gcloud" # # gcloud = Gcloud.new # storage = gcloud.storage # # bucket = storage.bucket "my-bucket" # # file = bucket.file "path/to/my-file.ext" # file.acl.readers.each { |reader| puts reader } # class Acl RULES = { "authenticatedRead" => "authenticatedRead", "auth" => "authenticatedRead", "auth_read" => "authenticatedRead", "authenticated" => "authenticatedRead", "authenticated_read" => "authenticatedRead", "bucketOwnerFullControl" => "bucketOwnerFullControl", "owner_full" => "bucketOwnerFullControl", "bucketOwnerRead" => "bucketOwnerRead", "owner_read" => "bucketOwnerRead", "private" => "private", "projectPrivate" => "projectPrivate", "project_private" => "projectPrivate", "publicRead" => "publicRead", "public" => "publicRead", "public_read" => "publicRead" } #:nodoc: ## # Initialized a new Acl object. # Must provide a valid Bucket object. def initialize file #:nodoc: @bucket = file.bucket @file = file.name @connection = file.connection @owners = nil @writers = nil @readers = nil end ## # Reloads all Access Control List data for the file. # # === Example # # require "gcloud" # # gcloud = Gcloud.new # storage = gcloud.storage # # bucket = storage.bucket "my-bucket" # # file = bucket.file "path/to/my-file.ext" # file.acl.refresh! # def refresh! resp = @connection.list_file_acls @bucket, @file acls = resp.data["items"] @owners = entities_from_acls acls, "OWNER" @writers = entities_from_acls acls, "WRITER" @readers = entities_from_acls acls, "READER" end ## # Lists the owners of the file. # # === Returns # # Array of Strings # # === Example # # require "gcloud" # # gcloud = Gcloud.new # storage = gcloud.storage # # bucket = storage.bucket "my-bucket" # # file = bucket.file "path/to/my-file.ext" # file.acl.owners.each { |owner| puts owner } # def owners refresh! if @owners.nil? @owners end ## # Lists the owners of the file. # # === Returns # # Array of Strings # # === Example # # require "gcloud" # # gcloud = Gcloud.new # storage = gcloud.storage # # bucket = storage.bucket "my-bucket" # # file = bucket.file "path/to/my-file.ext" # file.acl.writers.each { |writer| puts writer } # def writers refresh! if @writers.nil? @writers end ## # Lists the readers of the file. # # === Returns # # Array of Strings # # === Example # # require "gcloud" # # gcloud = Gcloud.new # storage = gcloud.storage # # bucket = storage.bucket "my-bucket" # # file = bucket.file "path/to/my-file.ext" # file.acl.readers.each { |reader| puts reader } # def readers refresh! if @readers.nil? @readers end ## # Grants owner permission to the file. # # === Parameters # # +entity+:: # The entity holding the permission, in one of the following forms: # (+String+) # # * user-userId # * user-email # * group-groupId # * group-email # * domain-domain # * project-team-projectId # * allUsers # * allAuthenticatedUsers # # +options+:: # An optional Hash for controlling additional behavior. (+Hash+) # options[:generation]:: # When present, selects a specific revision of this object. # Default is the latest version. (+Integer+) # # === Examples # # Access to a file can be granted to a user by appending +"user-"+ to # the email address: # # require "gcloud" # # gcloud = Gcloud.new # storage = gcloud.storage # # bucket = storage.bucket "my-bucket" # # file = bucket.file "path/to/my-file.ext" # email = "heidi@example.net" # file.acl.add_owner "user-#{email}" # # Access to a file can be granted to a group by appending +"group-"+ to # the email address: # # require "gcloud" # # gcloud = Gcloud.new # storage = gcloud.storage # # bucket = storage.bucket "my-bucket" # # file = bucket.file "path/to/my-file.ext" # email = "authors@example.net" # file.acl.add_owner "group-#{email}" # def add_owner entity, options = {} resp = @connection.insert_file_acl @bucket, @file, entity, "OWNER", options if resp.success? entity = resp.data["entity"] @owners.push entity unless @owners.nil? return entity end nil end ## # Grants writer permission to the file. # # === Parameters # # +entity+:: # The entity holding the permission, in one of the following forms: # (+String+) # # * user-userId # * user-email # * group-groupId # * group-email # * domain-domain # * project-team-projectId # * allUsers # * allAuthenticatedUsers # # +options+:: # An optional Hash for controlling additional behavior. (+Hash+) # options[:generation]:: # When present, selects a specific revision of this object. # Default is the latest version. (+Integer+) # # === Examples # # Access to a file can be granted to a user by appending +"user-"+ to # the email address: # # require "gcloud" # # gcloud = Gcloud.new # storage = gcloud.storage # # bucket = storage.bucket "my-bucket" # # file = bucket.file "path/to/my-file.ext" # email = "heidi@example.net" # file.acl.add_writer "user-#{email}" # # Access to a file can be granted to a group by appending +"group-"+ to # the email address: # # require "gcloud" # # gcloud = Gcloud.new # storage = gcloud.storage # # bucket = storage.bucket "my-bucket" # # file = bucket.file "path/to/my-file.ext" # email = "authors@example.net" # file.acl.add_writer "group-#{email}" # def add_writer entity, options = {} resp = @connection.insert_file_acl @bucket, @file, entity, "WRITER", options if resp.success? entity = resp.data["entity"] @writers.push entity unless @writers.nil? return entity end nil end ## # Grants reader permission to the file. # # === Parameters # # +entity+:: # The entity holding the permission, in one of the following forms: # (+String+) # # * user-userId # * user-email # * group-groupId # * group-email # * domain-domain # * project-team-projectId # * allUsers # * allAuthenticatedUsers # # +options+:: # An optional Hash for controlling additional behavior. (+Hash+) # options[:generation]:: # When present, selects a specific revision of this object. # Default is the latest version. (+Integer+) # # === Examples # # Access to a file can be granted to a user by appending +"user-"+ to # the email address: # # require "gcloud" # # gcloud = Gcloud.new # storage = gcloud.storage # # bucket = storage.bucket "my-bucket" # # file = bucket.file "path/to/my-file.ext" # email = "heidi@example.net" # file.acl.add_reader "user-#{email}" # # Access to a file can be granted to a group by appending +"group-"+ to # the email address: # # require "gcloud" # # gcloud = Gcloud.new # storage = gcloud.storage # # bucket = storage.bucket "my-bucket" # # file = bucket.file "path/to/my-file.ext" # email = "authors@example.net" # file.acl.add_reader "group-#{email}" # def add_reader entity, options = {} resp = @connection.insert_file_acl @bucket, @file, entity, "READER", options if resp.success? entity = resp.data["entity"] @readers.push entity unless @readers.nil? return entity end nil end ## # Permenently deletes the entity from the file's access control list. # # === Parameters # # +entity+:: # The entity holding the permission, in one of the following forms: # (+String+) # # * user-userId # * user-email # * group-groupId # * group-email # * domain-domain # * project-team-projectId # * allUsers # * allAuthenticatedUsers # # +options+:: # An optional Hash for controlling additional behavior. (+Hash+) # options[:generation]:: # When present, selects a specific revision of this object. # Default is the latest version. (+Integer+) # # === Example # # require "gcloud" # # gcloud = Gcloud.new # storage = gcloud.storage # # bucket = storage.bucket "my-bucket" # # file = bucket.file "path/to/my-file.ext" # email = "heidi@example.net" # file.acl.delete "user-#{email}" # def delete entity, options = {} resp = @connection.delete_file_acl @bucket, @file, entity, options if resp.success? @owners.delete entity unless @owners.nil? @writers.delete entity unless @writers.nil? @readers.delete entity unless @readers.nil? return true end false end def self.predefined_rule_for rule_name #:nodoc: RULES[rule_name.to_s] end # Predefined ACL helpers ## # Convenience method to apply the +authenticatedRead+ predefined ACL # rule to the file. # # === Example # # require "gcloud" # # gcloud = Gcloud.new # storage = gcloud.storage # # bucket = storage.bucket "my-bucket" # # file = bucket.file "path/to/my-file.ext" # file.acl.auth! # def auth! update_predefined_acl! "authenticatedRead" end alias_method :authenticatedRead!, :auth! alias_method :auth_read!, :auth! alias_method :authenticated!, :auth! alias_method :authenticated_read!, :auth! ## # Convenience method to apply the +bucketOwnerFullControl+ predefined # ACL rule to the file. # # === Example # # require "gcloud" # # gcloud = Gcloud.new # storage = gcloud.storage # # bucket = storage.bucket "my-bucket" # # file = bucket.file "path/to/my-file.ext" # file.acl.owner_full! # def owner_full! update_predefined_acl! "bucketOwnerFullControl" end alias_method :bucketOwnerFullControl!, :owner_full! ## # Convenience method to apply the +bucketOwnerRead+ predefined ACL # rule to the file. # # === Example # # require "gcloud" # # gcloud = Gcloud.new # storage = gcloud.storage # # bucket = storage.bucket "my-bucket" # # file = bucket.file "path/to/my-file.ext" # file.acl.owner_read! # def owner_read! update_predefined_acl! "bucketOwnerRead" end alias_method :bucketOwnerRead!, :owner_read! ## # Convenience method to apply the +private+ predefined ACL # rule to the file. # # === Example # # require "gcloud" # # gcloud = Gcloud.new # storage = gcloud.storage # # bucket = storage.bucket "my-bucket" # # file = bucket.file "path/to/my-file.ext" # file.acl.private! # def private! update_predefined_acl! "private" end ## # Convenience method to apply the +projectPrivate+ predefined ACL # rule to the file. # # === Example # # require "gcloud" # # gcloud = Gcloud.new # storage = gcloud.storage # # bucket = storage.bucket "my-bucket" # # file = bucket.file "path/to/my-file.ext" # file.acl.project_private! # def project_private! update_predefined_acl! "projectPrivate" end alias_method :projectPrivate!, :project_private! ## # Convenience method to apply the +publicRead+ predefined ACL # rule to the file. # # === Example # # require "gcloud" # # gcloud = Gcloud.new # storage = gcloud.storage # # bucket = storage.bucket "my-bucket" # # file = bucket.file "path/to/my-file.ext" # file.acl.public! # def public! update_predefined_acl! "publicRead" end alias_method :publicRead!, :public! alias_method :public_read!, :public! protected def update_predefined_acl! acl_role resp = @connection.patch_file @bucket, @file, acl: acl_role resp.success? end def entities_from_acls acls, role selected = acls.select { |acl| acl["role"] == role } entities = selected.map { |acl| acl["entity"] } entities end end end end end