Sha256: 52d2f0d9d662d8042b25bd0356b8fbe62f05897d78a7ac4a41ecce4a50f89803

Contents?: true

Size: 718 Bytes

Versions: 5

Compression:

Stored size: 718 Bytes

Contents

module Ecoportal
  module API
    module Common
      module DocHelpers

        def get_body(doc)
          if doc.respond_to?(:as_update)
            doc.as_update
          elsif doc.respond_to?(:as_json)
            doc.as_json
          else
            doc
          end
        end

        def get_id(doc)
          id = nil
          id ||= doc.id if doc.respond_to?(:id)
          id ||= doc.external_id if doc.respond_to?(:external_id)
          id ||= doc["id"] if doc.is_a?(Hash)
          id ||= doc["external_id"] if doc.is_a?(Hash)
          id ||= doc if doc.is_a?(String)
          id or raise "No ID has been given!"
          id
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ecoportal-api-0.10.6 lib/ecoportal/api/common/doc_helpers.rb
ecoportal-api-0.10.5 lib/ecoportal/api/common/doc_helpers.rb
ecoportal-api-0.10.4 lib/ecoportal/api/common/doc_helpers.rb
ecoportal-api-0.10.3 lib/ecoportal/api/common/doc_helpers.rb
ecoportal-api-0.10.2 lib/ecoportal/api/common/doc_helpers.rb