Merge branch '5200-anonymous-download'
[arvados.git] / apps / workbench / app / controllers / application_controller.rb
1 class ApplicationController < ActionController::Base
2   include ArvadosApiClientHelper
3   include ApplicationHelper
4
5   respond_to :html, :json, :js
6   protect_from_forgery
7
8   ERROR_ACTIONS = [:render_error, :render_not_found]
9
10   around_filter :thread_clear
11   around_filter :set_thread_api_token
12   # Methods that don't require login should
13   #   skip_around_filter :require_thread_api_token
14   around_filter :require_thread_api_token, except: ERROR_ACTIONS
15   before_filter :set_cache_buster
16   before_filter :accept_uuid_as_id_param, except: ERROR_ACTIONS
17   before_filter :check_user_agreements, except: ERROR_ACTIONS
18   before_filter :check_user_profile, except: ERROR_ACTIONS
19   before_filter :load_filters_and_paging_params, except: ERROR_ACTIONS
20   before_filter :find_object_by_uuid, except: [:create, :index, :choose] + ERROR_ACTIONS
21   theme :select_theme
22
23   begin
24     rescue_from(ActiveRecord::RecordNotFound,
25                 ActionController::RoutingError,
26                 ActionController::UnknownController,
27                 AbstractController::ActionNotFound,
28                 with: :render_not_found)
29     rescue_from(Exception,
30                 ActionController::UrlGenerationError,
31                 with: :render_exception)
32   end
33
34   def set_cache_buster
35     response.headers["Cache-Control"] = "no-cache, no-store, max-age=0, must-revalidate"
36     response.headers["Pragma"] = "no-cache"
37     response.headers["Expires"] = "Fri, 01 Jan 1990 00:00:00 GMT"
38   end
39
40   def unprocessable(message=nil)
41     @errors ||= []
42
43     @errors << message if message
44     render_error status: 422
45   end
46
47   def render_error(opts={})
48     # Helpers can rely on the presence of @errors to know they're
49     # being used in an error page.
50     @errors ||= []
51     opts[:status] ||= 500
52     respond_to do |f|
53       # json must come before html here, so it gets used as the
54       # default format when js is requested by the client. This lets
55       # ajax:error callback parse the response correctly, even though
56       # the browser can't.
57       f.json { render opts.merge(json: {success: false, errors: @errors}) }
58       f.html { render({action: 'error'}.merge(opts)) }
59     end
60   end
61
62   def render_exception(e)
63     logger.error e.inspect
64     logger.error e.backtrace.collect { |x| x + "\n" }.join('') if e.backtrace
65     err_opts = {status: 422}
66     if e.is_a?(ArvadosApiClient::ApiError)
67       err_opts.merge!(action: 'api_error', locals: {api_error: e})
68       @errors = e.api_response[:errors]
69     elsif @object.andand.errors.andand.full_messages.andand.any?
70       @errors = @object.errors.full_messages
71     else
72       @errors = [e.to_s]
73     end
74     # Make user information available on the error page, falling back to the
75     # session cache if the API server is unavailable.
76     begin
77       load_api_token(session[:arvados_api_token])
78     rescue ArvadosApiClient::ApiError
79       unless session[:user].nil?
80         begin
81           Thread.current[:user] = User.new(session[:user])
82         rescue ArvadosApiClient::ApiError
83           # This can happen if User's columns are unavailable.  Nothing to do.
84         end
85       end
86     end
87     # Preload projects trees for the template.  If that's not doable, set empty
88     # trees so error page rendering can proceed.  (It's easier to rescue the
89     # exception here than in a template.)
90     unless current_user.nil?
91       begin
92         build_project_trees
93       rescue ArvadosApiClient::ApiError
94         # Fall back to the default-setting code later.
95       end
96     end
97     @my_project_tree ||= []
98     @shared_project_tree ||= []
99     render_error(err_opts)
100   end
101
102   def render_not_found(e=ActionController::RoutingError.new("Path not found"))
103     logger.error e.inspect
104     @errors = ["Path not found"]
105     set_thread_api_token do
106       self.render_error(action: '404', status: 404)
107     end
108   end
109
110   # params[:order]:
111   #
112   # The order can be left empty to allow it to default.
113   # Or it can be a comma separated list of real database column names, one per model.
114   # Column names should always be qualified by a table name and a direction is optional, defaulting to asc
115   # (e.g. "collections.name" or "collections.name desc").
116   # If a column name is specified, that table will be sorted by that column.
117   # If there are objects from different models that will be shown (such as in Jobs and Pipelines tab),
118   # then a sort column name can optionally be specified for each model, passed as an comma-separated list (e.g. "jobs.script, pipeline_instances.name")
119   # Currently only one sort column name and direction can be specified for each model.
120   def load_filters_and_paging_params
121     if params[:order].blank?
122       @order = 'created_at desc'
123     elsif params[:order].is_a? Array
124       @order = params[:order]
125     else
126       begin
127         @order = JSON.load(params[:order])
128       rescue
129         @order = params[:order].split(',')
130       end
131     end
132     @order = [@order] unless @order.is_a? Array
133
134     @limit ||= 200
135     if params[:limit]
136       @limit = params[:limit].to_i
137     end
138
139     @offset ||= 0
140     if params[:offset]
141       @offset = params[:offset].to_i
142     end
143
144     @filters ||= []
145     if params[:filters]
146       filters = params[:filters]
147       if filters.is_a? String
148         filters = Oj.load filters
149       elsif filters.is_a? Array
150         filters = filters.collect do |filter|
151           if filter.is_a? String
152             # Accept filters[]=["foo","=","bar"]
153             Oj.load filter
154           else
155             # Accept filters=[["foo","=","bar"]]
156             filter
157           end
158         end
159       end
160       # After this, params[:filters] can be trusted to be an array of arrays:
161       params[:filters] = filters
162       @filters += filters
163     end
164   end
165
166   def find_objects_for_index
167     @objects ||= model_class
168     @objects = @objects.filter(@filters).limit(@limit).offset(@offset)
169     @objects.fetch_multiple_pages(false)
170   end
171
172   def render_index
173     respond_to do |f|
174       f.json {
175         if params[:partial]
176           @next_page_href = next_page_href(partial: params[:partial], filters: @filters.to_json)
177           render json: {
178             content: render_to_string(partial: "show_#{params[:partial]}",
179                                       formats: [:html]),
180             next_page_href: @next_page_href
181           }
182         else
183           render json: @objects
184         end
185       }
186       f.html {
187         if params[:tab_pane]
188           render_pane params[:tab_pane]
189         else
190           render
191         end
192       }
193       f.js { render }
194     end
195   end
196
197   helper_method :render_pane
198   def render_pane tab_pane, opts={}
199     render_opts = {
200       partial: 'show_' + tab_pane.downcase,
201       locals: {
202         comparable: self.respond_to?(:compare),
203         objects: @objects,
204         tab_pane: tab_pane
205       }.merge(opts[:locals] || {})
206     }
207     if opts[:to_string]
208       render_to_string render_opts
209     else
210       render render_opts
211     end
212   end
213
214   def index
215     find_objects_for_index if !@objects
216     render_index
217   end
218
219   helper_method :next_page_offset
220   def next_page_offset objects=nil
221     if !objects
222       objects = @objects
223     end
224     if objects.respond_to?(:result_offset) and
225         objects.respond_to?(:result_limit) and
226         objects.respond_to?(:items_available)
227       next_offset = objects.result_offset + objects.result_limit
228       if next_offset < objects.items_available
229         next_offset
230       else
231         nil
232       end
233     end
234   end
235
236   helper_method :next_page_href
237   def next_page_href with_params={}
238     if next_page_offset
239       url_for with_params.merge(offset: next_page_offset)
240     end
241   end
242
243   def show
244     if !@object
245       return render_not_found("object not found")
246     end
247     respond_to do |f|
248       f.json do
249         extra_attrs = { href: url_for(action: :show, id: @object) }
250         @object.textile_attributes.each do |textile_attr|
251           extra_attrs.merge!({ "#{textile_attr}Textile" => view_context.render_markup(@object.attributes[textile_attr]) })
252         end
253         render json: @object.attributes.merge(extra_attrs)
254       end
255       f.html {
256         if params['tab_pane']
257           render_pane(if params['tab_pane'].is_a? Hash then params['tab_pane']["name"] else params['tab_pane'] end)
258         elsif request.request_method.in? ['GET', 'HEAD']
259           render
260         else
261           redirect_to (params[:return_to] ||
262                        polymorphic_url(@object,
263                                        anchor: params[:redirect_to_anchor]))
264         end
265       }
266       f.js { render }
267     end
268   end
269
270   def choose
271     params[:limit] ||= 40
272     respond_to do |f|
273       if params[:partial]
274         f.json {
275           find_objects_for_index if !@objects
276           render json: {
277             content: render_to_string(partial: "choose_rows.html",
278                                       formats: [:html]),
279             next_page_href: next_page_href(partial: params[:partial])
280           }
281         }
282       end
283       f.js {
284         find_objects_for_index if !@objects
285         render partial: 'choose', locals: {multiple: params[:multiple]}
286       }
287     end
288   end
289
290   def render_content
291     if !@object
292       return render_not_found("object not found")
293     end
294   end
295
296   def new
297     @object = model_class.new
298   end
299
300   def update
301     @updates ||= params[@object.resource_param_name.to_sym]
302     @updates.keys.each do |attr|
303       if @object.send(attr).is_a? Hash
304         if @updates[attr].is_a? String
305           @updates[attr] = Oj.load @updates[attr]
306         end
307         if params[:merge] || params["merge_#{attr}".to_sym]
308           # Merge provided Hash with current Hash, instead of
309           # replacing.
310           @updates[attr] = @object.send(attr).with_indifferent_access.
311             deep_merge(@updates[attr].with_indifferent_access)
312         end
313       end
314     end
315     if @object.update_attributes @updates
316       show
317     else
318       self.render_error status: 422
319     end
320   end
321
322   def create
323     @new_resource_attrs ||= params[model_class.to_s.underscore.singularize]
324     @new_resource_attrs ||= {}
325     @new_resource_attrs.reject! { |k,v| k.to_s == 'uuid' }
326     @object ||= model_class.new @new_resource_attrs, params["options"]
327
328     if @object.save
329       show
330     else
331       render_error status: 422
332     end
333   end
334
335   # Clone the given object, merging any attribute values supplied as
336   # with a create action.
337   def copy
338     @new_resource_attrs ||= params[model_class.to_s.underscore.singularize]
339     @new_resource_attrs ||= {}
340     @object = @object.dup
341     @object.update_attributes @new_resource_attrs
342     if not @new_resource_attrs[:name] and @object.respond_to? :name
343       if @object.name and @object.name != ''
344         @object.name = "Copy of #{@object.name}"
345       else
346         @object.name = ""
347       end
348     end
349     @object.save!
350     show
351   end
352
353   def destroy
354     if @object.destroy
355       respond_to do |f|
356         f.json { render json: @object }
357         f.html {
358           redirect_to(params[:return_to] || :back)
359         }
360         f.js { render }
361       end
362     else
363       self.render_error status: 422
364     end
365   end
366
367   def current_user
368     Thread.current[:user]
369   end
370
371   def model_class
372     controller_name.classify.constantize
373   end
374
375   def breadcrumb_page_name
376     (@breadcrumb_page_name ||
377      (@object.friendly_link_name if @object.respond_to? :friendly_link_name) ||
378      action_name)
379   end
380
381   def index_pane_list
382     %w(Recent)
383   end
384
385   def show_pane_list
386     %w(Attributes Advanced)
387   end
388
389   def set_share_links
390     @user_is_manager = false
391     @share_links = []
392
393     if @object.uuid != current_user.andand.uuid
394       begin
395         @share_links = Link.permissions_for(@object)
396         @user_is_manager = true
397       rescue ArvadosApiClient::AccessForbiddenException,
398         ArvadosApiClient::NotFoundException
399       end
400     end
401   end
402
403   def share_with
404     if not params[:uuids].andand.any?
405       @errors = ["No user/group UUIDs specified to share with."]
406       return render_error(status: 422)
407     end
408     results = {"success" => [], "errors" => []}
409     params[:uuids].each do |shared_uuid|
410       begin
411         Link.create(tail_uuid: shared_uuid, link_class: "permission",
412                     name: "can_read", head_uuid: @object.uuid)
413       rescue ArvadosApiClient::ApiError => error
414         error_list = error.api_response.andand[:errors]
415         if error_list.andand.any?
416           results["errors"] += error_list.map { |e| "#{shared_uuid}: #{e}" }
417         else
418           error_code = error.api_status || "Bad status"
419           results["errors"] << "#{shared_uuid}: #{error_code} response"
420         end
421       else
422         results["success"] << shared_uuid
423       end
424     end
425     if results["errors"].empty?
426       results.delete("errors")
427       status = 200
428     else
429       status = 422
430     end
431     respond_to do |f|
432       f.json { render(json: results, status: status) }
433     end
434   end
435
436   protected
437
438   helper_method :strip_token_from_path
439   def strip_token_from_path(path)
440     path.sub(/([\?&;])api_token=[^&;]*[&;]?/, '\1')
441   end
442
443   def redirect_to_login
444     respond_to do |f|
445       f.html {
446         if request.method.in? ['GET', 'HEAD']
447           redirect_to arvados_api_client.arvados_login_url(return_to: strip_token_from_path(request.url))
448         else
449           flash[:error] = "Either you are not logged in, or your session has timed out. I can't automatically log you in and re-attempt this request."
450           redirect_to :back
451         end
452       }
453       f.json {
454         @errors = ['You do not seem to be logged in. You did not supply an API token with this request, and your session (if any) has timed out.']
455         self.render_error status: 422
456       }
457     end
458     false  # For convenience to return from callbacks
459   end
460
461   def using_specific_api_token(api_token, opts={})
462     start_values = {}
463     [:arvados_api_token, :user].each do |key|
464       start_values[key] = Thread.current[key]
465     end
466     if opts.fetch(:load_user, true)
467       load_api_token(api_token)
468     else
469       Thread.current[:arvados_api_token] = api_token
470       Thread.current[:user] = nil
471     end
472     begin
473       yield
474     ensure
475       start_values.each_key { |key| Thread.current[key] = start_values[key] }
476     end
477   end
478
479
480   def accept_uuid_as_id_param
481     if params[:id] and params[:id].match /\D/
482       params[:uuid] = params.delete :id
483     end
484   end
485
486   def find_object_by_uuid
487     begin
488       if not model_class
489         @object = nil
490       elsif not params[:uuid].is_a?(String)
491         @object = model_class.where(uuid: params[:uuid]).first
492       elsif params[:uuid].empty?
493         @object = nil
494       elsif (model_class != Link and
495              resource_class_for_uuid(params[:uuid]) == Link)
496         @name_link = Link.find(params[:uuid])
497         @object = model_class.find(@name_link.head_uuid)
498       else
499         @object = model_class.find(params[:uuid])
500       end
501     rescue ArvadosApiClient::NotFoundException, ArvadosApiClient::NotLoggedInException, RuntimeError => error
502       if error.is_a?(RuntimeError) and (error.message !~ /^argument to find\(/)
503         raise
504       end
505       render_not_found(error)
506       return false
507     end
508   end
509
510   def thread_clear
511     load_api_token(nil)
512     Rails.cache.delete_matched(/^request_#{Thread.current.object_id}_/)
513     yield
514     Rails.cache.delete_matched(/^request_#{Thread.current.object_id}_/)
515   end
516
517   # Set up the thread with the given API token and associated user object.
518   def load_api_token(new_token)
519     Thread.current[:arvados_api_token] = new_token
520     if new_token.nil?
521       Thread.current[:user] = nil
522     else
523       Thread.current[:user] = User.current
524     end
525   end
526
527   # If there's a valid api_token parameter, set up the session with that
528   # user's information.  Return true if the method redirects the request
529   # (usually a post-login redirect); false otherwise.
530   def setup_user_session
531     return false unless params[:api_token]
532     Thread.current[:arvados_api_token] = params[:api_token]
533     begin
534       user = User.current
535     rescue ArvadosApiClient::NotLoggedInException
536       false  # We may redirect to login, or not, based on the current action.
537     else
538       session[:arvados_api_token] = params[:api_token]
539       # If we later have trouble contacting the API server, we still want
540       # to be able to render basic user information in the UI--see
541       # render_exception above.  We store that in the session here.  This is
542       # not intended to be used as a general-purpose cache.  See #2891.
543       session[:user] = {
544         uuid: user.uuid,
545         email: user.email,
546         first_name: user.first_name,
547         last_name: user.last_name,
548         is_active: user.is_active,
549         is_admin: user.is_admin,
550         prefs: user.prefs
551       }
552
553       if !request.format.json? and request.method.in? ['GET', 'HEAD']
554         # Repeat this request with api_token in the (new) session
555         # cookie instead of the query string.  This prevents API
556         # tokens from appearing in (and being inadvisedly copied
557         # and pasted from) browser Location bars.
558         redirect_to strip_token_from_path(request.fullpath)
559         true
560       else
561         false
562       end
563     ensure
564       Thread.current[:arvados_api_token] = nil
565     end
566   end
567
568   # Save the session API token in thread-local storage, and yield.
569   # This method also takes care of session setup if the request
570   # provides a valid api_token parameter.
571   # If a token is unavailable or expired, the block is still run, with
572   # a nil token.
573   def set_thread_api_token
574     if Thread.current[:arvados_api_token]
575       yield   # An API token has already been found - pass it through.
576       return
577     elsif setup_user_session
578       return  # A new session was set up and received a response.
579     end
580
581     begin
582       load_api_token(session[:arvados_api_token])
583       yield
584     rescue ArvadosApiClient::NotLoggedInException
585       # If we got this error with a token, it must've expired.
586       # Retry the request without a token.
587       unless Thread.current[:arvados_api_token].nil?
588         load_api_token(nil)
589         yield
590       end
591     ensure
592       # Remove token in case this Thread is used for anything else.
593       load_api_token(nil)
594     end
595   end
596
597   # Redirect to login/welcome if client provided expired API token (or none at all)
598   def require_thread_api_token
599     if Thread.current[:arvados_api_token]
600       yield
601     elsif session[:arvados_api_token]
602       # Expired session. Clear it before refreshing login so that,
603       # if this login procedure fails, we end up showing the "please
604       # log in" page instead of getting stuck in a redirect loop.
605       session.delete :arvados_api_token
606       redirect_to_login
607     else
608       redirect_to welcome_users_path(return_to: request.fullpath)
609     end
610   end
611
612   def ensure_current_user_is_admin
613     unless current_user and current_user.is_admin
614       @errors = ['Permission denied']
615       self.render_error status: 401
616     end
617   end
618
619   helper_method :unsigned_user_agreements
620   def unsigned_user_agreements
621     @signed_ua_uuids ||= UserAgreement.signatures.map &:head_uuid
622     @unsigned_user_agreements ||= UserAgreement.all.map do |ua|
623       if not @signed_ua_uuids.index ua.uuid
624         Collection.find(ua.uuid)
625       end
626     end.compact
627   end
628
629   def check_user_agreements
630     if current_user && !current_user.is_active
631       if not current_user.is_invited
632         return redirect_to inactive_users_path(return_to: request.fullpath)
633       end
634       if unsigned_user_agreements.empty?
635         # No agreements to sign. Perhaps we just need to ask?
636         current_user.activate
637         if !current_user.is_active
638           logger.warn "#{current_user.uuid.inspect}: " +
639             "No user agreements to sign, but activate failed!"
640         end
641       end
642       if !current_user.is_active
643         redirect_to user_agreements_path(return_to: request.fullpath)
644       end
645     end
646     true
647   end
648
649   def check_user_profile
650     return true if !current_user
651     if request.method.downcase != 'get' || params[:partial] ||
652        params[:tab_pane] || params[:action_method] ||
653        params[:action] == 'setup_popup'
654       return true
655     end
656
657     if missing_required_profile?
658       redirect_to profile_user_path(current_user.uuid, return_to: request.fullpath)
659     end
660     true
661   end
662
663   helper_method :missing_required_profile?
664   def missing_required_profile?
665     missing_required = false
666
667     profile_config = Rails.configuration.user_profile_form_fields
668     if current_user && profile_config
669       current_user_profile = current_user.prefs[:profile]
670       profile_config.kind_of?(Array) && profile_config.andand.each do |entry|
671         if entry['required']
672           if !current_user_profile ||
673              !current_user_profile[entry['key'].to_sym] ||
674              current_user_profile[entry['key'].to_sym].empty?
675             missing_required = true
676             break
677           end
678         end
679       end
680     end
681
682     missing_required
683   end
684
685   def select_theme
686     return Rails.configuration.arvados_theme
687   end
688
689   @@notification_tests = []
690
691   @@notification_tests.push lambda { |controller, current_user|
692     AuthorizedKey.limit(1).where(authorized_user_uuid: current_user.uuid).each do
693       return nil
694     end
695     return lambda { |view|
696       view.render partial: 'notifications/ssh_key_notification'
697     }
698   }
699
700   @@notification_tests.push lambda { |controller, current_user|
701     Collection.limit(1).where(created_by: current_user.uuid).each do
702       return nil
703     end
704     return lambda { |view|
705       view.render partial: 'notifications/collections_notification'
706     }
707   }
708
709   @@notification_tests.push lambda { |controller, current_user|
710     PipelineInstance.limit(1).where(created_by: current_user.uuid).each do
711       return nil
712     end
713     return lambda { |view|
714       view.render partial: 'notifications/pipelines_notification'
715     }
716   }
717
718   helper_method :user_notifications
719   def user_notifications
720     return [] if @errors or not current_user.andand.is_active
721     @notifications ||= @@notification_tests.map do |t|
722       t.call(self, current_user)
723     end.compact
724   end
725
726   helper_method :all_projects
727   def all_projects
728     @all_projects ||= Group.
729       filter([['group_class','=','project']]).order('name')
730   end
731
732   helper_method :my_projects
733   def my_projects
734     return @my_projects if @my_projects
735     @my_projects = []
736     root_of = {}
737     all_projects.each do |g|
738       root_of[g.uuid] = g.owner_uuid
739       @my_projects << g
740     end
741     done = false
742     while not done
743       done = true
744       root_of = root_of.each_with_object({}) do |(child, parent), h|
745         if root_of[parent]
746           h[child] = root_of[parent]
747           done = false
748         else
749           h[child] = parent
750         end
751       end
752     end
753     @my_projects = @my_projects.select do |g|
754       root_of[g.uuid] == current_user.uuid
755     end
756   end
757
758   helper_method :projects_shared_with_me
759   def projects_shared_with_me
760     my_project_uuids = my_projects.collect &:uuid
761     all_projects.reject { |x| x.uuid.in? my_project_uuids }
762   end
763
764   helper_method :recent_jobs_and_pipelines
765   def recent_jobs_and_pipelines
766     (Job.limit(10) |
767      PipelineInstance.limit(10)).
768       sort_by do |x|
769       (x.finished_at || x.started_at rescue nil) || x.modified_at || x.created_at
770     end.reverse
771   end
772
773   helper_method :running_pipelines
774   def running_pipelines
775     pi = PipelineInstance.order(["started_at asc", "created_at asc"]).filter([["state", "in", ["RunningOnServer", "RunningOnClient"]]])
776     jobs = {}
777     pi.each do |pl|
778       pl.components.each do |k,v|
779         if v.is_a? Hash and v[:job]
780           jobs[v[:job][:uuid]] = {}
781         end
782       end
783     end
784
785     if jobs.keys.any?
786       Job.filter([["uuid", "in", jobs.keys]]).each do |j|
787         jobs[j[:uuid]] = j
788       end
789
790       pi.each do |pl|
791         pl.components.each do |k,v|
792           if v.is_a? Hash and v[:job]
793             v[:job] = jobs[v[:job][:uuid]]
794           end
795         end
796       end
797     end
798
799     pi
800   end
801
802   helper_method :finished_pipelines
803   def finished_pipelines lim
804     PipelineInstance.limit(lim).order(["finished_at desc"]).filter([["state", "in", ["Complete", "Failed", "Paused"]], ["finished_at", "!=", nil]])
805   end
806
807   helper_method :recent_collections
808   def recent_collections lim
809     c = Collection.limit(lim).order(["modified_at desc"]).filter([["owner_uuid", "is_a", "arvados#group"]])
810     own = {}
811     Group.filter([["uuid", "in", c.map(&:owner_uuid)]]).each do |g|
812       own[g[:uuid]] = g
813     end
814     {collections: c, owners: own}
815   end
816
817   helper_method :my_project_tree
818   def my_project_tree
819     build_project_trees
820     @my_project_tree
821   end
822
823   helper_method :shared_project_tree
824   def shared_project_tree
825     build_project_trees
826     @shared_project_tree
827   end
828
829   def build_project_trees
830     return if @my_project_tree and @shared_project_tree
831     parent_of = {current_user.uuid => 'me'}
832     all_projects.each do |ob|
833       parent_of[ob.uuid] = ob.owner_uuid
834     end
835     children_of = {false => [], 'me' => [current_user]}
836     all_projects.each do |ob|
837       if ob.owner_uuid != current_user.uuid and
838           not parent_of.has_key? ob.owner_uuid
839         parent_of[ob.uuid] = false
840       end
841       children_of[parent_of[ob.uuid]] ||= []
842       children_of[parent_of[ob.uuid]] << ob
843     end
844     buildtree = lambda do |children_of, root_uuid=false|
845       tree = {}
846       children_of[root_uuid].andand.each do |ob|
847         tree[ob] = buildtree.call(children_of, ob.uuid)
848       end
849       tree
850     end
851     sorted_paths = lambda do |tree, depth=0|
852       paths = []
853       tree.keys.sort_by { |ob|
854         ob.is_a?(String) ? ob : ob.friendly_link_name
855       }.each do |ob|
856         paths << {object: ob, depth: depth}
857         paths += sorted_paths.call tree[ob], depth+1
858       end
859       paths
860     end
861     @my_project_tree =
862       sorted_paths.call buildtree.call(children_of, 'me')
863     @shared_project_tree =
864       sorted_paths.call({'Projects shared with me' =>
865                           buildtree.call(children_of, false)})
866   end
867
868   helper_method :get_object
869   def get_object uuid
870     if @get_object.nil? and @objects
871       @get_object = @objects.each_with_object({}) do |object, h|
872         h[object.uuid] = object
873       end
874     end
875     @get_object ||= {}
876     @get_object[uuid]
877   end
878
879   helper_method :project_breadcrumbs
880   def project_breadcrumbs
881     crumbs = []
882     current = @name_link || @object
883     while current
884       # Halt if a group ownership loop is detected. API should refuse
885       # to produce this state, but it could still arise from a race
886       # condition when group ownership changes between our find()
887       # queries.
888       break if crumbs.collect(&:uuid).include? current.uuid
889
890       if current.is_a?(Group) and current.group_class == 'project'
891         crumbs.prepend current
892       end
893       if current.is_a? Link
894         current = Group.find?(current.tail_uuid)
895       else
896         current = Group.find?(current.owner_uuid)
897       end
898     end
899     crumbs
900   end
901
902   helper_method :current_project_uuid
903   def current_project_uuid
904     if @object.is_a? Group and @object.group_class == 'project'
905       @object.uuid
906     elsif @name_link.andand.tail_uuid
907       @name_link.tail_uuid
908     elsif @object and resource_class_for_uuid(@object.owner_uuid) == Group
909       @object.owner_uuid
910     else
911       nil
912     end
913   end
914
915   # helper method to get links for given object or uuid
916   helper_method :links_for_object
917   def links_for_object object_or_uuid
918     raise ArgumentError, 'No input argument' unless object_or_uuid
919     preload_links_for_objects([object_or_uuid])
920     uuid = object_or_uuid.is_a?(String) ? object_or_uuid : object_or_uuid.uuid
921     @all_links_for[uuid] ||= []
922   end
923
924   # helper method to preload links for given objects and uuids
925   helper_method :preload_links_for_objects
926   def preload_links_for_objects objects_and_uuids
927     @all_links_for ||= {}
928
929     raise ArgumentError, 'Argument is not an array' unless objects_and_uuids.is_a? Array
930     return @all_links_for if objects_and_uuids.empty?
931
932     uuids = objects_and_uuids.collect { |x| x.is_a?(String) ? x : x.uuid }
933
934     # if already preloaded for all of these uuids, return
935     if not uuids.select { |x| @all_links_for[x].nil? }.any?
936       return @all_links_for
937     end
938
939     uuids.each do |x|
940       @all_links_for[x] = []
941     end
942
943     # TODO: make sure we get every page of results from API server
944     Link.filter([['head_uuid', 'in', uuids]]).each do |link|
945       @all_links_for[link.head_uuid] << link
946     end
947     @all_links_for
948   end
949
950   # helper method to get a certain number of objects of a specific type
951   # this can be used to replace any uses of: "dataclass.limit(n)"
952   helper_method :get_n_objects_of_class
953   def get_n_objects_of_class dataclass, size
954     @objects_map_for ||= {}
955
956     raise ArgumentError, 'Argument is not a data class' unless dataclass.is_a? Class and dataclass < ArvadosBase
957     raise ArgumentError, 'Argument is not a valid limit size' unless (size && size>0)
958
959     # if the objects_map_for has a value for this dataclass, and the
960     # size used to retrieve those objects is equal, return it
961     size_key = "#{dataclass.name}_size"
962     if @objects_map_for[dataclass.name] && @objects_map_for[size_key] &&
963         (@objects_map_for[size_key] == size)
964       return @objects_map_for[dataclass.name]
965     end
966
967     @objects_map_for[size_key] = size
968     @objects_map_for[dataclass.name] = dataclass.limit(size)
969   end
970
971   # helper method to get collections for the given uuid
972   helper_method :collections_for_object
973   def collections_for_object uuid
974     raise ArgumentError, 'No input argument' unless uuid
975     preload_collections_for_objects([uuid])
976     @all_collections_for[uuid] ||= []
977   end
978
979   # helper method to preload collections for the given uuids
980   helper_method :preload_collections_for_objects
981   def preload_collections_for_objects uuids
982     @all_collections_for ||= {}
983
984     raise ArgumentError, 'Argument is not an array' unless uuids.is_a? Array
985     return @all_collections_for if uuids.empty?
986
987     # if already preloaded for all of these uuids, return
988     if not uuids.select { |x| @all_collections_for[x].nil? }.any?
989       return @all_collections_for
990     end
991
992     uuids.each do |x|
993       @all_collections_for[x] = []
994     end
995
996     # TODO: make sure we get every page of results from API server
997     Collection.where(uuid: uuids).each do |collection|
998       @all_collections_for[collection.uuid] << collection
999     end
1000     @all_collections_for
1001   end
1002
1003   # helper method to get log collections for the given log
1004   helper_method :log_collections_for_object
1005   def log_collections_for_object log
1006     raise ArgumentError, 'No input argument' unless log
1007
1008     preload_log_collections_for_objects([log])
1009
1010     uuid = log
1011     fixup = /([a-f0-9]{32}\+\d+)(\+?.*)/.match(log)
1012     if fixup && fixup.size>1
1013       uuid = fixup[1]
1014     end
1015
1016     @all_log_collections_for[uuid] ||= []
1017   end
1018
1019   # helper method to preload collections for the given uuids
1020   helper_method :preload_log_collections_for_objects
1021   def preload_log_collections_for_objects logs
1022     @all_log_collections_for ||= {}
1023
1024     raise ArgumentError, 'Argument is not an array' unless logs.is_a? Array
1025     return @all_log_collections_for if logs.empty?
1026
1027     uuids = []
1028     logs.each do |log|
1029       fixup = /([a-f0-9]{32}\+\d+)(\+?.*)/.match(log)
1030       if fixup && fixup.size>1
1031         uuids << fixup[1]
1032       else
1033         uuids << log
1034       end
1035     end
1036
1037     # if already preloaded for all of these uuids, return
1038     if not uuids.select { |x| @all_log_collections_for[x].nil? }.any?
1039       return @all_log_collections_for
1040     end
1041
1042     uuids.each do |x|
1043       @all_log_collections_for[x] = []
1044     end
1045
1046     # TODO: make sure we get every page of results from API server
1047     Collection.where(uuid: uuids).each do |collection|
1048       @all_log_collections_for[collection.uuid] << collection
1049     end
1050     @all_log_collections_for
1051   end
1052
1053   # helper method to get object of a given dataclass and uuid
1054   helper_method :object_for_dataclass
1055   def object_for_dataclass dataclass, uuid
1056     raise ArgumentError, 'No input argument dataclass' unless (dataclass && uuid)
1057     preload_objects_for_dataclass(dataclass, [uuid])
1058     @objects_for[uuid]
1059   end
1060
1061   # helper method to preload objects for given dataclass and uuids
1062   helper_method :preload_objects_for_dataclass
1063   def preload_objects_for_dataclass dataclass, uuids
1064     @objects_for ||= {}
1065
1066     raise ArgumentError, 'Argument is not a data class' unless dataclass.is_a? Class
1067     raise ArgumentError, 'Argument is not an array' unless uuids.is_a? Array
1068
1069     return @objects_for if uuids.empty?
1070
1071     # if already preloaded for all of these uuids, return
1072     if not uuids.select { |x| @objects_for[x].nil? }.any?
1073       return @objects_for
1074     end
1075
1076     dataclass.where(uuid: uuids).each do |obj|
1077       @objects_for[obj.uuid] = obj
1078     end
1079     @objects_for
1080   end
1081
1082   def wiselinks_layout
1083     'body'
1084   end
1085 end