2011-08-04 22:32:00 +00:00
|
|
|
# Copyright 2010 Google Inc.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
|
|
|
|
require 'addressable/uri'
|
|
|
|
|
|
|
|
require 'google/inflection'
|
|
|
|
require 'google/api_client/discovery/resource'
|
|
|
|
require 'google/api_client/discovery/method'
|
2012-03-02 01:23:36 +00:00
|
|
|
require 'google/api_client/discovery/media'
|
2011-12-02 13:43:55 +00:00
|
|
|
|
2011-08-04 22:32:00 +00:00
|
|
|
module Google
|
|
|
|
class APIClient
|
|
|
|
##
|
|
|
|
# A service that has been described by a discovery document.
|
|
|
|
class API
|
|
|
|
|
|
|
|
##
|
|
|
|
# Creates a description of a particular version of a service.
|
|
|
|
#
|
2012-09-28 19:07:11 +00:00
|
|
|
# @param [String] document_base
|
|
|
|
# Base URI for the service
|
|
|
|
# @param [Hash] discovery_document
|
2011-08-04 22:32:00 +00:00
|
|
|
# The section of the discovery document that applies to this service
|
|
|
|
# version.
|
|
|
|
#
|
|
|
|
# @return [Google::APIClient::API] The constructed service object.
|
|
|
|
def initialize(document_base, discovery_document)
|
|
|
|
@document_base = Addressable::URI.parse(document_base)
|
|
|
|
@discovery_document = discovery_document
|
2012-01-25 10:01:30 +00:00
|
|
|
metaclass = (class << self; self; end)
|
2012-01-31 07:28:55 +00:00
|
|
|
self.discovered_resources.each do |resource|
|
2011-08-04 22:32:00 +00:00
|
|
|
method_name = Google::INFLECTOR.underscore(resource.name).to_sym
|
|
|
|
if !self.respond_to?(method_name)
|
|
|
|
metaclass.send(:define_method, method_name) { resource }
|
|
|
|
end
|
|
|
|
end
|
2012-02-10 14:26:44 +00:00
|
|
|
self.discovered_methods.each do |method|
|
2011-08-04 22:32:00 +00:00
|
|
|
method_name = Google::INFLECTOR.underscore(method.name).to_sym
|
|
|
|
if !self.respond_to?(method_name)
|
|
|
|
metaclass.send(:define_method, method_name) { method }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2012-10-04 22:48:21 +00:00
|
|
|
|
|
|
|
# @return [String] unparsed discovery document for the API
|
|
|
|
attr_reader :discovery_document
|
2011-08-04 22:32:00 +00:00
|
|
|
|
|
|
|
##
|
|
|
|
# Returns the id of the service.
|
|
|
|
#
|
|
|
|
# @return [String] The service id.
|
|
|
|
def id
|
2011-08-10 20:48:22 +00:00
|
|
|
return (
|
|
|
|
@discovery_document['id'] ||
|
|
|
|
"#{self.name}:#{self.version}"
|
|
|
|
)
|
2011-08-04 22:32:00 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Returns the identifier for the service.
|
|
|
|
#
|
|
|
|
# @return [String] The service identifier.
|
|
|
|
def name
|
|
|
|
return @discovery_document['name']
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Returns the version of the service.
|
|
|
|
#
|
|
|
|
# @return [String] The service version.
|
|
|
|
def version
|
|
|
|
return @discovery_document['version']
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
2011-10-15 08:22:36 +00:00
|
|
|
# Returns a human-readable title for the API.
|
2011-08-04 22:32:00 +00:00
|
|
|
#
|
2011-10-15 08:22:36 +00:00
|
|
|
# @return [Hash] The API title.
|
|
|
|
def title
|
|
|
|
return @discovery_document['title']
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Returns a human-readable description of the API.
|
|
|
|
#
|
|
|
|
# @return [Hash] The API description.
|
2011-08-04 22:32:00 +00:00
|
|
|
def description
|
|
|
|
return @discovery_document['description']
|
|
|
|
end
|
|
|
|
|
2011-10-15 08:22:36 +00:00
|
|
|
##
|
|
|
|
# Returns a URI for the API documentation.
|
|
|
|
#
|
|
|
|
# @return [Hash] The API documentation.
|
|
|
|
def documentation
|
|
|
|
return Addressable::URI.parse(@discovery_document['documentationLink'])
|
|
|
|
end
|
|
|
|
|
2011-08-04 22:32:00 +00:00
|
|
|
##
|
|
|
|
# Returns true if this is the preferred version of this API.
|
|
|
|
#
|
|
|
|
# @return [TrueClass, FalseClass]
|
|
|
|
# Whether or not this is the preferred version of this API.
|
|
|
|
def preferred
|
2011-08-08 21:23:59 +00:00
|
|
|
return !!@discovery_document['preferred']
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Returns the list of API features.
|
|
|
|
#
|
|
|
|
# @return [Array]
|
|
|
|
# The features supported by this API.
|
|
|
|
def features
|
|
|
|
return @discovery_document['features'] || []
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Returns true if this API uses a data wrapper.
|
|
|
|
#
|
|
|
|
# @return [TrueClass, FalseClass]
|
|
|
|
# Whether or not this API uses a data wrapper.
|
|
|
|
def data_wrapper?
|
|
|
|
return self.features.include?('dataWrapper')
|
2011-08-04 22:32:00 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Returns the base URI for the discovery document.
|
|
|
|
#
|
|
|
|
# @return [Addressable::URI] The base URI.
|
|
|
|
attr_reader :document_base
|
|
|
|
|
|
|
|
##
|
|
|
|
# Returns the base URI for this version of the service.
|
|
|
|
#
|
|
|
|
# @return [Addressable::URI] The base URI that methods are joined to.
|
|
|
|
def method_base
|
|
|
|
if @discovery_document['basePath']
|
|
|
|
return @method_base ||= (
|
2012-03-02 01:23:36 +00:00
|
|
|
self.document_base.join(Addressable::URI.parse(@discovery_document['basePath']))
|
2011-08-04 22:32:00 +00:00
|
|
|
).normalize
|
|
|
|
else
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Updates the hierarchy of resources and methods with the new base.
|
|
|
|
#
|
2012-09-28 19:07:11 +00:00
|
|
|
# @param [Addressable::URI, #to_str, String] new_method_base
|
2011-08-04 22:32:00 +00:00
|
|
|
# The new base URI to use for the service.
|
|
|
|
def method_base=(new_method_base)
|
|
|
|
@method_base = Addressable::URI.parse(new_method_base)
|
2012-01-31 07:28:55 +00:00
|
|
|
self.discovered_resources.each do |resource|
|
2011-08-04 22:32:00 +00:00
|
|
|
resource.method_base = @method_base
|
|
|
|
end
|
2012-02-10 14:26:44 +00:00
|
|
|
self.discovered_methods.each do |method|
|
2011-08-04 22:32:00 +00:00
|
|
|
method.method_base = @method_base
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-05-16 19:05:24 +00:00
|
|
|
##
|
|
|
|
# Returns the base URI for batch calls to this service.
|
|
|
|
#
|
|
|
|
# @return [Addressable::URI] The base URI that methods are joined to.
|
|
|
|
def batch_path
|
|
|
|
if @discovery_document['batchPath']
|
|
|
|
return @batch_path ||= (
|
|
|
|
self.document_base.join(Addressable::URI.parse('/' +
|
|
|
|
@discovery_document['batchPath']))
|
|
|
|
).normalize
|
|
|
|
else
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-08-05 03:36:36 +00:00
|
|
|
##
|
|
|
|
# A list of schemas available for this version of the API.
|
|
|
|
#
|
|
|
|
# @return [Hash] A list of {Google::APIClient::Schema} objects.
|
|
|
|
def schemas
|
|
|
|
return @schemas ||= (
|
|
|
|
(@discovery_document['schemas'] || []).inject({}) do |accu, (k, v)|
|
2011-08-10 20:48:22 +00:00
|
|
|
accu[k] = Google::APIClient::Schema.parse(self, v)
|
2011-08-05 03:36:36 +00:00
|
|
|
accu
|
|
|
|
end
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2011-08-05 18:43:56 +00:00
|
|
|
##
|
|
|
|
# Returns a schema for a kind value.
|
|
|
|
#
|
|
|
|
# @return [Google::APIClient::Schema] The associated Schema object.
|
|
|
|
def schema_for_kind(kind)
|
|
|
|
api_name, schema_name = kind.split('#', 2)
|
|
|
|
if api_name != self.name
|
|
|
|
raise ArgumentError,
|
|
|
|
"The kind does not match this API. " +
|
|
|
|
"Expected '#{self.name}', got '#{api_name}'."
|
|
|
|
end
|
|
|
|
for k, v in self.schemas
|
|
|
|
return v if k.downcase == schema_name.downcase
|
|
|
|
end
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
|
2011-08-04 22:32:00 +00:00
|
|
|
##
|
|
|
|
# A list of resources available at the root level of this version of the
|
2011-08-05 03:36:36 +00:00
|
|
|
# API.
|
2011-08-04 22:32:00 +00:00
|
|
|
#
|
|
|
|
# @return [Array] A list of {Google::APIClient::Resource} objects.
|
2012-01-31 07:28:55 +00:00
|
|
|
def discovered_resources
|
2012-02-10 14:26:44 +00:00
|
|
|
return @discovered_resources ||= (
|
2011-08-04 22:32:00 +00:00
|
|
|
(@discovery_document['resources'] || []).inject([]) do |accu, (k, v)|
|
2011-08-05 03:36:36 +00:00
|
|
|
accu << Google::APIClient::Resource.new(
|
|
|
|
self, self.method_base, k, v
|
|
|
|
)
|
2011-08-04 22:32:00 +00:00
|
|
|
accu
|
|
|
|
end
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# A list of methods available at the root level of this version of the
|
2011-08-05 03:36:36 +00:00
|
|
|
# API.
|
2011-08-04 22:32:00 +00:00
|
|
|
#
|
|
|
|
# @return [Array] A list of {Google::APIClient::Method} objects.
|
2012-02-10 14:26:44 +00:00
|
|
|
def discovered_methods
|
|
|
|
return @discovered_methods ||= (
|
2011-08-04 22:32:00 +00:00
|
|
|
(@discovery_document['methods'] || []).inject([]) do |accu, (k, v)|
|
2011-08-05 03:36:36 +00:00
|
|
|
accu << Google::APIClient::Method.new(self, self.method_base, k, v)
|
2011-08-04 22:32:00 +00:00
|
|
|
accu
|
|
|
|
end
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2011-10-15 08:22:36 +00:00
|
|
|
##
|
|
|
|
# Allows deep inspection of the discovery document.
|
|
|
|
def [](key)
|
|
|
|
return @discovery_document[key]
|
|
|
|
end
|
|
|
|
|
2011-08-04 22:32:00 +00:00
|
|
|
##
|
|
|
|
# Converts the service to a flat mapping of RPC names and method objects.
|
|
|
|
#
|
|
|
|
# @return [Hash] All methods available on the service.
|
|
|
|
#
|
|
|
|
# @example
|
|
|
|
# # Discover available methods
|
|
|
|
# method_names = client.discovered_api('buzz').to_h.keys
|
|
|
|
def to_h
|
|
|
|
return @hash ||= (begin
|
|
|
|
methods_hash = {}
|
2012-02-10 14:26:44 +00:00
|
|
|
self.discovered_methods.each do |method|
|
2011-08-04 22:32:00 +00:00
|
|
|
methods_hash[method.id] = method
|
|
|
|
end
|
2012-01-31 07:28:55 +00:00
|
|
|
self.discovered_resources.each do |resource|
|
2011-08-04 22:32:00 +00:00
|
|
|
methods_hash.merge!(resource.to_h)
|
|
|
|
end
|
|
|
|
methods_hash
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Returns a <code>String</code> representation of the service's state.
|
|
|
|
#
|
|
|
|
# @return [String] The service's state, as a <code>String</code>.
|
|
|
|
def inspect
|
|
|
|
sprintf(
|
|
|
|
"#<%s:%#0x ID:%s>", self.class.to_s, self.object_id, self.id
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|