1 class Arvados::V1::SchemaController < ApplicationController
2 skip_before_filter :find_object_by_uuid
3 skip_before_filter :render_404_if_no_object
4 skip_before_filter :require_auth_scope_all
7 classes = Rails.cache.fetch 'arvados_v1_schema' do
8 Rails.application.eager_load!
10 ActiveRecord::Base.descendants.reject(&:abstract_class?).each do |k|
11 classes[k] = k.columns.collect do |col|
12 if k.serialized_attributes.has_key? col.name
14 type: k.serialized_attributes[col.name].object_class.to_s }
26 def discovery_rest_description
27 expires_in 24.hours, public: true
28 discovery = Rails.cache.fetch 'arvados_v1_rest_discovery' do
29 Rails.application.eager_load!
31 kind: "discovery#restDescription",
32 discoveryVersion: "v1",
37 generatedAt: Time.now.iso8601,
39 description: "The API to interact with Arvados.",
40 documentationLink: "https://redmine.clinicalfuture.com/projects/arvados/",
42 baseUrl: root_url + "/arvados/v1/",
43 basePath: "/arvados/v1/",
45 servicePath: "arvados/v1/",
50 description: "Data format for the response.",
56 "Responses with Content-Type of application/json"
62 description: "Selector specifying which fields to include in a partial response.",
67 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.",
72 description: "OAuth 2.0 token for the current user.",
79 "https://api.clinicalfuture.com/auth/arvados" => {
80 description: "View and manage objects"
82 "https://api.clinicalfuture.com/auth/arvados.readonly" => {
83 description: "View objects"
92 ActiveRecord::Base.descendants.reject(&:abstract_class?).each do |k|
94 ctl_class = "Arvados::V1::#{k.to_s.pluralize}Controller".constantize
96 # No controller -> no discovery.
99 object_properties = {}
101 select { |col| col.name != 'id' }.
103 if k.serialized_attributes.has_key? col.name
104 object_properties[col.name] = {
105 type: k.serialized_attributes[col.name].object_class.to_s
108 object_properties[col.name] = {
113 discovery[:schemas][k.to_s + 'List'] = {
115 description: k.to_s + ' list',
120 description: "Object type. Always arvados##{k.to_s.camelcase(:lower)}List.",
121 default: "arvados##{k.to_s.camelcase(:lower)}List"
125 description: "List version."
129 description: "The list of #{k.to_s.pluralize}.",
136 description: "A link to the next page of #{k.to_s.pluralize}."
140 description: "The page token for the next page of #{k.to_s.pluralize}."
144 description: "A link back to this list."
148 discovery[:schemas][k.to_s] = {
152 uuidPrefix: (k.respond_to?(:uuid_prefix) ? k.uuid_prefix : nil),
156 description: "Object ID."
160 description: "Object version."
162 }.merge(object_properties)
164 discovery[:resources][k.to_s.underscore.pluralize] = {
167 id: "arvados.#{k.to_s.underscore.pluralize}.get",
168 path: "#{k.to_s.underscore.pluralize}/{uuid}",
170 description: "Gets a #{k.to_s}'s metadata by UUID.",
174 description: "The UUID of the #{k.to_s} in question.",
186 "https://api.clinicalfuture.com/auth/arvados",
187 "https://api.clinicalfuture.com/auth/arvados.readonly"
191 id: "arvados.#{k.to_s.underscore.pluralize}.list",
192 path: k.to_s.underscore.pluralize,
195 %|List #{k.to_s.pluralize}.
197 The <code>list</code> method returns a
198 <a href="/api/resources.html">resource list</a> of
199 matching #{k.to_s.pluralize}. For example:
203 "kind":"arvados##{k.to_s.camelcase(:lower)}List",
206 "next_page_token":"",
211 "items_available":745,
213 "request_time":0.157236317
219 description: "Maximum number of #{k.to_s.underscore.pluralize} to return.",
227 description: "Number of #{k.to_s.underscore.pluralize} to skip before first returned record.",
235 description: "Conditions for filtering #{k.to_s.underscore.pluralize}.",
240 description: "Conditions for filtering #{k.to_s.underscore.pluralize}. (Deprecated. Use filters instead.)",
245 description: "Order in which to return matching #{k.to_s.underscore.pluralize}.",
250 "$ref" => "#{k.to_s}List"
253 "https://api.clinicalfuture.com/auth/arvados",
254 "https://api.clinicalfuture.com/auth/arvados.readonly"
258 id: "arvados.#{k.to_s.underscore.pluralize}.create",
259 path: "#{k.to_s.underscore.pluralize}",
261 description: "Create a new #{k.to_s}.",
266 k.to_s.underscore => {
275 "https://api.clinicalfuture.com/auth/arvados"
279 id: "arvados.#{k.to_s.underscore.pluralize}.update",
280 path: "#{k.to_s.underscore.pluralize}/{uuid}",
282 description: "Update attributes of an existing #{k.to_s}.",
286 description: "The UUID of the #{k.to_s} in question.",
294 k.to_s.underscore => {
303 "https://api.clinicalfuture.com/auth/arvados"
307 id: "arvados.#{k.to_s.underscore.pluralize}.delete",
308 path: "#{k.to_s.underscore.pluralize}/{uuid}",
309 httpMethod: "DELETE",
310 description: "Delete an existing #{k.to_s}.",
314 description: "The UUID of the #{k.to_s} in question.",
323 "https://api.clinicalfuture.com/auth/arvados"
328 # Check for Rails routes that don't match the usual actions
330 d_methods = discovery[:resources][k.to_s.underscore.pluralize][:methods]
331 Rails.application.routes.routes.each do |route|
332 action = route.defaults[:action]
333 httpMethod = ['GET', 'POST', 'PUT', 'DELETE'].map { |method|
334 method if route.verb.match(method)
337 route.defaults[:controller] == 'arvados/v1/' + k.to_s.underscore.pluralize and
338 !d_methods[action.to_sym] and
339 ctl_class.action_methods.include? action and
340 ![:show, :index, :destroy].include?(action.to_sym)
342 id: "arvados.#{k.to_s.underscore.pluralize}.#{action}",
343 path: route.path.spec.to_s.sub('/arvados/v1/','').sub('(.:format)','').sub(/:(uu)?id/,'{uuid}'),
344 httpMethod: httpMethod,
345 description: "#{route.defaults[:action]} #{k.to_s.underscore.pluralize}",
348 "$ref" => (action == 'index' ? "#{k.to_s}List" : k.to_s)
351 "https://api.clinicalfuture.com/auth/arvados"
354 route.segment_keys.each do |key|
356 key = :uuid if key == :id
357 method[:parameters][key] = {
365 if ctl_class.respond_to? "_#{action}_requires_parameters".to_sym
366 ctl_class.send("_#{action}_requires_parameters".to_sym).each do |k, v|
368 method[:parameters][k] = v
370 method[:parameters][k] = {}
372 method[:parameters][k][:type] ||= 'string'
373 method[:parameters][k][:description] ||= ''
374 method[:parameters][k][:location] = (route.segment_keys.include?(k) ? 'path' : 'query')
375 if method[:parameters][k][:required].nil?
376 method[:parameters][k][:required] = v != false
380 d_methods[route.defaults[:action].to_sym] = method
386 render json: discovery