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_read_auths
12 skip_before_action :load_where_param
13 skip_before_action :render_404_if_no_object
14 skip_before_action :require_auth_scope
19 expires_in 24.hours, public: true
20 send_json discovery_doc
26 Rails.cache.fetch 'arvados_v1_rest_discovery' do
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",
37 source_version: AppVersion.hash,
38 sourceVersion: AppVersion.hash, # source_version should be deprecated in the future
39 packageVersion: AppVersion.package_version,
40 generatedAt: db_current_time.iso8601,
42 description: "The API to interact with Arvados.",
43 documentationLink: "http://doc.arvados.org/api/index.html",
44 defaultCollectionReplication: Rails.configuration.Collections.DefaultReplication,
46 baseUrl: root_url + "arvados/v1/",
47 basePath: "/arvados/v1/",
49 servicePath: "arvados/v1/",
51 uuidPrefix: Rails.configuration.ClusterID,
52 defaultTrashLifetime: Rails.configuration.Collections.DefaultTrashLifetime,
53 blobSignatureTtl: Rails.configuration.Collections.BlobSigningTTL,
54 maxRequestSize: Rails.configuration.API.MaxRequestSize,
55 maxItemsPerResponse: Rails.configuration.API.MaxItemsPerResponse,
56 dockerImageFormats: Rails.configuration.Containers.SupportedDockerImageFormats.keys,
57 crunchLogBytesPerEvent: Rails.configuration.Containers.Logging.LogBytesPerEvent,
58 crunchLogSecondsBetweenEvents: Rails.configuration.Containers.Logging.LogSecondsBetweenEvents,
59 crunchLogThrottlePeriod: Rails.configuration.Containers.Logging.LogThrottlePeriod,
60 crunchLogThrottleBytes: Rails.configuration.Containers.Logging.LogThrottleBytes,
61 crunchLogThrottleLines: Rails.configuration.Containers.Logging.LogThrottleLines,
62 crunchLimitLogBytesPerJob: Rails.configuration.Containers.Logging.LimitLogBytesPerJob,
63 crunchLogPartialLineThrottlePeriod: Rails.configuration.Containers.Logging.LogPartialLineThrottlePeriod,
64 crunchLogUpdatePeriod: Rails.configuration.Containers.Logging.LogUpdatePeriod,
65 crunchLogUpdateSize: Rails.configuration.Containers.Logging.LogUpdateSize,
66 remoteHosts: remoteHosts,
67 remoteHostsViaDNS: Rails.configuration.RemoteClusters["*"].Proxy,
68 websocketUrl: Rails.configuration.Services.Websocket.ExternalURL.to_s,
69 workbenchUrl: Rails.configuration.Services.Workbench1.ExternalURL.to_s,
70 workbench2Url: Rails.configuration.Services.Workbench2.ExternalURL.to_s,
71 keepWebServiceUrl: Rails.configuration.Services.WebDAV.ExternalURL.to_s,
72 gitUrl: Rails.configuration.Services.GitHTTP.ExternalURL.to_s,
76 description: "Data format for the response.",
82 "Responses with Content-Type of application/json"
88 description: "Selector specifying which fields to include in a partial response.",
93 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.",
98 description: "OAuth 2.0 token for the current user.",
105 "https://api.curoverse.com/auth/arvados" => {
106 description: "View and manage objects"
108 "https://api.curoverse.com/auth/arvados.readonly" => {
109 description: "View objects"
118 ActiveRecord::Base.descendants.reject(&:abstract_class?).each do |k|
120 ctl_class = "Arvados::V1::#{k.to_s.pluralize}Controller".constantize
122 # No controller -> no discovery.
125 object_properties = {}
127 select { |col| col.name != 'id' && !col.name.start_with?('secret_') }.
129 if k.serialized_attributes.has_key? col.name
130 object_properties[col.name] = {
131 type: k.serialized_attributes[col.name].object_class.to_s
133 elsif k.attribute_types[col.name].is_a? JsonbType::Hash
134 object_properties[col.name] = {
137 elsif k.attribute_types[col.name].is_a? JsonbType::Array
138 object_properties[col.name] = {
142 object_properties[col.name] = {
147 discovery[:schemas][k.to_s + 'List'] = {
149 description: k.to_s + ' list',
154 description: "Object type. Always arvados##{k.to_s.camelcase(:lower)}List.",
155 default: "arvados##{k.to_s.camelcase(:lower)}List"
159 description: "List version."
163 description: "The list of #{k.to_s.pluralize}.",
170 description: "A link to the next page of #{k.to_s.pluralize}."
174 description: "The page token for the next page of #{k.to_s.pluralize}."
178 description: "A link back to this list."
182 discovery[:schemas][k.to_s] = {
186 uuidPrefix: (k.respond_to?(:uuid_prefix) ? k.uuid_prefix : nil),
190 description: "Object ID."
194 description: "Object version."
196 }.merge(object_properties)
198 discovery[:resources][k.to_s.underscore.pluralize] = {
201 id: "arvados.#{k.to_s.underscore.pluralize}.get",
202 path: "#{k.to_s.underscore.pluralize}/{uuid}",
204 description: "Gets a #{k.to_s}'s metadata by UUID.",
208 description: "The UUID of the #{k.to_s} in question.",
220 "https://api.curoverse.com/auth/arvados",
221 "https://api.curoverse.com/auth/arvados.readonly"
225 id: "arvados.#{k.to_s.underscore.pluralize}.index",
226 path: k.to_s.underscore.pluralize,
229 %|Index #{k.to_s.pluralize}.
231 The <code>index</code> method returns a
232 <a href="/api/resources.html">resource list</a> of
233 matching #{k.to_s.pluralize}. For example:
237 "kind":"arvados##{k.to_s.camelcase(:lower)}List",
240 "next_page_token":"",
245 "items_available":745,
247 "request_time":0.157236317
253 "$ref" => "#{k.to_s}List"
256 "https://api.curoverse.com/auth/arvados",
257 "https://api.curoverse.com/auth/arvados.readonly"
261 id: "arvados.#{k.to_s.underscore.pluralize}.create",
262 path: "#{k.to_s.underscore.pluralize}",
264 description: "Create a new #{k.to_s}.",
269 k.to_s.underscore => {
278 "https://api.curoverse.com/auth/arvados"
282 id: "arvados.#{k.to_s.underscore.pluralize}.update",
283 path: "#{k.to_s.underscore.pluralize}/{uuid}",
285 description: "Update attributes of an existing #{k.to_s}.",
289 description: "The UUID of the #{k.to_s} in question.",
297 k.to_s.underscore => {
306 "https://api.curoverse.com/auth/arvados"
310 id: "arvados.#{k.to_s.underscore.pluralize}.delete",
311 path: "#{k.to_s.underscore.pluralize}/{uuid}",
312 httpMethod: "DELETE",
313 description: "Delete an existing #{k.to_s}.",
317 description: "The UUID of the #{k.to_s} in question.",
326 "https://api.curoverse.com/auth/arvados"
331 # Check for Rails routes that don't match the usual actions
333 d_methods = discovery[:resources][k.to_s.underscore.pluralize][:methods]
334 Rails.application.routes.routes.each do |route|
335 action = route.defaults[:action]
336 httpMethod = ['GET', 'POST', 'PUT', 'DELETE'].map { |method|
337 method if route.verb.match(method)
340 route.defaults[:controller] == 'arvados/v1/' + k.to_s.underscore.pluralize and
341 ctl_class.action_methods.include? action
342 if !d_methods[action.to_sym]
344 id: "arvados.#{k.to_s.underscore.pluralize}.#{action}",
345 path: route.path.spec.to_s.sub('/arvados/v1/','').sub('(.:format)','').sub(/:(uu)?id/,'{uuid}'),
346 httpMethod: httpMethod,
347 description: "#{action} #{k.to_s.underscore.pluralize}",
350 "$ref" => (action == 'index' ? "#{k.to_s}List" : k.to_s)
353 "https://api.curoverse.com/auth/arvados"
356 route.segment_keys.each do |key|
358 key = :uuid if key == :id
359 method[:parameters][key] = {
368 # We already built a generic method description, but we
369 # might find some more required parameters through
371 method = d_methods[action.to_sym]
373 if ctl_class.respond_to? "_#{action}_requires_parameters".to_sym
374 ctl_class.send("_#{action}_requires_parameters".to_sym).each do |l, v|
376 method[:parameters][l] = v
378 method[:parameters][l] = {}
380 if !method[:parameters][l][:default].nil?
381 # The JAVA SDK is sensitive to all values being strings
382 method[:parameters][l][:default] = method[:parameters][l][:default].to_s
384 method[:parameters][l][:type] ||= 'string'
385 method[:parameters][l][:description] ||= ''
386 method[:parameters][l][:location] = (route.segment_keys.include?(l) ? 'path' : 'query')
387 if method[:parameters][l][:required].nil?
388 method[:parameters][l][:required] = v != false
392 d_methods[action.to_sym] = method
395 list_method = method.dup
396 list_method[:id].sub!('index', 'list')
397 list_method[:description].sub!('Index', 'List')
398 list_method[:description].sub!('index', 'list')
399 d_methods[:list] = list_method
405 discovery[:resources]['configs'] = {
408 id: "arvados.configs.get",
411 description: "Get public config",
419 "https://api.curoverse.com/auth/arvados",
420 "https://api.curoverse.com/auth/arvados.readonly"
426 Rails.configuration.API.DisabledAPIs.each do |method, _|
427 ctrl, action = method.to_s.split('.', 2)
428 discovery[:resources][ctrl][:methods].delete(action.to_sym)