Use ActiveSupport instead of extlib
[arvados.git] / lib / google / api_client / discovery / api.rb
1 # Copyright 2010 Google Inc.
2 #
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
6 #
7 #      http://www.apache.org/licenses/LICENSE-2.0
8 #
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.
14
15
16 require 'addressable/uri'
17 require 'multi_json'
18 require 'active_support/inflector'
19 require 'google/api_client/discovery/resource'
20 require 'google/api_client/discovery/method'
21 require 'google/api_client/discovery/media'
22
23 module Google
24   class APIClient
25     ##
26     # A service that has been described by a discovery document.
27     class API
28
29       ##
30       # Creates a description of a particular version of a service.
31       #
32       # @param [String] document_base
33       #   Base URI for the service
34       # @param [Hash] discovery_document
35       #   The section of the discovery document that applies to this service
36       #   version.
37       #
38       # @return [Google::APIClient::API] The constructed service object.
39       def initialize(document_base, discovery_document)
40         @document_base = Addressable::URI.parse(document_base)
41         @discovery_document = discovery_document
42         metaclass = (class << self; self; end)
43         self.discovered_resources.each do |resource|
44           method_name = ActiveSupport::Inflector.underscore(resource.name).to_sym
45           if !self.respond_to?(method_name)
46             metaclass.send(:define_method, method_name) { resource }
47           end
48         end
49         self.discovered_methods.each do |method|
50           method_name = ActiveSupport::Inflector.underscore(method.name).to_sym
51           if !self.respond_to?(method_name)
52             metaclass.send(:define_method, method_name) { method }
53           end
54         end
55       end
56       
57       # @return [String] unparsed discovery document for the API
58       attr_reader :discovery_document
59
60       ##
61       # Returns the id of the service.
62       #
63       # @return [String] The service id.
64       def id
65         return (
66           @discovery_document['id'] ||
67           "#{self.name}:#{self.version}"
68         )
69       end
70
71       ##
72       # Returns the identifier for the service.
73       #
74       # @return [String] The service identifier.
75       def name
76         return @discovery_document['name']
77       end
78
79       ##
80       # Returns the version of the service.
81       #
82       # @return [String] The service version.
83       def version
84         return @discovery_document['version']
85       end
86
87       ##
88       # Returns a human-readable title for the API.
89       #
90       # @return [Hash] The API title.
91       def title
92         return @discovery_document['title']
93       end
94
95       ##
96       # Returns a human-readable description of the API.
97       #
98       # @return [Hash] The API description.
99       def description
100         return @discovery_document['description']
101       end
102
103       ##
104       # Returns a URI for the API documentation.
105       #
106       # @return [Hash] The API documentation.
107       def documentation
108         return Addressable::URI.parse(@discovery_document['documentationLink'])
109       end
110
111       ##
112       # Returns true if this is the preferred version of this API.
113       #
114       # @return [TrueClass, FalseClass]
115       #   Whether or not this is the preferred version of this API.
116       def preferred
117         return !!@discovery_document['preferred']
118       end
119
120       ##
121       # Returns the list of API features.
122       #
123       # @return [Array]
124       #   The features supported by this API.
125       def features
126         return @discovery_document['features'] || []
127       end
128
129       ##
130       # Returns true if this API uses a data wrapper.
131       #
132       # @return [TrueClass, FalseClass]
133       #   Whether or not this API uses a data wrapper.
134       def data_wrapper?
135         return self.features.include?('dataWrapper')
136       end
137
138       ##
139       # Returns the base URI for the discovery document.
140       #
141       # @return [Addressable::URI] The base URI.
142       attr_reader :document_base
143
144       ##
145       # Returns the base URI for this version of the service.
146       #
147       # @return [Addressable::URI] The base URI that methods are joined to.
148       def method_base
149         if @discovery_document['basePath']
150           return @method_base ||= (
151             self.document_base.join(Addressable::URI.parse(@discovery_document['basePath']))
152           ).normalize
153         else
154           return nil
155         end
156       end
157
158       ##
159       # Updates the hierarchy of resources and methods with the new base.
160       #
161       # @param [Addressable::URI, #to_str, String] new_method_base
162       #   The new base URI to use for the service.
163       def method_base=(new_method_base)
164         @method_base = Addressable::URI.parse(new_method_base)
165         self.discovered_resources.each do |resource|
166           resource.method_base = @method_base
167         end
168         self.discovered_methods.each do |method|
169           method.method_base = @method_base
170         end
171       end
172
173       ##
174       # Returns the base URI for batch calls to this service.
175       #
176       # @return [Addressable::URI] The base URI that methods are joined to.
177       def batch_path
178         if @discovery_document['batchPath']
179           return @batch_path ||= (
180             self.document_base.join(Addressable::URI.parse('/' +
181                 @discovery_document['batchPath']))
182           ).normalize
183         else
184           return nil
185         end
186       end
187
188       ##
189       # A list of schemas available for this version of the API.
190       #
191       # @return [Hash] A list of {Google::APIClient::Schema} objects.
192       def schemas
193         return @schemas ||= (
194           (@discovery_document['schemas'] || []).inject({}) do |accu, (k, v)|
195             accu[k] = Google::APIClient::Schema.parse(self, v)
196             accu
197           end
198         )
199       end
200
201       ##
202       # Returns a schema for a kind value.
203       #
204       # @return [Google::APIClient::Schema] The associated Schema object.
205       def schema_for_kind(kind)
206         api_name, schema_name = kind.split('#', 2)
207         if api_name != self.name
208           raise ArgumentError,
209             "The kind does not match this API. " +
210             "Expected '#{self.name}', got '#{api_name}'."
211         end
212         for k, v in self.schemas
213           return v if k.downcase == schema_name.downcase
214         end
215         return nil
216       end
217
218       ##
219       # A list of resources available at the root level of this version of the
220       # API.
221       #
222       # @return [Array] A list of {Google::APIClient::Resource} objects.
223       def discovered_resources
224         return @discovered_resources ||= (
225           (@discovery_document['resources'] || []).inject([]) do |accu, (k, v)|
226             accu << Google::APIClient::Resource.new(
227               self, self.method_base, k, v
228             )
229             accu
230           end
231         )
232       end
233
234       ##
235       # A list of methods available at the root level of this version of the
236       # API.
237       #
238       # @return [Array] A list of {Google::APIClient::Method} objects.
239       def discovered_methods
240         return @discovered_methods ||= (
241           (@discovery_document['methods'] || []).inject([]) do |accu, (k, v)|
242             accu << Google::APIClient::Method.new(self, self.method_base, k, v)
243             accu
244           end
245         )
246       end
247
248       ##
249       # Allows deep inspection of the discovery document.
250       def [](key)
251         return @discovery_document[key]
252       end
253
254       ##
255       # Converts the service to a flat mapping of RPC names and method objects.
256       #
257       # @return [Hash] All methods available on the service.
258       #
259       # @example
260       #   # Discover available methods
261       #   method_names = client.discovered_api('buzz').to_h.keys
262       def to_h
263         return @hash ||= (begin
264           methods_hash = {}
265           self.discovered_methods.each do |method|
266             methods_hash[method.id] = method
267           end
268           self.discovered_resources.each do |resource|
269             methods_hash.merge!(resource.to_h)
270           end
271           methods_hash
272         end)
273       end
274
275       ##
276       # Returns a <code>String</code> representation of the service's state.
277       #
278       # @return [String] The service's state, as a <code>String</code>.
279       def inspect
280         sprintf(
281           "#<%s:%#0x ID:%s>", self.class.to_s, self.object_id, self.id
282         )
283       end
284       
285       ##
286       # Marshalling support - serialize the API to a string (doc base + original 
287       # discovery document).
288       def _dump(level)
289         MultiJson.dump([@document_base.to_s, @discovery_document])
290       end
291       
292       ##
293       # Marshalling support - Restore an API instance from serialized form
294       def self._load(obj)
295         new(*MultiJson.load(obj)) 
296       end
297
298     end
299   end
300 end