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