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 send_json discovery_doc
26 Rails.cache.fetch 'arvados_v1_rest_discovery' do
27 Rails.application.eager_load!
29 kind: "discovery#restDescription",
30 discoveryVersion: "v1",
35 source_version: AppVersion.hash,
36 sourceVersion: AppVersion.hash, # source_version should be deprecated in the future
37 packageVersion: AppVersion.package_version,
38 generatedAt: db_current_time.iso8601,
40 description: "The API to interact with Arvados.",
41 documentationLink: "http://doc.arvados.org/api/index.html",
42 defaultCollectionReplication: Rails.configuration.default_collection_replication,
44 baseUrl: root_url + "arvados/v1/",
45 basePath: "/arvados/v1/",
47 servicePath: "arvados/v1/",
49 uuidPrefix: Rails.application.config.uuid_prefix,
50 defaultTrashLifetime: Rails.application.config.default_trash_lifetime,
51 blobSignatureTtl: Rails.application.config.blob_signature_ttl,
52 maxRequestSize: Rails.application.config.max_request_size,
53 dockerImageFormats: Rails.application.config.docker_image_formats,
54 crunchLogBytesPerEvent: Rails.application.config.crunch_log_bytes_per_event,
55 crunchLogSecondsBetweenEvents: Rails.application.config.crunch_log_seconds_between_events,
56 crunchLogThrottlePeriod: Rails.application.config.crunch_log_throttle_period,
57 crunchLogThrottleBytes: Rails.application.config.crunch_log_throttle_bytes,
58 crunchLogThrottleLines: Rails.application.config.crunch_log_throttle_lines,
59 crunchLimitLogBytesPerJob: Rails.application.config.crunch_limit_log_bytes_per_job,
60 crunchLogPartialLineThrottlePeriod: Rails.application.config.crunch_log_partial_line_throttle_period,
61 remoteHosts: Rails.configuration.remote_hosts,
62 remoteHostsViaDNS: Rails.configuration.remote_hosts_via_dns,
63 websocketUrl: Rails.application.config.websocket_address,
64 workbenchUrl: Rails.application.config.workbench_address,
65 keepWebServiceUrl: Rails.application.config.keep_web_service_url,
66 gitUrl: case Rails.application.config.git_repo_https_base
70 'https://git.%s.arvadosapi.com/' % Rails.configuration.uuid_prefix
72 Rails.application.config.git_repo_https_base
77 description: "Data format for the response.",
83 "Responses with Content-Type of application/json"
89 description: "Selector specifying which fields to include in a partial response.",
94 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.",
99 description: "OAuth 2.0 token for the current user.",
106 "https://api.curoverse.com/auth/arvados" => {
107 description: "View and manage objects"
109 "https://api.curoverse.com/auth/arvados.readonly" => {
110 description: "View objects"
119 ActiveRecord::Base.descendants.reject(&:abstract_class?).each do |k|
121 ctl_class = "Arvados::V1::#{k.to_s.pluralize}Controller".constantize
123 # No controller -> no discovery.
126 object_properties = {}
128 select { |col| col.name != 'id' && !col.name.start_with?('secret_') }.
130 if k.serialized_attributes.has_key? col.name
131 object_properties[col.name] = {
132 type: k.serialized_attributes[col.name].object_class.to_s
135 object_properties[col.name] = {
140 discovery[:schemas][k.to_s + 'List'] = {
142 description: k.to_s + ' list',
147 description: "Object type. Always arvados##{k.to_s.camelcase(:lower)}List.",
148 default: "arvados##{k.to_s.camelcase(:lower)}List"
152 description: "List version."
156 description: "The list of #{k.to_s.pluralize}.",
163 description: "A link to the next page of #{k.to_s.pluralize}."
167 description: "The page token for the next page of #{k.to_s.pluralize}."
171 description: "A link back to this list."
175 discovery[:schemas][k.to_s] = {
179 uuidPrefix: (k.respond_to?(:uuid_prefix) ? k.uuid_prefix : nil),
183 description: "Object ID."
187 description: "Object version."
189 }.merge(object_properties)
191 discovery[:resources][k.to_s.underscore.pluralize] = {
194 id: "arvados.#{k.to_s.underscore.pluralize}.get",
195 path: "#{k.to_s.underscore.pluralize}/{uuid}",
197 description: "Gets a #{k.to_s}'s metadata by UUID.",
201 description: "The UUID of the #{k.to_s} in question.",
213 "https://api.curoverse.com/auth/arvados",
214 "https://api.curoverse.com/auth/arvados.readonly"
218 id: "arvados.#{k.to_s.underscore.pluralize}.index",
219 path: k.to_s.underscore.pluralize,
222 %|Index #{k.to_s.pluralize}.
224 The <code>index</code> method returns a
225 <a href="/api/resources.html">resource list</a> of
226 matching #{k.to_s.pluralize}. For example:
230 "kind":"arvados##{k.to_s.camelcase(:lower)}List",
233 "next_page_token":"",
238 "items_available":745,
240 "request_time":0.157236317
246 "$ref" => "#{k.to_s}List"
249 "https://api.curoverse.com/auth/arvados",
250 "https://api.curoverse.com/auth/arvados.readonly"
254 id: "arvados.#{k.to_s.underscore.pluralize}.create",
255 path: "#{k.to_s.underscore.pluralize}",
257 description: "Create a new #{k.to_s}.",
262 k.to_s.underscore => {
271 "https://api.curoverse.com/auth/arvados"
275 id: "arvados.#{k.to_s.underscore.pluralize}.update",
276 path: "#{k.to_s.underscore.pluralize}/{uuid}",
278 description: "Update attributes of an existing #{k.to_s}.",
282 description: "The UUID of the #{k.to_s} in question.",
290 k.to_s.underscore => {
299 "https://api.curoverse.com/auth/arvados"
303 id: "arvados.#{k.to_s.underscore.pluralize}.delete",
304 path: "#{k.to_s.underscore.pluralize}/{uuid}",
305 httpMethod: "DELETE",
306 description: "Delete an existing #{k.to_s}.",
310 description: "The UUID of the #{k.to_s} in question.",
319 "https://api.curoverse.com/auth/arvados"
324 # Check for Rails routes that don't match the usual actions
326 d_methods = discovery[:resources][k.to_s.underscore.pluralize][:methods]
327 Rails.application.routes.routes.each do |route|
328 action = route.defaults[:action]
329 httpMethod = ['GET', 'POST', 'PUT', 'DELETE'].map { |method|
330 method if route.verb.match(method)
333 route.defaults[:controller] == 'arvados/v1/' + k.to_s.underscore.pluralize and
334 ctl_class.action_methods.include? action
335 if !d_methods[action.to_sym]
337 id: "arvados.#{k.to_s.underscore.pluralize}.#{action}",
338 path: route.path.spec.to_s.sub('/arvados/v1/','').sub('(.:format)','').sub(/:(uu)?id/,'{uuid}'),
339 httpMethod: httpMethod,
340 description: "#{action} #{k.to_s.underscore.pluralize}",
343 "$ref" => (action == 'index' ? "#{k.to_s}List" : k.to_s)
346 "https://api.curoverse.com/auth/arvados"
349 route.segment_keys.each do |key|
351 key = :uuid if key == :id
352 method[:parameters][key] = {
361 # We already built a generic method description, but we
362 # might find some more required parameters through
364 method = d_methods[action.to_sym]
366 if ctl_class.respond_to? "_#{action}_requires_parameters".to_sym
367 ctl_class.send("_#{action}_requires_parameters".to_sym).each do |l, v|
369 method[:parameters][l] = v
371 method[:parameters][l] = {}
373 if !method[:parameters][l][:default].nil?
374 # The JAVA SDK is sensitive to all values being strings
375 method[:parameters][l][:default] = method[:parameters][l][:default].to_s
377 method[:parameters][l][:type] ||= 'string'
378 method[:parameters][l][:description] ||= ''
379 method[:parameters][l][:location] = (route.segment_keys.include?(l) ? 'path' : 'query')
380 if method[:parameters][l][:required].nil?
381 method[:parameters][l][:required] = v != false
385 d_methods[action.to_sym] = method
388 list_method = method.dup
389 list_method[:id].sub!('index', 'list')
390 list_method[:description].sub!('Index', 'List')
391 list_method[:description].sub!('index', 'list')
392 d_methods[:list] = list_method
397 Rails.configuration.disable_api_methods.each do |method|
398 ctrl, action = method.split('.', 2)
399 discovery[:resources][ctrl][:methods].delete(action.to_sym)