# Copyright 2017 Google LLC # # 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 # # https://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. require "google-cloud-firestore" require "google/cloud/firestore/client" require "google/cloud/config" require "google/cloud/env" module Google module Cloud ## # # Cloud Firestore # # Cloud Firestore is a NoSQL document database built for automatic scaling, # high performance, and ease of application development. While the Cloud # Firestore interface has many of the same features as traditional # databases, as a NoSQL database it differs from them in the way it # describes relationships between data objects. # # See {file:OVERVIEW.md Firestore Overview}. # module Firestore # rubocop:disable Metrics/AbcSize ## # Creates a new object for connecting to the Firestore service. # Each call creates a new connection. # # For more information on connecting to Google Cloud see the # {file:AUTHENTICATION.md Authentication Guide}. # # @param [String] project_id Identifier for a Firestore project. If not # present, the default project for the credentials is used. # @param [String, Hash, Google::Auth::Credentials] credentials The path to # the keyfile as a String, the contents of the keyfile as a Hash, or a # Google::Auth::Credentials object. (See {Firestore::Credentials}) # @param [String, Array] scope The OAuth 2.0 scopes controlling # the set of resources and operations that the connection can access. # See [Using OAuth 2.0 to Access Google # APIs](https://developers.google.com/identity/protocols/OAuth2). # # The default scope is: # # * `https://www.googleapis.com/auth/datastore` # @param [Integer] timeout Default timeout to use in requests. Optional. # @param [String] endpoint Override of the endpoint host name. Optional. # If the param is nil, uses the default endpoint. # @param [String] emulator_host Firestore emulator host. Optional. # If the param is nil, uses the value of the `emulator_host` config. # @param [String] database_id Identifier for a Firestore database. If not # present, the default database of the project is used. # @param [:grpc,:rest] transport Which transport to use to communicate # with the server. Defaults to `:grpc`. # @param [String] project Alias for the `project_id` argument. Deprecated. # @param [String] keyfile Alias for the `credentials` argument. # Deprecated. # # @return [Google::Cloud::Firestore::Client] # # @example # require "google/cloud/firestore" # # firestore = Google::Cloud::Firestore.new # def self.new project_id: nil, credentials: nil, scope: nil, timeout: nil, endpoint: nil, emulator_host: nil, database_id: nil, transport: nil, project: nil, keyfile: nil project_id ||= (project || default_project_id) scope ||= configure.scope timeout ||= configure.timeout endpoint ||= configure.endpoint emulator_host ||= configure.emulator_host database_id ||= configure.database_id transport ||= configure.transport if emulator_host project_id = project_id.to_s raise ArgumentError, "project_id is missing" if project_id.empty? service = Firestore::Service.new project_id, :this_channel_is_insecure, host: emulator_host, timeout: timeout, database: database_id, transport: transport return Firestore::Client.new service end credentials ||= (keyfile || default_credentials(scope: scope)) unless credentials.is_a? Google::Auth::Credentials credentials = Firestore::Credentials.new credentials, scope: scope end if credentials.respond_to? :project_id project_id ||= credentials.project_id end project_id = project_id.to_s raise ArgumentError, "project_id is missing" if project_id.empty? service = Firestore::Service.new project_id, credentials, host: endpoint, timeout: timeout, database: database_id, transport: transport Firestore::Client.new service end # rubocop:enable Metrics/AbcSize ## # Configure the Google Cloud Firestore library. # # The following Firestore configuration parameters are supported: # # * `project_id` - (String) Identifier for a Firestore project. (The # parameter `project` is considered deprecated, but may also be used.) # * `credentials` - (String, Hash, Google::Auth::Credentials) The path to # the keyfile as a String, the contents of the keyfile as a Hash, or a # Google::Auth::Credentials object. (See {Firestore::Credentials}) (The # parameter `keyfile` is considered deprecated, but may also be used.) # * `scope` - (String, Array) The OAuth 2.0 scopes controlling # the set of resources and operations that the connection can access. # * `quota_project` - (String) The project ID for a project that can be # used by client libraries for quota and billing purposes. # * `timeout` - (Integer) Default timeout to use in requests. # * `endpoint` - (String) Override of the endpoint host name, or `nil` # to use the default endpoint. # * `emulator_host` - (String) Host name of the emulator. Defaults to # `ENV["FIRESTORE_EMULATOR_HOST"]` # # @return [Google::Cloud::Config] The configuration object the # Google::Cloud::Firestore library uses. # def self.configure yield Google::Cloud.configure.firestore if block_given? Google::Cloud.configure.firestore end ## # @private Default project. def self.default_project_id Google::Cloud.configure.firestore.project_id || Google::Cloud.configure.project_id || Google::Cloud.env.project_id end ## # @private Default credentials. def self.default_credentials scope: nil Google::Cloud.configure.firestore.credentials || Google::Cloud.configure.credentials || Firestore::Credentials.default(scope: scope) end end end end