1 # Copyright 2010 Google Inc.
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
7 # http://www.apache.org/licenses/LICENSE-2.0
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
16 require 'addressable/uri'
18 require 'google/inflection'
19 require 'google/api_client/discovery/resource'
20 require 'google/api_client/discovery/method'
25 # A service that has been described by a discovery document.
29 # Creates a description of a particular version of a service.
32 # The identifier for the service. Note that while this frequently
33 # matches the first segment of all of the service's RPC names, this
34 # should not be assumed. There is no requirement that these match.
35 # @param [String] version
36 # The identifier for the service version.
37 # @param [Hash] api_description
38 # The section of the discovery document that applies to this service
41 # @return [Google::APIClient::API] The constructed service object.
42 def initialize(document_base, discovery_document)
43 @document_base = Addressable::URI.parse(document_base)
44 @discovery_document = discovery_document
45 metaclass = (class <<self; self; end)
46 self.resources.each do |resource|
47 method_name = Google::INFLECTOR.underscore(resource.name).to_sym
48 if !self.respond_to?(method_name)
49 metaclass.send(:define_method, method_name) { resource }
52 self.methods.each do |method|
53 method_name = Google::INFLECTOR.underscore(method.name).to_sym
54 if !self.respond_to?(method_name)
55 metaclass.send(:define_method, method_name) { method }
61 # Returns the id of the service.
63 # @return [String] The service id.
65 return @discovery_document['id']
69 # Returns the identifier for the service.
71 # @return [String] The service identifier.
73 return @discovery_document['name']
77 # Returns the version of the service.
79 # @return [String] The service version.
81 return @discovery_document['version']
85 # Returns a human-readable title for the API.
87 # @return [Hash] The API title.
89 return @discovery_document['title']
93 # Returns a human-readable description of the API.
95 # @return [Hash] The API description.
97 return @discovery_document['description']
101 # Returns a URI for the API documentation.
103 # @return [Hash] The API documentation.
105 return Addressable::URI.parse(@discovery_document['documentationLink'])
109 # Returns true if this is the preferred version of this API.
111 # @return [TrueClass, FalseClass]
112 # Whether or not this is the preferred version of this API.
114 return !!@discovery_document['preferred']
118 # Returns the list of API features.
121 # The features supported by this API.
123 return @discovery_document['features'] || []
127 # Returns true if this API uses a data wrapper.
129 # @return [TrueClass, FalseClass]
130 # Whether or not this API uses a data wrapper.
132 return self.features.include?('dataWrapper')
136 # Returns the base URI for the discovery document.
138 # @return [Addressable::URI] The base URI.
139 attr_reader :document_base
142 # Returns the base URI for this version of the service.
144 # @return [Addressable::URI] The base URI that methods are joined to.
146 if @discovery_document['basePath']
147 return @method_base ||= (
149 Addressable::URI.parse(@discovery_document['basePath'])
157 # Updates the hierarchy of resources and methods with the new base.
159 # @param [Addressable::URI, #to_str, String] new_base
160 # The new base URI to use for the service.
161 def method_base=(new_method_base)
162 @method_base = Addressable::URI.parse(new_method_base)
163 self.resources.each do |resource|
164 resource.method_base = @method_base
166 self.methods.each do |method|
167 method.method_base = @method_base
172 # A list of resources available at the root level of this version of the
175 # @return [Array] A list of {Google::APIClient::Resource} objects.
177 return @resources ||= (
178 (@discovery_document['resources'] || []).inject([]) do |accu, (k, v)|
179 accu << Google::APIClient::Resource.new(self.method_base, k, v)
186 # A list of methods available at the root level of this version of the
189 # @return [Array] A list of {Google::APIClient::Method} objects.
191 return @methods ||= (
192 (@discovery_document['methods'] || []).inject([]) do |accu, (k, v)|
193 accu << Google::APIClient::Method.new(self.method_base, k, v)
200 # Allows deep inspection of the discovery document.
202 return @discovery_document[key]
206 # Converts the service to a flat mapping of RPC names and method objects.
208 # @return [Hash] All methods available on the service.
211 # # Discover available methods
212 # method_names = client.discovered_api('buzz').to_h.keys
214 return @hash ||= (begin
216 self.methods.each do |method|
217 methods_hash[method.id] = method
219 self.resources.each do |resource|
220 methods_hash.merge!(resource.to_h)
227 # Returns a <code>String</code> representation of the service's state.
229 # @return [String] The service's state, as a <code>String</code>.
232 "#<%s:%#0x ID:%s>", self.class.to_s, self.object_id, self.id