Sha256: e1cc72f25839bffb7de1f75bfc6f2935f35a5ba33bdde29a2f07d83744aad7e0

Contents?: true

Size: 1.7 KB

Versions: 23

Compression:

Stored size: 1.7 KB

Contents

# Copyright 2021 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.


module Google
  module Cloud
    module Firestore
      ##
      # @private
      #
      # Represents a resource path to the Firestore API.
      #
      class ResourcePath
        include Comparable

        RESOURCE_PATH_RE = %r{^projects/([^/]*)/databases/([^/]*)(?:/documents/)?([\s\S]*)$}.freeze

        attr_reader :project_id
        attr_reader :database_id
        attr_reader :segments

        ##
        # Creates a resource path object.
        #
        # @param [Array<String>] segments One or more strings representing the resource path.
        #
        # @return [ResourcePath] The resource path object.
        #
        def initialize project_id, database_id, segments
          @project_id = project_id
          @database_id = database_id
          @segments = segments.split "/"
        end

        def <=> other
          return nil unless other.is_a? ResourcePath
          [project_id, database_id, segments] <=> [other.project_id, other.database_id, other.segments]
        end

        def self.from_path path
          data = RESOURCE_PATH_RE.match path
          new data[1], data[2], data[3]
        end
      end
    end
  end
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
google-cloud-firestore-2.16.0 lib/google/cloud/firestore/resource_path.rb
google-cloud-firestore-2.15.1 lib/google/cloud/firestore/resource_path.rb
google-cloud-firestore-2.15.0 lib/google/cloud/firestore/resource_path.rb
google-cloud-firestore-2.14.0 lib/google/cloud/firestore/resource_path.rb
google-cloud-firestore-2.13.1 lib/google/cloud/firestore/resource_path.rb
google-cloud-firestore-2.13.0 lib/google/cloud/firestore/resource_path.rb
google-cloud-firestore-2.12.0 lib/google/cloud/firestore/resource_path.rb
google-cloud-firestore-2.11.0 lib/google/cloud/firestore/resource_path.rb
google-cloud-firestore-2.10.1 lib/google/cloud/firestore/resource_path.rb
google-cloud-firestore-2.10.0 lib/google/cloud/firestore/resource_path.rb
google-cloud-firestore-2.9.1 lib/google/cloud/firestore/resource_path.rb
google-cloud-firestore-2.9.0 lib/google/cloud/firestore/resource_path.rb
google-cloud-firestore-2.8.0 lib/google/cloud/firestore/resource_path.rb
google-cloud-firestore-2.7.2 lib/google/cloud/firestore/resource_path.rb
google-cloud-firestore-2.7.1 lib/google/cloud/firestore/resource_path.rb
google-cloud-firestore-2.7.0 lib/google/cloud/firestore/resource_path.rb
google-cloud-firestore-2.6.6 lib/google/cloud/firestore/resource_path.rb
google-cloud-firestore-2.6.5 lib/google/cloud/firestore/resource_path.rb
google-cloud-firestore-2.6.4 lib/google/cloud/firestore/resource_path.rb
google-cloud-firestore-2.6.3 lib/google/cloud/firestore/resource_path.rb