1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
5 class Arvados::V1::SchemaController < ApplicationController
6 skip_before_filter :catch_redirect_hint
7 skip_before_filter :find_objects_for_index
8 skip_before_filter :find_object_by_uuid
9 skip_before_filter :load_filters_param
10 skip_before_filter :load_limit_offset_order_params
11 skip_before_filter :load_read_auths
12 skip_before_filter :load_where_param
13 skip_before_filter :render_404_if_no_object
14 skip_before_filter :require_auth_scope
19 expires_in 24.hours, public: true
20 discovery = Rails.cache.fetch 'arvados_v1_rest_discovery' do
21 Rails.application.eager_load!
23 kind: "discovery#restDescription",
24 discoveryVersion: "v1",
29 source_version: AppVersion.hash,
30 generatedAt: db_current_time.iso8601,
32 description: "The API to interact with Arvados.",
33 documentationLink: "http://doc.arvados.org/api/index.html",
34 defaultCollectionReplication: Rails.configuration.default_collection_replication,
36 baseUrl: root_url + "arvados/v1/",
37 basePath: "/arvados/v1/",
39 servicePath: "arvados/v1/",
41 defaultTrashLifetime: Rails.application.config.default_trash_lifetime,
42 blobSignatureTtl: Rails.application.config.blob_signature_ttl,
43 maxRequestSize: Rails.application.config.max_request_size,
44 dockerImageFormats: Rails.application.config.docker_image_formats,
45 crunchLogBytesPerEvent: Rails.application.config.crunch_log_bytes_per_event,
46 crunchLogSecondsBetweenEvents: Rails.application.config.crunch_log_seconds_between_events,
47 crunchLogThrottlePeriod: Rails.application.config.crunch_log_throttle_period,
48 crunchLogThrottleBytes: Rails.application.config.crunch_log_throttle_bytes,
49 crunchLogThrottleLines: Rails.application.config.crunch_log_throttle_lines,
50 crunchLimitLogBytesPerJob: Rails.application.config.crunch_limit_log_bytes_per_job,
51 crunchLogPartialLineThrottlePeriod: Rails.application.config.crunch_log_partial_line_throttle_period,
52 websocketUrl: Rails.application.config.websocket_address,
56 description: "Data format for the response.",
62 "Responses with Content-Type of application/json"
68 description: "Selector specifying which fields to include in a partial response.",
73 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.",
78 description: "OAuth 2.0 token for the current user.",
85 "https://api.curoverse.com/auth/arvados" => {
86 description: "View and manage objects"
88 "https://api.curoverse.com/auth/arvados.readonly" => {
89 description: "View objects"
98 ActiveRecord::Base.descendants.reject(&:abstract_class?).each do |k|
100 ctl_class = "Arvados::V1::#{k.to_s.pluralize}Controller".constantize
102 # No controller -> no discovery.
105 object_properties = {}
107 select { |col| col.name != 'id' }.
109 if k.serialized_attributes.has_key? col.name
110 object_properties[col.name] = {
111 type: k.serialized_attributes[col.name].object_class.to_s
114 object_properties[col.name] = {
119 discovery[:schemas][k.to_s + 'List'] = {
121 description: k.to_s + ' list',
126 description: "Object type. Always arvados##{k.to_s.camelcase(:lower)}List.",
127 default: "arvados##{k.to_s.camelcase(:lower)}List"
131 description: "List version."
135 description: "The list of #{k.to_s.pluralize}.",
142 description: "A link to the next page of #{k.to_s.pluralize}."
146 description: "The page token for the next page of #{k.to_s.pluralize}."
150 description: "A link back to this list."
154 discovery[:schemas][k.to_s] = {
158 uuidPrefix: (k.respond_to?(:uuid_prefix) ? k.uuid_prefix : nil),
162 description: "Object ID."
166 description: "Object version."
168 }.merge(object_properties)
170 discovery[:resources][k.to_s.underscore.pluralize] = {
173 id: "arvados.#{k.to_s.underscore.pluralize}.get",
174 path: "#{k.to_s.underscore.pluralize}/{uuid}",
176 description: "Gets a #{k.to_s}'s metadata by UUID.",
180 description: "The UUID of the #{k.to_s} in question.",
192 "https://api.curoverse.com/auth/arvados",
193 "https://api.curoverse.com/auth/arvados.readonly"
197 id: "arvados.#{k.to_s.underscore.pluralize}.index",
198 path: k.to_s.underscore.pluralize,
201 %|Index #{k.to_s.pluralize}.
203 The <code>index</code> method returns a
204 <a href="/api/resources.html">resource list</a> of
205 matching #{k.to_s.pluralize}. For example:
209 "kind":"arvados##{k.to_s.camelcase(:lower)}List",
212 "next_page_token":"",
217 "items_available":745,
219 "request_time":0.157236317
225 "$ref" => "#{k.to_s}List"
228 "https://api.curoverse.com/auth/arvados",
229 "https://api.curoverse.com/auth/arvados.readonly"
233 id: "arvados.#{k.to_s.underscore.pluralize}.create",
234 path: "#{k.to_s.underscore.pluralize}",
236 description: "Create a new #{k.to_s}.",
241 k.to_s.underscore => {
250 "https://api.curoverse.com/auth/arvados"
254 id: "arvados.#{k.to_s.underscore.pluralize}.update",
255 path: "#{k.to_s.underscore.pluralize}/{uuid}",
257 description: "Update attributes of an existing #{k.to_s}.",
261 description: "The UUID of the #{k.to_s} in question.",
269 k.to_s.underscore => {
278 "https://api.curoverse.com/auth/arvados"
282 id: "arvados.#{k.to_s.underscore.pluralize}.delete",
283 path: "#{k.to_s.underscore.pluralize}/{uuid}",
284 httpMethod: "DELETE",
285 description: "Delete an existing #{k.to_s}.",
289 description: "The UUID of the #{k.to_s} in question.",
298 "https://api.curoverse.com/auth/arvados"
303 # Check for Rails routes that don't match the usual actions
305 d_methods = discovery[:resources][k.to_s.underscore.pluralize][:methods]
306 Rails.application.routes.routes.each do |route|
307 action = route.defaults[:action]
308 httpMethod = ['GET', 'POST', 'PUT', 'DELETE'].map { |method|
309 method if route.verb.match(method)
312 route.defaults[:controller] == 'arvados/v1/' + k.to_s.underscore.pluralize and
313 ctl_class.action_methods.include? action
314 if !d_methods[action.to_sym]
316 id: "arvados.#{k.to_s.underscore.pluralize}.#{action}",
317 path: route.path.spec.to_s.sub('/arvados/v1/','').sub('(.:format)','').sub(/:(uu)?id/,'{uuid}'),
318 httpMethod: httpMethod,
319 description: "#{action} #{k.to_s.underscore.pluralize}",
322 "$ref" => (action == 'index' ? "#{k.to_s}List" : k.to_s)
325 "https://api.curoverse.com/auth/arvados"
328 route.segment_keys.each do |key|
330 key = :uuid if key == :id
331 method[:parameters][key] = {
340 # We already built a generic method description, but we
341 # might find some more required parameters through
343 method = d_methods[action.to_sym]
345 if ctl_class.respond_to? "_#{action}_requires_parameters".to_sym
346 ctl_class.send("_#{action}_requires_parameters".to_sym).each do |l, v|
348 method[:parameters][l] = v
350 method[:parameters][l] = {}
352 if !method[:parameters][l][:default].nil?
353 # The JAVA SDK is sensitive to all values being strings
354 method[:parameters][l][:default] = method[:parameters][l][:default].to_s
356 method[:parameters][l][:type] ||= 'string'
357 method[:parameters][l][:description] ||= ''
358 method[:parameters][l][:location] = (route.segment_keys.include?(l) ? 'path' : 'query')
359 if method[:parameters][l][:required].nil?
360 method[:parameters][l][:required] = v != false
364 d_methods[action.to_sym] = method
367 list_method = method.dup
368 list_method[:id].sub!('index', 'list')
369 list_method[:description].sub!('Index', 'List')
370 list_method[:description].sub!('index', 'list')
371 d_methods[:list] = list_method
376 Rails.configuration.disable_api_methods.each do |method|
377 ctrl, action = method.split('.', 2)
378 discovery[:resources][ctrl][:methods].delete(action.to_sym)