3296: check profile if request method is get.
[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 :check_user_agreements, except: ERROR_ACTIONS
16   before_filter :check_user_profile, except: [:update_profile] + 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(@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(@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   def find_object_by_uuid
354     if params[:id] and params[:id].match /\D/
355       params[:uuid] = params.delete :id
356     end
357     begin
358       if not model_class
359         @object = nil
360       elsif not params[:uuid].is_a?(String)
361         @object = model_class.where(uuid: params[:uuid]).first
362       elsif params[:uuid].empty?
363         @object = nil
364       elsif (model_class != Link and
365              resource_class_for_uuid(params[:uuid]) == Link)
366         @name_link = Link.find(params[:uuid])
367         @object = model_class.find(@name_link.head_uuid)
368       else
369         @object = model_class.find(params[:uuid])
370       end
371     rescue ArvadosApiClient::NotFoundException, RuntimeError => error
372       if error.is_a?(RuntimeError) and (error.message !~ /^argument to find\(/)
373         raise
374       end
375       render_not_found(error)
376       return false
377     end
378   end
379
380   def thread_clear
381     load_api_token(nil)
382     Rails.cache.delete_matched(/^request_#{Thread.current.object_id}_/)
383     yield
384     Rails.cache.delete_matched(/^request_#{Thread.current.object_id}_/)
385   end
386
387   # Set up the thread with the given API token and associated user object.
388   def load_api_token(new_token)
389     Thread.current[:arvados_api_token] = new_token
390     if new_token.nil?
391       Thread.current[:user] = nil
392     elsif (new_token == session[:arvados_api_token]) and
393         session[:user].andand[:is_active]
394       Thread.current[:user] = User.new(session[:user])
395     else
396       Thread.current[:user] = User.current
397     end
398   end
399
400   # If there's a valid api_token parameter, set up the session with that
401   # user's information.  Return true if the method redirects the request
402   # (usually a post-login redirect); false otherwise.
403   def setup_user_session
404     return false unless params[:api_token]
405     Thread.current[:arvados_api_token] = params[:api_token]
406     begin
407       user = User.current
408     rescue ArvadosApiClient::NotLoggedInException
409       false  # We may redirect to login, or not, based on the current action.
410     else
411       session[:arvados_api_token] = params[:api_token]
412       session[:user] = {
413         uuid: user.uuid,
414         email: user.email,
415         first_name: user.first_name,
416         last_name: user.last_name,
417         is_active: user.is_active,
418         is_admin: user.is_admin,
419         prefs: user.prefs
420       }
421       session[:skip_profile] = params[:skip_profile]
422
423       if !request.format.json? and request.method.in? ['GET', 'HEAD']
424         # Repeat this request with api_token in the (new) session
425         # cookie instead of the query string.  This prevents API
426         # tokens from appearing in (and being inadvisedly copied
427         # and pasted from) browser Location bars.
428         redirect_to strip_token_from_path(request.fullpath)
429         true
430       else
431         false
432       end
433     ensure
434       Thread.current[:arvados_api_token] = nil
435     end
436   end
437
438   # Save the session API token in thread-local storage, and yield.
439   # This method also takes care of session setup if the request
440   # provides a valid api_token parameter.
441   # If a token is unavailable or expired, the block is still run, with
442   # a nil token.
443   def set_thread_api_token
444     if Thread.current[:arvados_api_token]
445       yield   # An API token has already been found - pass it through.
446       return
447     elsif setup_user_session
448       return  # A new session was set up and received a response.
449     end
450
451     begin
452       load_api_token(session[:arvados_api_token])
453       yield
454     rescue ArvadosApiClient::NotLoggedInException
455       # If we got this error with a token, it must've expired.
456       # Retry the request without a token.
457       unless Thread.current[:arvados_api_token].nil?
458         load_api_token(nil)
459         yield
460       end
461     ensure
462       # Remove token in case this Thread is used for anything else.
463       load_api_token(nil)
464     end
465   end
466
467   # Reroute this request if an API token is unavailable.
468   def require_thread_api_token
469     if Thread.current[:arvados_api_token]
470       yield
471     elsif session[:arvados_api_token]
472       # Expired session. Clear it before refreshing login so that,
473       # if this login procedure fails, we end up showing the "please
474       # log in" page instead of getting stuck in a redirect loop.
475       session.delete :arvados_api_token
476       redirect_to_login
477     else
478       render 'users/welcome'
479     end
480   end
481
482   def ensure_current_user_is_admin
483     unless current_user and current_user.is_admin
484       @errors = ['Permission denied']
485       self.render_error status: 401
486     end
487   end
488
489   def check_user_agreements
490     if current_user && !current_user.is_active
491       if not current_user.is_invited
492         return render 'users/inactive'
493       end
494       signatures = UserAgreement.signatures
495       @signed_ua_uuids = UserAgreement.signatures.map &:head_uuid
496       @required_user_agreements = UserAgreement.all.map do |ua|
497         if not @signed_ua_uuids.index ua.uuid
498           Collection.find(ua.uuid)
499         end
500       end.compact
501       if @required_user_agreements.empty?
502         # No agreements to sign. Perhaps we just need to ask?
503         current_user.activate
504         if !current_user.is_active
505           logger.warn "#{current_user.uuid.inspect}: " +
506             "No user agreements to sign, but activate failed!"
507         end
508       end
509       if !current_user.is_active
510         render 'user_agreements/index'
511       end
512     end
513     true
514   end
515
516   def check_user_profile
517     @profile_config = Rails.configuration.user_profile_form_fields
518
519     if params[:skip_profile] || session[:skip_profile] || request.method.downcase != 'get'
520       return true
521     end
522
523     if current_user && @profile_config
524       missing_required_profile = false
525
526       @this_user = User.limit(1).where(uuid: current_user.uuid).first
527       user_prefs = @this_user.prefs
528       @current_user_profile = user_prefs[:profile] if user_prefs
529
530       @profile_config.andand.each do |entry|
531         if entry['required']
532           if !@current_user_profile || !@current_user_profile[entry['key'].to_sym]
533             missing_required_profile = true
534             break
535           end
536         end
537       end
538
539       if missing_required_profile
540         render 'users/profile'
541       end
542     end
543     true
544   end
545
546   def select_theme
547     return Rails.configuration.arvados_theme
548   end
549
550   @@notification_tests = []
551
552   @@notification_tests.push lambda { |controller, current_user|
553     AuthorizedKey.limit(1).where(authorized_user_uuid: current_user.uuid).each do
554       return nil
555     end
556     return lambda { |view|
557       view.render partial: 'notifications/ssh_key_notification'
558     }
559   }
560
561   #@@notification_tests.push lambda { |controller, current_user|
562   #  Job.limit(1).where(created_by: current_user.uuid).each do
563   #    return nil
564   #  end
565   #  return lambda { |view|
566   #    view.render partial: 'notifications/jobs_notification'
567   #  }
568   #}
569
570   @@notification_tests.push lambda { |controller, current_user|
571     Collection.limit(1).where(created_by: current_user.uuid).each do
572       return nil
573     end
574     return lambda { |view|
575       view.render partial: 'notifications/collections_notification'
576     }
577   }
578
579   @@notification_tests.push lambda { |controller, current_user|
580     PipelineInstance.limit(1).where(created_by: current_user.uuid).each do
581       return nil
582     end
583     return lambda { |view|
584       view.render partial: 'notifications/pipelines_notification'
585     }
586   }
587
588   def check_user_notifications
589     return if params['tab_pane']
590
591     @notification_count = 0
592     @notifications = []
593
594     if current_user
595       @showallalerts = false
596       @@notification_tests.each do |t|
597         a = t.call(self, current_user)
598         if a
599           @notification_count += 1
600           @notifications.push a
601         end
602       end
603     end
604
605     if @notification_count == 0
606       @notification_count = ''
607     end
608   end
609
610   helper_method :all_projects
611   def all_projects
612     @all_projects ||= Group.
613       filter([['group_class','in',['project','folder']]]).order('name')
614   end
615
616   helper_method :my_projects
617   def my_projects
618     return @my_projects if @my_projects
619     @my_projects = []
620     root_of = {}
621     all_projects.each do |g|
622       root_of[g.uuid] = g.owner_uuid
623       @my_projects << g
624     end
625     done = false
626     while not done
627       done = true
628       root_of = root_of.each_with_object({}) do |(child, parent), h|
629         if root_of[parent]
630           h[child] = root_of[parent]
631           done = false
632         else
633           h[child] = parent
634         end
635       end
636     end
637     @my_projects = @my_projects.select do |g|
638       root_of[g.uuid] == current_user.uuid
639     end
640   end
641
642   helper_method :projects_shared_with_me
643   def projects_shared_with_me
644     my_project_uuids = my_projects.collect &:uuid
645     all_projects.reject { |x| x.uuid.in? my_project_uuids }
646   end
647
648   helper_method :recent_jobs_and_pipelines
649   def recent_jobs_and_pipelines
650     (Job.limit(10) |
651      PipelineInstance.limit(10)).
652       sort_by do |x|
653       (x.finished_at || x.started_at rescue nil) || x.modified_at || x.created_at
654     end.reverse
655   end
656
657   helper_method :my_project_tree
658   def my_project_tree
659     build_project_trees
660     @my_project_tree
661   end
662
663   helper_method :shared_project_tree
664   def shared_project_tree
665     build_project_trees
666     @shared_project_tree
667   end
668
669   def build_project_trees
670     return if @my_project_tree and @shared_project_tree
671     parent_of = {current_user.uuid => 'me'}
672     all_projects.each do |ob|
673       parent_of[ob.uuid] = ob.owner_uuid
674     end
675     children_of = {false => [], 'me' => [current_user]}
676     all_projects.each do |ob|
677       if ob.owner_uuid != current_user.uuid and
678           not parent_of.has_key? ob.owner_uuid
679         parent_of[ob.uuid] = false
680       end
681       children_of[parent_of[ob.uuid]] ||= []
682       children_of[parent_of[ob.uuid]] << ob
683     end
684     buildtree = lambda do |children_of, root_uuid=false|
685       tree = {}
686       children_of[root_uuid].andand.each do |ob|
687         tree[ob] = buildtree.call(children_of, ob.uuid)
688       end
689       tree
690     end
691     sorted_paths = lambda do |tree, depth=0|
692       paths = []
693       tree.keys.sort_by { |ob|
694         ob.is_a?(String) ? ob : ob.friendly_link_name
695       }.each do |ob|
696         paths << {object: ob, depth: depth}
697         paths += sorted_paths.call tree[ob], depth+1
698       end
699       paths
700     end
701     @my_project_tree =
702       sorted_paths.call buildtree.call(children_of, 'me')
703     @shared_project_tree =
704       sorted_paths.call({'Shared with me' =>
705                           buildtree.call(children_of, false)})
706   end
707
708   helper_method :get_object
709   def get_object uuid
710     if @get_object.nil? and @objects
711       @get_object = @objects.each_with_object({}) do |object, h|
712         h[object.uuid] = object
713       end
714     end
715     @get_object ||= {}
716     @get_object[uuid]
717   end
718
719   helper_method :project_breadcrumbs
720   def project_breadcrumbs
721     crumbs = []
722     current = @name_link || @object
723     while current
724       if current.is_a?(Group) and current.group_class.in?(['project','folder'])
725         crumbs.prepend current
726       end
727       if current.is_a? Link
728         current = Group.find?(current.tail_uuid)
729       else
730         current = Group.find?(current.owner_uuid)
731       end
732     end
733     crumbs
734   end
735
736   helper_method :current_project_uuid
737   def current_project_uuid
738     if @object.is_a? Group and @object.group_class.in?(['project','folder'])
739       @object.uuid
740     elsif @name_link.andand.tail_uuid
741       @name_link.tail_uuid
742     elsif @object and resource_class_for_uuid(@object.owner_uuid) == Group
743       @object.owner_uuid
744     else
745       nil
746     end
747   end
748
749   # helper method to get links for given object or uuid
750   helper_method :links_for_object
751   def links_for_object object_or_uuid
752     raise ArgumentError, 'No input argument' unless object_or_uuid
753     preload_links_for_objects([object_or_uuid])
754     uuid = object_or_uuid.is_a?(String) ? object_or_uuid : object_or_uuid.uuid
755     @all_links_for[uuid] ||= []
756   end
757
758   # helper method to preload links for given objects and uuids
759   helper_method :preload_links_for_objects
760   def preload_links_for_objects objects_and_uuids
761     @all_links_for ||= {}
762
763     raise ArgumentError, 'Argument is not an array' unless objects_and_uuids.is_a? Array
764     return @all_links_for if objects_and_uuids.empty?
765
766     uuids = objects_and_uuids.collect { |x| x.is_a?(String) ? x : x.uuid }
767
768     # if already preloaded for all of these uuids, return
769     if not uuids.select { |x| @all_links_for[x].nil? }.any?
770       return @all_links_for
771     end
772
773     uuids.each do |x|
774       @all_links_for[x] = []
775     end
776
777     # TODO: make sure we get every page of results from API server
778     Link.filter([['head_uuid', 'in', uuids]]).each do |link|
779       @all_links_for[link.head_uuid] << link
780     end
781     @all_links_for
782   end
783
784   # helper method to get a certain number of objects of a specific type
785   # this can be used to replace any uses of: "dataclass.limit(n)"
786   helper_method :get_n_objects_of_class
787   def get_n_objects_of_class dataclass, size
788     @objects_map_for ||= {}
789
790     raise ArgumentError, 'Argument is not a data class' unless dataclass.is_a? Class and dataclass < ArvadosBase
791     raise ArgumentError, 'Argument is not a valid limit size' unless (size && size>0)
792
793     # if the objects_map_for has a value for this dataclass, and the
794     # size used to retrieve those objects is equal, return it
795     size_key = "#{dataclass.name}_size"
796     if @objects_map_for[dataclass.name] && @objects_map_for[size_key] &&
797         (@objects_map_for[size_key] == size)
798       return @objects_map_for[dataclass.name]
799     end
800
801     @objects_map_for[size_key] = size
802     @objects_map_for[dataclass.name] = dataclass.limit(size)
803   end
804
805   # helper method to get collections for the given uuid
806   helper_method :collections_for_object
807   def collections_for_object uuid
808     raise ArgumentError, 'No input argument' unless uuid
809     preload_collections_for_objects([uuid])
810     @all_collections_for[uuid] ||= []
811   end
812
813   # helper method to preload collections for the given uuids
814   helper_method :preload_collections_for_objects
815   def preload_collections_for_objects uuids
816     @all_collections_for ||= {}
817
818     raise ArgumentError, 'Argument is not an array' unless uuids.is_a? Array
819     return @all_collections_for if uuids.empty?
820
821     # if already preloaded for all of these uuids, return
822     if not uuids.select { |x| @all_collections_for[x].nil? }.any?
823       return @all_collections_for
824     end
825
826     uuids.each do |x|
827       @all_collections_for[x] = []
828     end
829
830     # TODO: make sure we get every page of results from API server
831     Collection.where(uuid: uuids).each do |collection|
832       @all_collections_for[collection.uuid] << collection
833     end
834     @all_collections_for
835   end
836
837   # helper method to get log collections for the given log
838   helper_method :log_collections_for_object
839   def log_collections_for_object log
840     raise ArgumentError, 'No input argument' unless log
841
842     preload_log_collections_for_objects([log])
843
844     uuid = log
845     fixup = /([a-f0-9]{32}\+\d+)(\+?.*)/.match(log)
846     if fixup && fixup.size>1
847       uuid = fixup[1]
848     end
849
850     @all_log_collections_for[uuid] ||= []
851   end
852
853   # helper method to preload collections for the given uuids
854   helper_method :preload_log_collections_for_objects
855   def preload_log_collections_for_objects logs
856     @all_log_collections_for ||= {}
857
858     raise ArgumentError, 'Argument is not an array' unless logs.is_a? Array
859     return @all_log_collections_for if logs.empty?
860
861     uuids = []
862     logs.each do |log|
863       fixup = /([a-f0-9]{32}\+\d+)(\+?.*)/.match(log)
864       if fixup && fixup.size>1
865         uuids << fixup[1]
866       else
867         uuids << log
868       end
869     end
870
871     # if already preloaded for all of these uuids, return
872     if not uuids.select { |x| @all_log_collections_for[x].nil? }.any?
873       return @all_log_collections_for
874     end
875
876     uuids.each do |x|
877       @all_log_collections_for[x] = []
878     end
879
880     # TODO: make sure we get every page of results from API server
881     Collection.where(uuid: uuids).each do |collection|
882       @all_log_collections_for[collection.uuid] << collection
883     end
884     @all_log_collections_for
885   end
886
887   # helper method to get object of a given dataclass and uuid
888   helper_method :object_for_dataclass
889   def object_for_dataclass dataclass, uuid
890     raise ArgumentError, 'No input argument dataclass' unless (dataclass && uuid)
891     preload_objects_for_dataclass(dataclass, [uuid])
892     @objects_for[uuid]
893   end
894
895   # helper method to preload objects for given dataclass and uuids
896   helper_method :preload_objects_for_dataclass
897   def preload_objects_for_dataclass dataclass, uuids
898     @objects_for ||= {}
899
900     raise ArgumentError, 'Argument is not a data class' unless dataclass.is_a? Class
901     raise ArgumentError, 'Argument is not an array' unless uuids.is_a? Array
902
903     return @objects_for if uuids.empty?
904
905     # if already preloaded for all of these uuids, return
906     if not uuids.select { |x| @objects_for[x].nil? }.any?
907       return @objects_for
908     end
909
910     dataclass.where(uuid: uuids).each do |obj|
911       @objects_for[obj.uuid] = obj
912     end
913     @objects_for
914   end
915
916   def wiselinks_layout
917     'body'
918   end
919 end