Merge branch '13146-shared-rails' refs #13146
[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   skip_before_filter :find_object_by_uuid, only: :shared
11   skip_before_filter :render_404_if_no_object, only: :shared
12
13   def self._index_requires_parameters
14     (super rescue {}).
15       merge({
16         include_trash: {
17           type: 'boolean', required: false, description: "Include items whose is_trashed attribute is true."
18         },
19       })
20   end
21
22   def self._contents_requires_parameters
23     params = _index_requires_parameters.
24       merge({
25               uuid: {
26                 type: 'string', required: false, default: nil
27               },
28               recursive: {
29                 type: 'boolean', required: false, description: 'Include contents from child groups recursively.'
30               },
31             })
32     params.delete(:select)
33     params
34   end
35
36   def render_404_if_no_object
37     if params[:action] == 'contents'
38       if !params[:uuid]
39         # OK!
40         @object = nil
41         true
42       elsif @object
43         # Project group
44         true
45       elsif (@object = User.where(uuid: params[:uuid]).first)
46         # "Home" pseudo-project
47         true
48       else
49         super
50       end
51     else
52       super
53     end
54   end
55
56   def contents
57     load_searchable_objects
58     send_json({
59       :kind => "arvados#objectList",
60       :etag => "",
61       :self_link => "",
62       :offset => @offset,
63       :limit => @limit,
64       :items_available => @items_available,
65       :items => @objects.as_api_response(nil)
66     })
67   end
68
69   def shared
70     # The purpose of this endpoint is to return the toplevel set of
71     # groups which are *not* reachable through a direct ownership
72     # chain of projects starting from the current user account.  In
73     # other words, groups which to which access was granted via a
74     # permission link or chain of links.
75     #
76     # This also returns (in the "included" field) the objects that own
77     # those projects (users or non-project groups).
78     #
79     # select groups that are readable by current user AND
80     #   the owner_uuid is a user (but not the current user) OR
81     #   the owner_uuid is not readable by the current user
82     #   the owner_uuid is a group but group_class is not a project
83     #
84     # The intended use of this endpoint is to support clients which
85     # wish to browse those projects which are visible to the user but
86     # are not part of the "home" project.
87
88     load_limit_offset_order_params
89     load_filters_param
90
91     read_parent_check = if current_user.is_admin
92                           ""
93                         else
94                           "NOT EXISTS(SELECT 1 FROM #{PERMISSION_VIEW} WHERE "+
95                             "user_uuid=(:user_uuid) AND target_uuid=groups.owner_uuid AND perm_level >= 1) OR "
96                         end
97
98     @objects = Group.readable_by(*@read_users).where("groups.owner_uuid IN (SELECT users.uuid FROM users WHERE users.uuid != (:user_uuid)) OR "+
99                                                      read_parent_check+
100                                                      "EXISTS(SELECT 1 FROM groups as gp where gp.uuid=groups.owner_uuid and gp.group_class != 'project')",
101                                             user_uuid: current_user.uuid)
102     apply_where_limit_order_params
103
104     owners = @objects.map(&:owner_uuid).to_a
105
106     if params["include"] == "owner_uuid"
107       @extra_included = []
108       [Group, User].each do |klass|
109         @extra_included += klass.readable_by(*@read_users).where(uuid: owners).to_a
110       end
111     end
112
113     index
114   end
115
116   def self._shared_requires_parameters
117     rp = self._index_requires_parameters
118     rp[:include] = { type: 'string', required: false }
119     rp
120   end
121
122   protected
123
124   def load_searchable_objects
125     all_objects = []
126     @items_available = 0
127
128     # Reload the orders param, this time without prefixing unqualified
129     # columns ("name" => "groups.name"). Here, unqualified orders
130     # apply to each table being searched, not "groups".
131     load_limit_offset_order_params(fill_table_names: false)
132
133     # Trick apply_where_limit_order_params into applying suitable
134     # per-table values. *_all are the real ones we'll apply to the
135     # aggregate set.
136     limit_all = @limit
137     offset_all = @offset
138     # save the orders from the current request as determined by load_param,
139     # but otherwise discard them because we're going to be getting objects
140     # from many models
141     request_orders = @orders.clone
142     @orders = []
143
144     request_filters = @filters
145
146     klasses = [Group,
147      Job, PipelineInstance, PipelineTemplate, ContainerRequest, Workflow,
148      Collection,
149      Human, Specimen, Trait]
150
151     table_names = Hash[klasses.collect { |k| [k, k.table_name] }]
152
153     disabled_methods = Rails.configuration.disable_api_methods
154     avail_klasses = table_names.select{|k, t| !disabled_methods.include?(t+'.index')}
155     klasses = avail_klasses.keys
156
157     request_filters.each do |col, op, val|
158       if col.index('.') && !table_names.values.include?(col.split('.', 2)[0])
159         raise ArgumentError.new("Invalid attribute '#{col}' in filter")
160       end
161     end
162
163     wanted_klasses = []
164     request_filters.each do |col,op,val|
165       if op == 'is_a'
166         (val.is_a?(Array) ? val : [val]).each do |type|
167           type = type.split('#')[-1]
168           type[0] = type[0].capitalize
169           wanted_klasses << type
170         end
171       end
172     end
173
174     filter_by_owner = {}
175     if @object
176       if params['recursive']
177         filter_by_owner[:owner_uuid] = [@object.uuid] + @object.descendant_project_uuids
178       else
179         filter_by_owner[:owner_uuid] = @object.uuid
180       end
181     end
182
183     seen_last_class = false
184     klasses.each do |klass|
185       @offset = 0 if seen_last_class  # reset offset for the new next type being processed
186
187       # if current klass is same as params['last_object_class'], mark that fact
188       seen_last_class = true if((params['count'].andand.==('none')) and
189                                 (params['last_object_class'].nil? or
190                                  params['last_object_class'].empty? or
191                                  params['last_object_class'] == klass.to_s))
192
193       # if klasses are specified, skip all other klass types
194       next if wanted_klasses.any? and !wanted_klasses.include?(klass.to_s)
195
196       # don't reprocess klass types that were already seen
197       next if params['count'] == 'none' and !seen_last_class
198
199       # don't process rest of object types if we already have needed number of objects
200       break if params['count'] == 'none' and all_objects.size >= limit_all
201
202       # If the currently requested orders specifically match the
203       # table_name for the current klass, apply that order.
204       # Otherwise, order by recency.
205       request_order =
206         request_orders.andand.find { |r| r =~ /^#{klass.table_name}\./i || r !~ /\./ } ||
207         klass.default_orders.join(", ")
208
209       @select = nil
210       where_conds = filter_by_owner
211       if klass == Collection
212         @select = klass.selectable_attributes - ["manifest_text"]
213       elsif klass == Group
214         where_conds = where_conds.merge(group_class: "project")
215       end
216
217       @filters = request_filters.map do |col, op, val|
218         if !col.index('.')
219           [col, op, val]
220         elsif (col = col.split('.', 2))[0] == klass.table_name
221           [col[1], op, val]
222         else
223           nil
224         end
225       end.compact
226
227       @objects = klass.readable_by(*@read_users, {:include_trash => params[:include_trash]}).
228                  order(request_order).where(where_conds)
229
230       klass_limit = limit_all - all_objects.count
231       @limit = klass_limit
232       apply_where_limit_order_params klass
233       klass_object_list = object_list(model_class: klass)
234       klass_items_available = klass_object_list[:items_available] || 0
235       @items_available += klass_items_available
236       @offset = [@offset - klass_items_available, 0].max
237       all_objects += klass_object_list[:items]
238
239       if klass_object_list[:limit] < klass_limit
240         # object_list() had to reduce @limit to comply with
241         # max_index_database_read. From now on, we'll do all queries
242         # with limit=0 and just accumulate items_available.
243         limit_all = all_objects.count
244       end
245     end
246
247     @objects = all_objects
248     @limit = limit_all
249     @offset = offset_all
250   end
251
252 end