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