1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
5 class Arvados::V1::GroupsController < ApplicationController
7 def self._contents_requires_parameters
8 params = _index_requires_parameters.
11 type: 'string', required: false, default: nil
14 type: 'boolean', required: false, description: 'Include contents from child groups recursively.'
17 params.delete(:select)
21 def render_404_if_no_object
22 if params[:action] == 'contents'
30 elsif (@object = User.where(uuid: params[:uuid]).first)
31 # "Home" pseudo-project
42 load_searchable_objects
44 :kind => "arvados#objectList",
49 :items_available => @items_available,
50 :items => @objects.as_api_response(nil)
56 def load_searchable_objects
60 # Trick apply_where_limit_order_params into applying suitable
61 # per-table values. *_all are the real ones we'll apply to the
65 # save the orders from the current request as determined by load_param,
66 # but otherwise discard them because we're going to be getting objects
68 request_orders = @orders.clone
71 request_filters = @filters
74 Job, PipelineInstance, PipelineTemplate, ContainerRequest, Workflow,
76 Human, Specimen, Trait]
78 table_names = Hash[klasses.collect { |k| [k, k.table_name] }]
80 disabled_methods = Rails.configuration.disable_api_methods
81 avail_klasses = table_names.select{|k, t| !disabled_methods.include?(t+'.index')}
82 klasses = avail_klasses.keys
84 request_filters.each do |col, op, val|
85 if col.index('.') && !table_names.values.include?(col.split('.', 2)[0])
86 raise ArgumentError.new("Invalid attribute '#{col}' in filter")
91 request_filters.each do |col,op,val|
93 (val.is_a?(Array) ? val : [val]).each do |type|
94 type = type.split('#')[-1]
95 type[0] = type[0].capitalize
96 wanted_klasses << type
103 if params['recursive']
104 filter_by_owner[:owner_uuid] = [@object.uuid] + @object.descendant_project_uuids
106 filter_by_owner[:owner_uuid] = @object.uuid
110 seen_last_class = false
111 klasses.each do |klass|
112 @offset = 0 if seen_last_class # reset offset for the new next type being processed
114 # if current klass is same as params['last_object_class'], mark that fact
115 seen_last_class = true if((params['count'].andand.==('none')) and
116 (params['last_object_class'].nil? or
117 params['last_object_class'].empty? or
118 params['last_object_class'] == klass.to_s))
120 # if klasses are specified, skip all other klass types
121 next if wanted_klasses.any? and !wanted_klasses.include?(klass.to_s)
123 # don't reprocess klass types that were already seen
124 next if params['count'] == 'none' and !seen_last_class
126 # don't process rest of object types if we already have needed number of objects
127 break if params['count'] == 'none' and all_objects.size >= limit_all
129 # If the currently requested orders specifically match the
130 # table_name for the current klass, apply that order.
131 # Otherwise, order by recency.
133 request_orders.andand.find { |r| r =~ /^#{klass.table_name}\./i } ||
134 klass.default_orders.join(", ")
137 where_conds = filter_by_owner
138 if klass == Collection
139 @select = klass.selectable_attributes - ["manifest_text"]
141 where_conds = where_conds.merge(group_class: "project")
144 @filters = request_filters.map do |col, op, val|
147 elsif (col = col.split('.', 2))[0] == klass.table_name
154 if klass == Collection and params[:include_trash]
155 @objects = klass.unscoped.readable_by(*@read_users).
156 order(request_order).where(where_conds)
158 @objects = klass.readable_by(*@read_users).
159 order(request_order).where(where_conds)
161 klass_limit = limit_all - all_objects.count
163 apply_where_limit_order_params klass
164 klass_object_list = object_list(model_class: klass)
165 klass_items_available = klass_object_list[:items_available] || 0
166 @items_available += klass_items_available
167 @offset = [@offset - klass_items_available, 0].max
168 all_objects += klass_object_list[:items]
170 if klass_object_list[:limit] < klass_limit
171 # object_list() had to reduce @limit to comply with
172 # max_index_database_read. From now on, we'll do all queries
173 # with limit=0 and just accumulate items_available.
174 limit_all = all_objects.count
178 @objects = all_objects