Merge branch '19929-fill-discovery-document'
[arvados.git] / services / api / app / controllers / arvados / v1 / groups_controller.rb
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 require "trashable"
6
7 class Arvados::V1::GroupsController < ApplicationController
8   include TrashableController
9
10   before_action :load_include_param, only: [:shared, :contents]
11   skip_before_action :find_object_by_uuid, only: :shared
12   skip_before_action :render_404_if_no_object, only: :shared
13
14   def self._index_requires_parameters
15     (super rescue {}).
16       merge({
17         include_trash: {
18           type: 'boolean',
19           required: false,
20           default: false,
21           description: "Include items whose `is_trashed` attribute is true.",
22         },
23       })
24   end
25
26   def self._show_requires_parameters
27     (super rescue {}).
28       merge({
29         include_trash: {
30           type: 'boolean',
31           required: false,
32           default: false,
33           description: "Return group/project even if its `is_trashed` attribute is true.",
34         },
35       })
36   end
37
38   def self._contents_requires_parameters
39     _index_requires_parameters.merge(
40       {
41         uuid: {
42           type: 'string',
43           required: false,
44           default: '',
45           description: "If given, limit the listing to objects owned by the
46 user or group with this UUID.",
47         },
48         recursive: {
49           type: 'boolean',
50           required: false,
51           default: false,
52           description: 'If true, include contents from child groups recursively.',
53         },
54         include: {
55           type: 'array',
56           required: false,
57           description: "An array of referenced objects to include in the `included` field of the response. Supported values in the array are:
58
59   * `\"container_uuid\"`
60   * `\"owner_uuid\"`
61
62 ",
63         },
64         include_old_versions: {
65           type: 'boolean',
66           required: false,
67           default: false,
68           description: 'If true, include past versions of collections in the listing.',
69         },
70         exclude_home_project: {
71           type: "boolean",
72           required: false,
73           default: false,
74           description: "If true, exclude contents of the user's home project from the listing.
75 Calling this method with this flag set is how clients enumerate objects shared
76 with the current user.",
77         },
78       }
79     )
80   end
81
82   def self._create_requires_parameters
83     super.merge(
84       {
85         async: {
86           required: false,
87           type: 'boolean',
88           location: 'query',
89           default: false,
90           description: 'If true, cluster permission will not be updated immediately, but instead at the next configured update interval.',
91         }
92       }
93     )
94   end
95
96   def self._update_requires_parameters
97     super.merge(
98       {
99         async: {
100           required: false,
101           type: 'boolean',
102           location: 'query',
103           default: false,
104           description: 'If true, cluster permission will not be updated immediately, but instead at the next configured update interval.',
105         }
106       }
107     )
108   end
109
110   def create
111     if params[:async]
112       @object = model_class.new(resource_attrs.merge({async_permissions_update: true}))
113       @object.save!
114       render_accepted
115     else
116       super
117     end
118   end
119
120   def update
121     if params[:async]
122       attrs_to_update = resource_attrs.reject { |k, v|
123         [:kind, :etag, :href].index k
124       }.merge({async_permissions_update: true})
125       @object.update!(attrs_to_update)
126       @object.save!
127       render_accepted
128     else
129       super
130     end
131   end
132
133   def render_404_if_no_object
134     if params[:action] == 'contents'
135       if !params[:uuid]
136         # OK!
137         @object = nil
138         true
139       elsif @object
140         # Project group
141         true
142       elsif (@object = User.where(uuid: params[:uuid]).first)
143         # "Home" pseudo-project
144         true
145       else
146         super
147       end
148     else
149       super
150     end
151   end
152
153   def self._contents_method_description
154     "List objects that belong to a group."
155   end
156
157   def contents
158     @orig_select = @select
159     load_searchable_objects
160     list = {
161       :kind => "arvados#objectList",
162       :etag => "",
163       :self_link => "",
164       :offset => @offset,
165       :limit => @limit,
166       :items => @objects.as_api_response(nil)
167     }
168     if params[:count] != 'none'
169       list[:items_available] = @items_available
170     end
171     if @extra_included
172       list[:included] = @extra_included.as_api_response(nil, {select: @orig_select})
173     end
174     send_json(list)
175   end
176
177   def self._shared_method_description
178     "List groups that the current user can access via permission links."
179   end
180
181   def shared
182     # The purpose of this endpoint is to return the toplevel set of
183     # groups which are *not* reachable through a direct ownership
184     # chain of projects starting from the current user account.  In
185     # other words, groups which to which access was granted via a
186     # permission link or chain of links.
187     #
188     # This also returns (in the "included" field) the objects that own
189     # those projects (users or non-project groups).
190     #
191     # The intended use of this endpoint is to support clients which
192     # wish to browse those projects which are visible to the user but
193     # are not part of the "home" project.
194
195     load_limit_offset_order_params
196     load_filters_param
197
198     @objects = exclude_home Group.readable_by(*@read_users), Group
199
200     apply_where_limit_order_params
201
202     if @include.include?("owner_uuid")
203       owners = @objects.map(&:owner_uuid).to_set
204       @extra_included ||= []
205       [Group, User].each do |klass|
206         @extra_included += klass.readable_by(*@read_users).where(uuid: owners.to_a).to_a
207       end
208     end
209
210     if @include.include?("container_uuid")
211       @extra_included ||= []
212       container_uuids = @objects.map { |o|
213         o.respond_to?(:container_uuid) ? o.container_uuid : nil
214       }.compact.to_set.to_a
215       @extra_included += Container.where(uuid: container_uuids).to_a
216     end
217
218     index
219   end
220
221   def self._shared_requires_parameters
222     self._index_requires_parameters.merge(
223       {
224         include: {
225           type: 'string',
226           required: false,
227           description: "A string naming referenced objects to include in the `included` field of the response. Supported values are:
228
229   * `\"owner_uuid\"`
230
231 ",
232         },
233       }
234     )
235   end
236
237   protected
238
239   def load_include_param
240     @include = params[:include]
241     if @include.nil? || @include == ""
242       @include = Set[]
243     elsif @include.is_a?(String) && @include.start_with?('[')
244       @include = SafeJSON.load(@include).to_set
245     elsif @include.is_a?(String)
246       @include = Set[@include]
247     else
248       return send_error("'include' parameter must be a string or array", status: 422)
249     end
250   end
251
252   def load_searchable_objects
253     all_objects = []
254     @items_available = 0
255
256     # Reload the orders param, this time without prefixing unqualified
257     # columns ("name" => "groups.name"). Here, unqualified orders
258     # apply to each table being searched, not "groups".
259     load_limit_offset_order_params(fill_table_names: false)
260
261     # Trick apply_where_limit_order_params into applying suitable
262     # per-table values. *_all are the real ones we'll apply to the
263     # aggregate set.
264     limit_all = @limit
265     offset_all = @offset
266     # save the orders from the current request as determined by load_param,
267     # but otherwise discard them because we're going to be getting objects
268     # from many models
269     request_orders = @orders.clone
270     @orders = []
271
272     request_filters = @filters
273
274     klasses = [Group, ContainerRequest, Workflow, Collection]
275
276     table_names = Hash[klasses.collect { |k| [k, k.table_name] }]
277
278     disabled_methods = Rails.configuration.API.DisabledAPIs
279     avail_klasses = table_names.select{|k, t| !disabled_methods[t+'.index']}
280     klasses = avail_klasses.keys
281
282     request_filters.each do |col, op, val|
283       if col.index('.') && !table_names.values.include?(col.split('.', 2)[0])
284         raise ArgumentError.new("Invalid attribute '#{col}' in filter")
285       end
286     end
287
288     wanted_klasses = []
289     request_filters.each do |col,op,val|
290       if op == 'is_a'
291         (val.is_a?(Array) ? val : [val]).each do |type|
292           type = type.split('#')[-1]
293           type[0] = type[0].capitalize
294           wanted_klasses << type
295         end
296       end
297     end
298
299     filter_by_owner = {}
300     if @object
301       if params['recursive']
302         filter_by_owner[:owner_uuid] = [@object.uuid] + @object.descendant_project_uuids
303       else
304         filter_by_owner[:owner_uuid] = @object.uuid
305       end
306
307       if params['exclude_home_project']
308         raise ArgumentError.new "Cannot use 'exclude_home_project' with a parent object"
309       end
310     end
311
312     # Check that any fields in @select are valid for at least one class
313     if @select
314       all_attributes = []
315       klasses.each do |klass|
316         all_attributes.concat klass.selectable_attributes
317       end
318       if klasses.include?(ContainerRequest) && @include.include?("container_uuid")
319         all_attributes.concat Container.selectable_attributes
320       end
321       @select.each do |check|
322         if !all_attributes.include? check
323           raise ArgumentError.new "Invalid attribute '#{check}' in select"
324         end
325       end
326     end
327     any_selections = @select
328
329     included_by_uuid = {}
330
331     error_by_class = {}
332     any_success = false
333
334     klasses.each do |klass|
335       # if klasses are specified, skip all other klass types
336       next if wanted_klasses.any? and !wanted_klasses.include?(klass.to_s)
337
338       # don't process rest of object types if we already have needed number of objects
339       break if params['count'] == 'none' and all_objects.size >= limit_all
340
341       # If the currently requested orders specifically match the
342       # table_name for the current klass, apply that order.
343       # Otherwise, order by recency.
344       request_order =
345         request_orders.andand.find { |r| r =~ /^#{klass.table_name}\./i || r !~ /\./ } ||
346         klass.default_orders.join(", ")
347
348       @select = select_for_klass any_selections, klass, false
349
350       where_conds = filter_by_owner
351       if klass == Collection && @select.nil?
352         @select = klass.selectable_attributes - ["manifest_text", "unsigned_manifest_text"]
353       elsif klass == Group
354         where_conds = where_conds.merge(group_class: ["project","filter"])
355       end
356
357       # Make signed manifest_text not selectable because controller
358       # currently doesn't know to sign it.
359       if @select
360         @select = @select - ["manifest_text"]
361       end
362
363       @filters = request_filters.map do |col, op, val|
364         if !col.index('.')
365           [col, op, val]
366         elsif (col = col.split('.', 2))[0] == klass.table_name
367           [col[1], op, val]
368         else
369           nil
370         end
371       end.compact
372
373       @objects = klass.readable_by(*@read_users, {
374           :include_trash => params[:include_trash],
375           :include_old_versions => params[:include_old_versions]
376         }).order(request_order).where(where_conds)
377
378       if params['exclude_home_project']
379         @objects = exclude_home @objects, klass
380       end
381
382       # Adjust the limit based on number of objects fetched so far
383       klass_limit = limit_all - all_objects.count
384       @limit = klass_limit
385
386       begin
387         apply_where_limit_order_params klass
388       rescue ArgumentError => e
389         if e.inspect =~ /Invalid attribute '.+' for operator '.+' in filter/ or
390           e.inspect =~ /Invalid attribute '.+' for subproperty filter/
391           error_by_class[klass.name] = e
392           next
393         end
394         raise
395       else
396         any_success = true
397       end
398
399       # This actually fetches the objects
400       klass_object_list = object_list(model_class: klass)
401
402       # The appropriate @offset for querying the next table depends on
403       # how many matching rows in this table were skipped due to the
404       # current @offset. If we retrieved any items (or @offset is
405       # already zero), then clearly exactly @offset rows were skipped,
406       # and the correct @offset for the next table is zero.
407       # Otherwise, we need to count all matching rows in the current
408       # table, and subtract that from @offset. If our previous query
409       # used count=none, we will need an additional query to get that
410       # count.
411       if params['count'] == 'none' and @offset > 0 and klass_object_list[:items].length == 0
412         # Just get the count.
413         klass_object_list[:items_available] = @objects.
414                                                 except(:limit).except(:offset).
415                                                 count(@distinct ? :id : '*')
416       end
417
418       klass_items_available = klass_object_list[:items_available]
419       if klass_items_available.nil?
420         # items_available may be nil if count=none and a non-zero
421         # number of items were returned.  One of these cases must be true:
422         #
423         # items returned >= limit, so we won't go to the next table, offset doesn't matter
424         # items returned < limit, so we want to start at the beginning of the next table, offset = 0
425         #
426         @offset = 0
427       else
428         # We have the exact count,
429         @items_available += klass_items_available
430         @offset = [@offset - klass_items_available, 0].max
431       end
432
433       # Add objects to the list of objects to be returned.
434       all_objects += klass_object_list[:items]
435
436       if klass_object_list[:limit] < klass_limit
437         # object_list() had to reduce @limit to comply with
438         # max_index_database_read. From now on, we'll do all queries
439         # with limit=0 and just accumulate items_available.
440         limit_all = all_objects.count
441       end
442
443       if @include.include?("owner_uuid")
444         owners = klass_object_list[:items].map {|i| i[:owner_uuid]}.to_set
445         [Group, User].each do |ownerklass|
446           ownerklass.readable_by(*@read_users).where(uuid: owners.to_a).each do |ow|
447             included_by_uuid[ow.uuid] = ow
448           end
449         end
450       end
451
452       if @include.include?("container_uuid") && klass == ContainerRequest
453         containers = klass_object_list[:items].collect { |cr| cr[:container_uuid] }.to_set
454         Container.where(uuid: containers.to_a).each do |c|
455           included_by_uuid[c.uuid] = c
456         end
457       end
458     end
459
460     # Only error out when every searchable object type errored out
461     if !any_success && error_by_class.size > 0
462       error_msg = error_by_class.collect do |klass, err|
463         "#{err} on object type #{klass}"
464       end.join("\n")
465       raise ArgumentError.new(error_msg)
466     end
467
468     if !@include.empty?
469       @extra_included = included_by_uuid.values
470     end
471
472     @objects = all_objects
473     @limit = limit_all
474     @offset = offset_all
475   end
476
477   def exclude_home objectlist, klass
478     # select records that are readable by current user AND
479     #   the owner_uuid is a user (but not the current user) OR
480     #   the owner_uuid is not readable by the current user
481     #   the owner_uuid is a group but group_class is not a project
482
483     read_parent_check = if current_user.is_admin
484                           ""
485                         else
486                           "NOT EXISTS(SELECT 1 FROM #{PERMISSION_VIEW} WHERE "+
487                             "user_uuid=(:user_uuid) AND target_uuid=#{klass.table_name}.owner_uuid AND perm_level >= 1) OR "
488                         end
489
490     objectlist.where("#{klass.table_name}.owner_uuid IN (SELECT users.uuid FROM users WHERE users.uuid != (:user_uuid)) OR "+
491                      read_parent_check+
492                      "EXISTS(SELECT 1 FROM groups as gp where gp.uuid=#{klass.table_name}.owner_uuid and gp.group_class != 'project')",
493                      user_uuid: current_user.uuid)
494   end
495 end