1 class Arvados::V1::GroupsController < ApplicationController
3 def self._contents_requires_parameters
4 params = _index_requires_parameters.
7 type: 'string', required: false, default: nil
10 params.delete(:select)
14 def render_404_if_no_object
15 if params[:action] == 'contents'
23 elsif (@object = User.where(uuid: params[:uuid]).first)
24 # "Home" pseudo-project
35 load_searchable_objects
37 :kind => "arvados#objectList",
42 :items_available => @items_available,
43 :items => @objects.as_api_response(nil)
49 def load_searchable_objects
53 # Trick apply_where_limit_order_params into applying suitable
54 # per-table values. *_all are the real ones we'll apply to the
58 # save the orders from the current request as determined by load_param,
59 # but otherwise discard them because we're going to be getting objects
61 request_orders = @orders.clone
64 request_filters = @filters
67 Job, PipelineInstance, PipelineTemplate, ContainerRequest, Workflow,
69 Human, Specimen, Trait]
71 table_names = Hash[klasses.collect { |k| [k, k.table_name] }]
73 disabled_methods = Rails.configuration.disable_api_methods
74 avail_klasses = table_names.select{|k, t| !disabled_methods.include?(t+'.index')}
75 klasses = avail_klasses.keys
77 request_filters.each do |col, op, val|
78 if col.index('.') && !table_names.values.include?(col.split('.', 2)[0])
79 raise ArgumentError.new("Invalid attribute '#{col}' in filter")
84 request_filters.each do |col,op,val|
86 (val.is_a?(Array) ? val : [val]).each do |type|
87 type = type.split('#')[-1]
88 type[0] = type[0].capitalize
89 wanted_klasses << type
94 seen_last_class = false
95 klasses.each do |klass|
96 @offset = 0 if seen_last_class # reset offset for the new next type being processed
98 # if current klass is same as params['last_object_class'], mark that fact
99 seen_last_class = true if((params['count'].andand.==('none')) and
100 (params['last_object_class'].nil? or
101 params['last_object_class'].empty? or
102 params['last_object_class'] == klass.to_s))
104 # if klasses are specified, skip all other klass types
105 next if wanted_klasses.any? and !wanted_klasses.include?(klass.to_s)
107 # don't reprocess klass types that were already seen
108 next if params['count'] == 'none' and !seen_last_class
110 # don't process rest of object types if we already have needed number of objects
111 break if params['count'] == 'none' and all_objects.size >= limit_all
113 # If the currently requested orders specifically match the
114 # table_name for the current klass, apply that order.
115 # Otherwise, order by recency.
117 request_orders.andand.find { |r| r =~ /^#{klass.table_name}\./i } ||
118 klass.default_orders.join(", ")
122 where_conds[:owner_uuid] = @object.uuid if @object
123 if klass == Collection
124 @select = klass.selectable_attributes - ["manifest_text"]
126 where_conds[:group_class] = "project"
129 @filters = request_filters.map do |col, op, val|
132 elsif (col = col.split('.', 2))[0] == klass.table_name
139 @objects = klass.readable_by(*@read_users).
140 order(request_order).where(where_conds)
141 @limit = limit_all - all_objects.count
142 apply_where_limit_order_params klass
143 klass_object_list = object_list
144 klass_items_available = klass_object_list[:items_available] || 0
145 @items_available += klass_items_available
146 @offset = [@offset - klass_items_available, 0].max
147 all_objects += klass_object_list[:items]
150 @objects = all_objects