1 class Arvados::V1::SchemaController < ApplicationController
2 skip_before_filter :find_object_by_uuid
3 skip_before_filter :login_required
6 classes = Rails.cache.fetch 'arvados_v1_schema' do
7 Rails.application.eager_load!
9 ActiveRecord::Base.descendants.reject(&:abstract_class?).each do |k|
10 classes[k] = k.columns.collect do |col|
11 if k.serialized_attributes.has_key? col.name
13 type: k.serialized_attributes[col.name].object_class.to_s }
25 def discovery_rest_description
26 discovery = Rails.cache.fetch 'arvados_v1_rest_discovery' do
27 Rails.application.eager_load!
29 kind: "discovery#restDescription",
30 discoveryVersion: "v1",
36 description: "The API to interact with Arvados.",
37 documentationLink: "https://redmine.clinicalfuture.com/projects/arvados/",
39 baseUrl: root_url + "/arvados/v1/",
40 basePath: "/arvados/v1/",
42 servicePath: "arvados/v1/",
47 description: "Data format for the response.",
53 "Responses with Content-Type of application/json"
59 description: "Selector specifying which fields to include in a partial response.",
64 description: "API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.",
69 description: "OAuth 2.0 token for the current user.",
76 "https://api.clinicalfuture.com/auth/arvados" => {
77 description: "View and manage objects"
79 "https://api.clinicalfuture.com/auth/arvados.readonly" => {
80 description: "View objects"
89 ActiveRecord::Base.descendants.reject(&:abstract_class?).each do |k|
90 next if k == ApiClientAuthorization
91 next if k == ApiClient
93 ctl_class = "Arvados::V1::#{k.to_s.pluralize}Controller".constantize
95 # No controller -> no discovery.
98 object_properties = {}
100 select { |col| col.name != 'id' }.
102 if k.serialized_attributes.has_key? col.name
103 object_properties[col.name] = {
104 type: k.serialized_attributes[col.name].object_class.to_s
107 object_properties[col.name] = {
112 discovery[:schemas][k.to_s + 'List'] = {
114 description: k.to_s + ' list',
119 description: "Object type. Always arvados##{k.to_s.camelcase(:lower)}List.",
120 default: "arvados##{k.to_s.camelcase(:lower)}List"
124 description: "List version."
128 description: "The list of #{k.to_s.pluralize}.",
135 description: "A link to the next page of #{k.to_s.pluralize}."
139 description: "The page token for the next page of #{k.to_s.pluralize}."
143 description: "A link back to this list."
147 discovery[:schemas][k.to_s] = {
154 description: "Object ID."
158 description: "Object version."
160 }.merge(object_properties)
162 discovery[:resources][k.to_s.underscore.pluralize] = {
165 id: "arvados.#{k.to_s.underscore.pluralize}.get",
166 path: "#{k.to_s.underscore.pluralize}/{uuid}",
168 description: "Gets a #{k.to_s}'s metadata by UUID.",
172 description: "The UUID of the #{k.to_s} in question.",
184 "https://api.clinicalfuture.com/auth/arvados",
185 "https://api.clinicalfuture.com/auth/arvados.readonly"
189 id: "arvados.#{k.to_s.underscore.pluralize}.list",
190 path: k.to_s.underscore.pluralize,
192 description: "List #{k.to_s.underscore.pluralize}.",
196 description: "Maximum number of #{k.to_s.underscore.pluralize} to return.",
204 description: "Page token.",
209 description: "Query string for searching #{k.to_s.underscore.pluralize}.",
214 description: "Conditions for filtering #{k.to_s.underscore.pluralize}.",
219 description: "Order in which to return matching #{k.to_s.underscore.pluralize}.",
224 "$ref" => "#{k.to_s}List"
227 "https://api.clinicalfuture.com/auth/arvados",
228 "https://api.clinicalfuture.com/auth/arvados.readonly"
232 id: "arvados.#{k.to_s.underscore.pluralize}.create",
233 path: "#{k.to_s.underscore.pluralize}",
235 description: "Create a new #{k.to_s}.",
237 k.to_s.underscore => {
241 properties: object_properties
248 "https://api.clinicalfuture.com/auth/arvados"
252 id: "arvados.#{k.to_s.underscore.pluralize}.update",
253 path: "#{k.to_s.underscore.pluralize}/{uuid}",
255 description: "Update attributes of an existing #{k.to_s}.",
259 description: "The UUID of the #{k.to_s} in question.",
263 k.to_s.underscore => {
267 properties: object_properties
274 "https://api.clinicalfuture.com/auth/arvados"
278 id: "arvados.#{k.to_s.underscore.pluralize}.delete",
279 path: "#{k.to_s.underscore.pluralize}/{uuid}",
280 httpMethod: "DELETE",
281 description: "Delete an existing #{k.to_s}.",
285 description: "The UUID of the #{k.to_s} in question.",
294 "https://api.clinicalfuture.com/auth/arvados"
299 # Check for Rails routes that don't match the usual actions
301 d_methods = discovery[:resources][k.to_s.underscore.pluralize][:methods]
302 Rails.application.routes.routes.each do |route|
303 action = route.defaults[:action]
304 httpMethod = (route.verb && route.verb.length > 0) ? route.verb : 'GET'
305 if route.defaults[:controller] == 'arvados/v1/' + k.to_s.underscore.pluralize and
306 !d_methods[action.to_sym] and
307 ctl_class.action_methods.include? action
309 id: "arvados.#{k.to_s.underscore.pluralize}.#{action}",
310 path: route.path.sub('/arvados/v1/','').sub('(.:format)','').sub(/:(uu?)id/,'{uuid}'),
311 httpMethod: httpMethod,
312 description: "#{route.defaults[:action]} #{k.to_s.underscore.pluralize}",
315 "$ref" => (action == 'index' ? "#{k.to_s}List" : k.to_s)
318 "https://api.clinicalfuture.com/auth/arvados"
321 route.segment_keys.each do |key|
323 key = :uuid if key == :id
324 method[:parameters][key] = {
332 if ctl_class.respond_to? "_#{action}_requires_parameters".to_sym
333 ctl_class.send("_#{action}_requires_parameters".to_sym).each do |k, v|
335 method[:parameters][k] = v
337 method[:parameters][k] = {}
339 method[:parameters][k][:type] ||= 'string'
340 method[:parameters][k][:description] ||= ''
341 method[:parameters][k][:location] = (route.segment_keys.include?(k) ? 'path' : 'query')
342 if method[:parameters][k][:required].nil?
343 method[:parameters][k][:required] = v != false
347 d_methods[route.defaults[:action].to_sym] = method
353 render json: discovery