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_action :catch_redirect_hint
7 skip_before_action :find_objects_for_index
8 skip_before_action :find_object_by_uuid
9 skip_before_action :load_filters_param
10 skip_before_action :load_limit_offset_order_params
11 skip_before_action :load_select_param
12 skip_before_action :load_read_auths
13 skip_before_action :load_where_param
14 skip_before_action :render_404_if_no_object
15 skip_before_action :require_auth_scope
20 expires_in 24.hours, public: true
21 send_json discovery_doc
27 Rails.application.eager_load!
29 Rails.configuration.RemoteClusters.each {|k,v| if k != :"*" then remoteHosts[k] = v["Host"] end }
31 kind: "discovery#restDescription",
32 discoveryVersion: "v1",
36 # format is YYYYMMDD, must be fixed width (needs to be lexically
37 # sortable), updated manually, may be used by clients to
38 # determine availability of API server features.
40 source_version: AppVersion.hash,
41 sourceVersion: AppVersion.hash, # source_version should be deprecated in the future
42 packageVersion: AppVersion.package_version,
43 generatedAt: db_current_time.iso8601,
45 description: "The API to interact with Arvados.",
46 documentationLink: "http://doc.arvados.org/api/index.html",
47 defaultCollectionReplication: Rails.configuration.Collections.DefaultReplication,
49 baseUrl: root_url + "arvados/v1/",
50 basePath: "/arvados/v1/",
52 servicePath: "arvados/v1/",
54 uuidPrefix: Rails.configuration.ClusterID,
55 defaultTrashLifetime: Rails.configuration.Collections.DefaultTrashLifetime,
56 blobSignatureTtl: Rails.configuration.Collections.BlobSigningTTL,
57 maxRequestSize: Rails.configuration.API.MaxRequestSize,
58 maxItemsPerResponse: Rails.configuration.API.MaxItemsPerResponse,
59 dockerImageFormats: Rails.configuration.Containers.SupportedDockerImageFormats.keys,
60 crunchLogUpdatePeriod: Rails.configuration.Containers.Logging.LogUpdatePeriod,
61 crunchLogUpdateSize: Rails.configuration.Containers.Logging.LogUpdateSize,
62 remoteHosts: remoteHosts,
63 remoteHostsViaDNS: Rails.configuration.RemoteClusters["*"].Proxy,
64 websocketUrl: Rails.configuration.Services.Websocket.ExternalURL.to_s,
65 workbenchUrl: Rails.configuration.Services.Workbench1.ExternalURL.to_s,
66 workbench2Url: Rails.configuration.Services.Workbench2.ExternalURL.to_s,
67 keepWebServiceUrl: Rails.configuration.Services.WebDAV.ExternalURL.to_s,
71 description: "Data format for the response.",
77 "Responses with Content-Type of application/json"
83 description: "Selector specifying which fields to include in a partial response.",
88 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.",
93 description: "OAuth 2.0 token for the current user.",
100 "https://api.arvados.org/auth/arvados" => {
101 description: "View and manage objects"
103 "https://api.arvados.org/auth/arvados.readonly" => {
104 description: "View objects"
113 ActiveRecord::Base.descendants.reject(&:abstract_class?).sort_by(&:to_s).each do |k|
115 ctl_class = "Arvados::V1::#{k.to_s.pluralize}Controller".constantize
117 # No controller -> no discovery.
120 object_properties = {}
122 select { |col| k.selectable_attributes.include? col.name }.
124 if k.serialized_attributes.has_key? col.name
125 object_properties[col.name] = {
126 type: k.serialized_attributes[col.name].object_class.to_s
128 elsif k.attribute_types[col.name].is_a? JsonbType::Hash
129 object_properties[col.name] = {
132 elsif k.attribute_types[col.name].is_a? JsonbType::Array
133 object_properties[col.name] = {
137 object_properties[col.name] = {
142 discovery[:schemas][k.to_s + 'List'] = {
144 description: k.to_s + ' list',
149 description: "Object type. Always arvados##{k.to_s.camelcase(:lower)}List.",
150 default: "arvados##{k.to_s.camelcase(:lower)}List"
154 description: "List version."
158 description: "The list of #{k.to_s.pluralize}.",
165 description: "A link to the next page of #{k.to_s.pluralize}."
169 description: "The page token for the next page of #{k.to_s.pluralize}."
173 description: "A link back to this list."
177 discovery[:schemas][k.to_s] = {
181 uuidPrefix: (k.respond_to?(:uuid_prefix) ? k.uuid_prefix : nil),
185 description: "Object ID."
189 description: "Object version."
191 }.merge(object_properties)
193 discovery[:resources][k.to_s.underscore.pluralize] = {
196 id: "arvados.#{k.to_s.underscore.pluralize}.get",
197 path: "#{k.to_s.underscore.pluralize}/{uuid}",
199 description: "Gets a #{k.to_s}'s metadata by UUID.",
203 description: "The UUID of the #{k.to_s} in question.",
215 "https://api.arvados.org/auth/arvados",
216 "https://api.arvados.org/auth/arvados.readonly"
220 id: "arvados.#{k.to_s.underscore.pluralize}.index",
221 path: k.to_s.underscore.pluralize,
224 %|Index #{k.to_s.pluralize}.
226 The <code>index</code> method returns a
227 <a href="/api/resources.html">resource list</a> of
228 matching #{k.to_s.pluralize}. For example:
232 "kind":"arvados##{k.to_s.camelcase(:lower)}List",
235 "next_page_token":"",
240 "items_available":745,
242 "request_time":0.157236317
248 "$ref" => "#{k.to_s}List"
251 "https://api.arvados.org/auth/arvados",
252 "https://api.arvados.org/auth/arvados.readonly"
256 id: "arvados.#{k.to_s.underscore.pluralize}.create",
257 path: "#{k.to_s.underscore.pluralize}",
259 description: "Create a new #{k.to_s}.",
264 k.to_s.underscore => {
273 "https://api.arvados.org/auth/arvados"
277 id: "arvados.#{k.to_s.underscore.pluralize}.update",
278 path: "#{k.to_s.underscore.pluralize}/{uuid}",
280 description: "Update attributes of an existing #{k.to_s}.",
284 description: "The UUID of the #{k.to_s} in question.",
292 k.to_s.underscore => {
301 "https://api.arvados.org/auth/arvados"
305 id: "arvados.#{k.to_s.underscore.pluralize}.delete",
306 path: "#{k.to_s.underscore.pluralize}/{uuid}",
307 httpMethod: "DELETE",
308 description: "Delete an existing #{k.to_s}.",
312 description: "The UUID of the #{k.to_s} in question.",
321 "https://api.arvados.org/auth/arvados"
326 # Check for Rails routes that don't match the usual actions
328 d_methods = discovery[:resources][k.to_s.underscore.pluralize][:methods]
329 Rails.application.routes.routes.each do |route|
330 action = route.defaults[:action]
331 httpMethod = ['GET', 'POST', 'PUT', 'DELETE'].map { |method|
332 method if route.verb.match(method)
335 route.defaults[:controller] == 'arvados/v1/' + k.to_s.underscore.pluralize and
336 ctl_class.action_methods.include? action
337 if !d_methods[action.to_sym]
339 id: "arvados.#{k.to_s.underscore.pluralize}.#{action}",
340 path: route.path.spec.to_s.sub('/arvados/v1/','').sub('(.:format)','').sub(/:(uu)?id/,'{uuid}'),
341 httpMethod: httpMethod,
342 description: "#{action} #{k.to_s.underscore.pluralize}",
345 "$ref" => (action == 'index' ? "#{k.to_s}List" : k.to_s)
348 "https://api.arvados.org/auth/arvados"
351 route.segment_keys.each do |key|
353 key = :uuid if key == :id
354 method[:parameters][key] = {
363 # We already built a generic method description, but we
364 # might find some more required parameters through
366 method = d_methods[action.to_sym]
368 if ctl_class.respond_to? "_#{action}_requires_parameters".to_sym
369 ctl_class.send("_#{action}_requires_parameters".to_sym).each do |l, v|
371 method[:parameters][l] = v
373 method[:parameters][l] = {}
375 if !method[:parameters][l][:default].nil?
376 # The JAVA SDK is sensitive to all values being strings
377 method[:parameters][l][:default] = method[:parameters][l][:default].to_s
379 method[:parameters][l][:type] ||= 'string'
380 method[:parameters][l][:description] ||= ''
381 method[:parameters][l][:location] = (route.segment_keys.include?(l) ? 'path' : 'query')
382 if method[:parameters][l][:required].nil?
383 method[:parameters][l][:required] = v != false
387 d_methods[action.to_sym] = method
390 list_method = method.dup
391 list_method[:id].sub!('index', 'list')
392 list_method[:description].sub!('Index', 'List')
393 list_method[:description].sub!('index', 'list')
394 d_methods[:list] = list_method
400 # The 'replace_files' option is implemented in lib/controller,
401 # not Rails -- we just need to add it here so discovery-aware
402 # clients know how to validate it.
403 [:create, :update].each do |action|
404 discovery[:resources]['collections'][:methods][action][:parameters]['replace_files'] = {
406 description: 'Files and directories to initialize/replace with content from other collections.',
410 additionalProperties: {type: 'string'},
414 discovery[:resources]['configs'] = {
417 id: "arvados.configs.get",
420 description: "Get public config",
428 "https://api.arvados.org/auth/arvados",
429 "https://api.arvados.org/auth/arvados.readonly"
435 discovery[:resources]['vocabularies'] = {
438 id: "arvados.vocabularies.get",
441 description: "Get vocabulary definition",
449 "https://api.arvados.org/auth/arvados",
450 "https://api.arvados.org/auth/arvados.readonly"
456 discovery[:resources]['sys'] = {
459 id: "arvados.sys.trash_sweep",
460 path: "sys/trash_sweep",
462 description: "apply scheduled trash and delete operations",
470 "https://api.arvados.org/auth/arvados",
471 "https://api.arvados.org/auth/arvados.readonly"
477 Rails.configuration.API.DisabledAPIs.each do |method, _|
478 ctrl, action = method.to_s.split('.', 2)
479 next if ctrl.in?(['job_tasks', 'jobs', 'keep_disks', 'nodes', 'pipeline_instances', 'pipeline_templates', 'repositories'])
480 discovery[:resources][ctrl][:methods].delete(action.to_sym)