1 class ApplicationController < ActionController::Base
2 include ArvadosApiClientHelper
3 include ApplicationHelper
5 respond_to :html, :json, :js
8 ERROR_ACTIONS = [:render_error, :render_not_found]
10 around_filter :thread_clear
11 around_filter :set_thread_api_token
12 # Methods that don't require login should
13 # skip_around_filter :require_thread_api_token
14 around_filter :require_thread_api_token, except: ERROR_ACTIONS
15 before_filter :set_cache_buster
16 before_filter :accept_uuid_as_id_param, except: ERROR_ACTIONS
17 before_filter :check_user_agreements, except: ERROR_ACTIONS
18 before_filter :check_user_profile, except: ERROR_ACTIONS
19 before_filter :load_filters_and_paging_params, except: ERROR_ACTIONS
20 before_filter :find_object_by_uuid, except: [:create, :index, :choose] + ERROR_ACTIONS
24 rescue_from(ActiveRecord::RecordNotFound,
25 ActionController::RoutingError,
26 ActionController::UnknownController,
27 AbstractController::ActionNotFound,
28 with: :render_not_found)
29 rescue_from(Exception,
30 ActionController::UrlGenerationError,
31 with: :render_exception)
35 response.headers["Cache-Control"] = "no-cache, no-store, max-age=0, must-revalidate"
36 response.headers["Pragma"] = "no-cache"
37 response.headers["Expires"] = "Fri, 01 Jan 1990 00:00:00 GMT"
40 def unprocessable(message=nil)
43 @errors << message if message
44 render_error status: 422
47 def render_error(opts={})
48 # Helpers can rely on the presence of @errors to know they're
49 # being used in an error page.
53 # json must come before html here, so it gets used as the
54 # default format when js is requested by the client. This lets
55 # ajax:error callback parse the response correctly, even though
57 f.json { render opts.merge(json: {success: false, errors: @errors}) }
58 f.html { render({action: 'error'}.merge(opts)) }
62 def render_exception(e)
63 logger.error e.inspect
64 logger.error e.backtrace.collect { |x| x + "\n" }.join('') if e.backtrace
65 err_opts = {status: 422}
66 if e.is_a?(ArvadosApiClient::ApiError)
67 err_opts.merge!(action: 'api_error', locals: {api_error: e})
68 @errors = e.api_response[:errors]
69 elsif @object.andand.errors.andand.full_messages.andand.any?
70 @errors = @object.errors.full_messages
74 # Make user information available on the error page, falling back to the
75 # session cache if the API server is unavailable.
77 load_api_token(session[:arvados_api_token])
78 rescue ArvadosApiClient::ApiError
79 unless session[:user].nil?
81 Thread.current[:user] = User.new(session[:user])
82 rescue ArvadosApiClient::ApiError
83 # This can happen if User's columns are unavailable. Nothing to do.
87 # Preload projects trees for the template. If that's not doable, set empty
88 # trees so error page rendering can proceed. (It's easier to rescue the
89 # exception here than in a template.)
90 unless current_user.nil?
93 rescue ArvadosApiClient::ApiError
94 # Fall back to the default-setting code later.
97 @my_project_tree ||= []
98 @shared_project_tree ||= []
99 render_error(err_opts)
102 def render_not_found(e=ActionController::RoutingError.new("Path not found"))
103 logger.error e.inspect
104 @errors = ["Path not found"]
105 set_thread_api_token do
106 self.render_error(action: '404', status: 404)
112 # The order can be left empty to allow it to default.
113 # Or it can be a comma separated list of real database column names, one per model.
114 # Column names should always be qualified by a table name and a direction is optional, defaulting to asc
115 # (e.g. "collections.name" or "collections.name desc").
116 # If a column name is specified, that table will be sorted by that column.
117 # If there are objects from different models that will be shown (such as in Jobs and Pipelines tab),
118 # then a sort column name can optionally be specified for each model, passed as an comma-separated list (e.g. "jobs.script, pipeline_instances.name")
119 # Currently only one sort column name and direction can be specified for each model.
120 def load_filters_and_paging_params
121 if params[:order].blank?
122 @order = 'created_at desc'
123 elsif params[:order].is_a? Array
124 @order = params[:order]
127 @order = JSON.load(params[:order])
129 @order = params[:order].split(',')
132 @order = [@order] unless @order.is_a? Array
136 @limit = params[:limit].to_i
141 @offset = params[:offset].to_i
146 filters = params[:filters]
147 if filters.is_a? String
148 filters = Oj.load filters
149 elsif filters.is_a? Array
150 filters = filters.collect do |filter|
151 if filter.is_a? String
152 # Accept filters[]=["foo","=","bar"]
155 # Accept filters=[["foo","=","bar"]]
160 # After this, params[:filters] can be trusted to be an array of arrays:
161 params[:filters] = filters
166 def find_objects_for_index
167 @objects ||= model_class
168 @objects = @objects.filter(@filters).limit(@limit).offset(@offset)
169 @objects.fetch_multiple_pages(false)
176 @next_page_href = next_page_href(partial: params[:partial], filters: @filters.to_json)
178 content: render_to_string(partial: "show_#{params[:partial]}",
180 next_page_href: @next_page_href
183 render json: @objects
188 render_pane params[:tab_pane]
197 helper_method :render_pane
198 def render_pane tab_pane, opts={}
200 partial: 'show_' + tab_pane.downcase,
202 comparable: self.respond_to?(:compare),
205 }.merge(opts[:locals] || {})
208 render_to_string render_opts
215 find_objects_for_index if !@objects
219 helper_method :next_page_offset
220 def next_page_offset objects=nil
224 if objects.respond_to?(:result_offset) and
225 objects.respond_to?(:result_limit) and
226 objects.respond_to?(:items_available)
227 next_offset = objects.result_offset + objects.result_limit
228 if next_offset < objects.items_available
236 helper_method :next_page_href
237 def next_page_href with_params={}
239 url_for with_params.merge(offset: next_page_offset)
245 return render_not_found("object not found")
249 extra_attrs = { href: url_for(action: :show, id: @object) }
250 @object.textile_attributes.each do |textile_attr|
251 extra_attrs.merge!({ "#{textile_attr}Textile" => view_context.render_markup(@object.attributes[textile_attr]) })
253 render json: @object.attributes.merge(extra_attrs)
256 if params['tab_pane']
257 render_pane(if params['tab_pane'].is_a? Hash then params['tab_pane']["name"] else params['tab_pane'] end)
258 elsif request.request_method.in? ['GET', 'HEAD']
261 redirect_to (params[:return_to] ||
262 polymorphic_url(@object,
263 anchor: params[:redirect_to_anchor]))
271 params[:limit] ||= 40
275 find_objects_for_index if !@objects
277 content: render_to_string(partial: "choose_rows.html",
279 next_page_href: next_page_href(partial: params[:partial])
284 find_objects_for_index if !@objects
285 render partial: 'choose', locals: {multiple: params[:multiple]}
292 return render_not_found("object not found")
297 @object = model_class.new
301 @updates ||= params[@object.resource_param_name.to_sym]
302 @updates.keys.each do |attr|
303 if @object.send(attr).is_a? Hash
304 if @updates[attr].is_a? String
305 @updates[attr] = Oj.load @updates[attr]
307 if params[:merge] || params["merge_#{attr}".to_sym]
308 # Merge provided Hash with current Hash, instead of
310 @updates[attr] = @object.send(attr).with_indifferent_access.
311 deep_merge(@updates[attr].with_indifferent_access)
315 if @object.update_attributes @updates
318 self.render_error status: 422
323 @new_resource_attrs ||= params[model_class.to_s.underscore.singularize]
324 @new_resource_attrs ||= {}
325 @new_resource_attrs.reject! { |k,v| k.to_s == 'uuid' }
326 @object ||= model_class.new @new_resource_attrs, params["options"]
331 render_error status: 422
335 # Clone the given object, merging any attribute values supplied as
336 # with a create action.
338 @new_resource_attrs ||= params[model_class.to_s.underscore.singularize]
339 @new_resource_attrs ||= {}
340 @object = @object.dup
341 @object.update_attributes @new_resource_attrs
342 if not @new_resource_attrs[:name] and @object.respond_to? :name
343 if @object.name and @object.name != ''
344 @object.name = "Copy of #{@object.name}"
356 f.json { render json: @object }
358 redirect_to(params[:return_to] || :back)
363 self.render_error status: 422
368 Thread.current[:user]
372 controller_name.classify.constantize
375 def breadcrumb_page_name
376 (@breadcrumb_page_name ||
377 (@object.friendly_link_name if @object.respond_to? :friendly_link_name) ||
386 %w(Attributes Advanced)
390 @user_is_manager = false
393 if @object.uuid != current_user.andand.uuid
395 @share_links = Link.permissions_for(@object)
396 @user_is_manager = true
397 rescue ArvadosApiClient::AccessForbiddenException,
398 ArvadosApiClient::NotFoundException
404 if not params[:uuids].andand.any?
405 @errors = ["No user/group UUIDs specified to share with."]
406 return render_error(status: 422)
408 results = {"success" => [], "errors" => []}
409 params[:uuids].each do |shared_uuid|
411 Link.create(tail_uuid: shared_uuid, link_class: "permission",
412 name: "can_read", head_uuid: @object.uuid)
413 rescue ArvadosApiClient::ApiError => error
414 error_list = error.api_response.andand[:errors]
415 if error_list.andand.any?
416 results["errors"] += error_list.map { |e| "#{shared_uuid}: #{e}" }
418 error_code = error.api_status || "Bad status"
419 results["errors"] << "#{shared_uuid}: #{error_code} response"
422 results["success"] << shared_uuid
425 if results["errors"].empty?
426 results.delete("errors")
432 f.json { render(json: results, status: status) }
438 def strip_token_from_path(path)
439 path.sub(/([\?&;])api_token=[^&;]*[&;]?/, '\1')
442 def redirect_to_login
445 if request.method.in? ['GET', 'HEAD']
446 redirect_to arvados_api_client.arvados_login_url(return_to: strip_token_from_path(request.url))
448 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."
453 @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.']
454 self.render_error status: 422
457 false # For convenience to return from callbacks
460 def using_specific_api_token(api_token, opts={})
462 [:arvados_api_token, :user].each do |key|
463 start_values[key] = Thread.current[key]
465 if opts.fetch(:load_user, true)
466 load_api_token(api_token)
468 Thread.current[:arvados_api_token] = api_token
469 Thread.current[:user] = nil
474 start_values.each_key { |key| Thread.current[key] = start_values[key] }
479 def accept_uuid_as_id_param
480 if params[:id] and params[:id].match /\D/
481 params[:uuid] = params.delete :id
485 def find_object_by_uuid
489 elsif not params[:uuid].is_a?(String)
490 @object = model_class.where(uuid: params[:uuid]).first
491 elsif params[:uuid].empty?
493 elsif (model_class != Link and
494 resource_class_for_uuid(params[:uuid]) == Link)
495 @name_link = Link.find(params[:uuid])
496 @object = model_class.find(@name_link.head_uuid)
498 @object = model_class.find(params[:uuid])
500 rescue ArvadosApiClient::NotFoundException, RuntimeError => error
501 if error.is_a?(RuntimeError) and (error.message !~ /^argument to find\(/)
504 render_not_found(error)
511 Rails.cache.delete_matched(/^request_#{Thread.current.object_id}_/)
513 Rails.cache.delete_matched(/^request_#{Thread.current.object_id}_/)
516 # Set up the thread with the given API token and associated user object.
517 def load_api_token(new_token)
518 Thread.current[:arvados_api_token] = new_token
520 Thread.current[:user] = nil
522 Thread.current[:user] = User.current
526 # If there's a valid api_token parameter, set up the session with that
527 # user's information. Return true if the method redirects the request
528 # (usually a post-login redirect); false otherwise.
529 def setup_user_session
530 return false unless params[:api_token]
531 Thread.current[:arvados_api_token] = params[:api_token]
534 rescue ArvadosApiClient::NotLoggedInException
535 false # We may redirect to login, or not, based on the current action.
537 session[:arvados_api_token] = params[:api_token]
538 # If we later have trouble contacting the API server, we still want
539 # to be able to render basic user information in the UI--see
540 # render_exception above. We store that in the session here. This is
541 # not intended to be used as a general-purpose cache. See #2891.
545 first_name: user.first_name,
546 last_name: user.last_name,
547 is_active: user.is_active,
548 is_admin: user.is_admin,
552 if !request.format.json? and request.method.in? ['GET', 'HEAD']
553 # Repeat this request with api_token in the (new) session
554 # cookie instead of the query string. This prevents API
555 # tokens from appearing in (and being inadvisedly copied
556 # and pasted from) browser Location bars.
557 redirect_to strip_token_from_path(request.fullpath)
563 Thread.current[:arvados_api_token] = nil
567 # Save the session API token in thread-local storage, and yield.
568 # This method also takes care of session setup if the request
569 # provides a valid api_token parameter.
570 # If a token is unavailable or expired, the block is still run, with
572 def set_thread_api_token
573 if Thread.current[:arvados_api_token]
574 yield # An API token has already been found - pass it through.
576 elsif setup_user_session
577 return # A new session was set up and received a response.
581 load_api_token(session[:arvados_api_token])
583 rescue ArvadosApiClient::NotLoggedInException
584 # If we got this error with a token, it must've expired.
585 # Retry the request without a token.
586 unless Thread.current[:arvados_api_token].nil?
591 # Remove token in case this Thread is used for anything else.
596 # Redirect to login/welcome if client provided expired API token (or none at all)
597 def require_thread_api_token
598 if Thread.current[:arvados_api_token]
600 elsif session[:arvados_api_token]
601 # Expired session. Clear it before refreshing login so that,
602 # if this login procedure fails, we end up showing the "please
603 # log in" page instead of getting stuck in a redirect loop.
604 session.delete :arvados_api_token
607 redirect_to welcome_users_path(return_to: request.fullpath)
611 def ensure_current_user_is_admin
612 unless current_user and current_user.is_admin
613 @errors = ['Permission denied']
614 self.render_error status: 401
618 helper_method :unsigned_user_agreements
619 def unsigned_user_agreements
620 @signed_ua_uuids ||= UserAgreement.signatures.map &:head_uuid
621 @unsigned_user_agreements ||= UserAgreement.all.map do |ua|
622 if not @signed_ua_uuids.index ua.uuid
623 Collection.find(ua.uuid)
628 def check_user_agreements
629 if current_user && !current_user.is_active
630 if not current_user.is_invited
631 return redirect_to inactive_users_path(return_to: request.fullpath)
633 if unsigned_user_agreements.empty?
634 # No agreements to sign. Perhaps we just need to ask?
635 current_user.activate
636 if !current_user.is_active
637 logger.warn "#{current_user.uuid.inspect}: " +
638 "No user agreements to sign, but activate failed!"
641 if !current_user.is_active
642 redirect_to user_agreements_path(return_to: request.fullpath)
648 def check_user_profile
649 return true if !current_user
650 if request.method.downcase != 'get' || params[:partial] ||
651 params[:tab_pane] || params[:action_method] ||
652 params[:action] == 'setup_popup'
656 if missing_required_profile?
657 redirect_to profile_user_path(current_user.uuid, return_to: request.fullpath)
662 helper_method :missing_required_profile?
663 def missing_required_profile?
664 missing_required = false
666 profile_config = Rails.configuration.user_profile_form_fields
667 if current_user && profile_config
668 current_user_profile = current_user.prefs[:profile]
669 profile_config.kind_of?(Array) && profile_config.andand.each do |entry|
671 if !current_user_profile ||
672 !current_user_profile[entry['key'].to_sym] ||
673 current_user_profile[entry['key'].to_sym].empty?
674 missing_required = true
685 return Rails.configuration.arvados_theme
688 @@notification_tests = []
690 @@notification_tests.push lambda { |controller, current_user|
691 AuthorizedKey.limit(1).where(authorized_user_uuid: current_user.uuid).each do
694 return lambda { |view|
695 view.render partial: 'notifications/ssh_key_notification'
699 @@notification_tests.push lambda { |controller, current_user|
700 Collection.limit(1).where(created_by: current_user.uuid).each do
703 return lambda { |view|
704 view.render partial: 'notifications/collections_notification'
708 @@notification_tests.push lambda { |controller, current_user|
709 PipelineInstance.limit(1).where(created_by: current_user.uuid).each do
712 return lambda { |view|
713 view.render partial: 'notifications/pipelines_notification'
717 helper_method :user_notifications
718 def user_notifications
719 return [] if @errors or not current_user.andand.is_active
720 @notifications ||= @@notification_tests.map do |t|
721 t.call(self, current_user)
725 helper_method :all_projects
727 @all_projects ||= Group.
728 filter([['group_class','=','project']]).order('name')
731 helper_method :my_projects
733 return @my_projects if @my_projects
736 all_projects.each do |g|
737 root_of[g.uuid] = g.owner_uuid
743 root_of = root_of.each_with_object({}) do |(child, parent), h|
745 h[child] = root_of[parent]
752 @my_projects = @my_projects.select do |g|
753 root_of[g.uuid] == current_user.uuid
757 helper_method :projects_shared_with_me
758 def projects_shared_with_me
759 my_project_uuids = my_projects.collect &:uuid
760 all_projects.reject { |x| x.uuid.in? my_project_uuids }
763 helper_method :recent_jobs_and_pipelines
764 def recent_jobs_and_pipelines
766 PipelineInstance.limit(10)).
768 (x.finished_at || x.started_at rescue nil) || x.modified_at || x.created_at
772 helper_method :running_pipelines
773 def running_pipelines
774 pi = PipelineInstance.order(["started_at asc", "created_at asc"]).filter([["state", "in", ["RunningOnServer", "RunningOnClient"]]])
777 pl.components.each do |k,v|
778 if v.is_a? Hash and v[:job]
779 jobs[v[:job][:uuid]] = {}
785 Job.filter([["uuid", "in", jobs.keys]]).each do |j|
790 pl.components.each do |k,v|
791 if v.is_a? Hash and v[:job]
792 v[:job] = jobs[v[:job][:uuid]]
801 helper_method :finished_pipelines
802 def finished_pipelines lim
803 PipelineInstance.limit(lim).order(["finished_at desc"]).filter([["state", "in", ["Complete", "Failed", "Paused"]], ["finished_at", "!=", nil]])
806 helper_method :recent_collections
807 def recent_collections lim
808 c = Collection.limit(lim).order(["modified_at desc"]).filter([["owner_uuid", "is_a", "arvados#group"]])
810 Group.filter([["uuid", "in", c.map(&:owner_uuid)]]).each do |g|
813 {collections: c, owners: own}
816 helper_method :my_project_tree
822 helper_method :shared_project_tree
823 def shared_project_tree
828 def build_project_trees
829 return if @my_project_tree and @shared_project_tree
830 parent_of = {current_user.uuid => 'me'}
831 all_projects.each do |ob|
832 parent_of[ob.uuid] = ob.owner_uuid
834 children_of = {false => [], 'me' => [current_user]}
835 all_projects.each do |ob|
836 if ob.owner_uuid != current_user.uuid and
837 not parent_of.has_key? ob.owner_uuid
838 parent_of[ob.uuid] = false
840 children_of[parent_of[ob.uuid]] ||= []
841 children_of[parent_of[ob.uuid]] << ob
843 buildtree = lambda do |children_of, root_uuid=false|
845 children_of[root_uuid].andand.each do |ob|
846 tree[ob] = buildtree.call(children_of, ob.uuid)
850 sorted_paths = lambda do |tree, depth=0|
852 tree.keys.sort_by { |ob|
853 ob.is_a?(String) ? ob : ob.friendly_link_name
855 paths << {object: ob, depth: depth}
856 paths += sorted_paths.call tree[ob], depth+1
861 sorted_paths.call buildtree.call(children_of, 'me')
862 @shared_project_tree =
863 sorted_paths.call({'Projects shared with me' =>
864 buildtree.call(children_of, false)})
867 helper_method :get_object
869 if @get_object.nil? and @objects
870 @get_object = @objects.each_with_object({}) do |object, h|
871 h[object.uuid] = object
878 helper_method :project_breadcrumbs
879 def project_breadcrumbs
881 current = @name_link || @object
883 # Halt if a group ownership loop is detected. API should refuse
884 # to produce this state, but it could still arise from a race
885 # condition when group ownership changes between our find()
887 break if crumbs.collect(&:uuid).include? current.uuid
889 if current.is_a?(Group) and current.group_class == 'project'
890 crumbs.prepend current
892 if current.is_a? Link
893 current = Group.find?(current.tail_uuid)
895 current = Group.find?(current.owner_uuid)
901 helper_method :current_project_uuid
902 def current_project_uuid
903 if @object.is_a? Group and @object.group_class == 'project'
905 elsif @name_link.andand.tail_uuid
907 elsif @object and resource_class_for_uuid(@object.owner_uuid) == Group
914 # helper method to get links for given object or uuid
915 helper_method :links_for_object
916 def links_for_object object_or_uuid
917 raise ArgumentError, 'No input argument' unless object_or_uuid
918 preload_links_for_objects([object_or_uuid])
919 uuid = object_or_uuid.is_a?(String) ? object_or_uuid : object_or_uuid.uuid
920 @all_links_for[uuid] ||= []
923 # helper method to preload links for given objects and uuids
924 helper_method :preload_links_for_objects
925 def preload_links_for_objects objects_and_uuids
926 @all_links_for ||= {}
928 raise ArgumentError, 'Argument is not an array' unless objects_and_uuids.is_a? Array
929 return @all_links_for if objects_and_uuids.empty?
931 uuids = objects_and_uuids.collect { |x| x.is_a?(String) ? x : x.uuid }
933 # if already preloaded for all of these uuids, return
934 if not uuids.select { |x| @all_links_for[x].nil? }.any?
935 return @all_links_for
939 @all_links_for[x] = []
942 # TODO: make sure we get every page of results from API server
943 Link.filter([['head_uuid', 'in', uuids]]).each do |link|
944 @all_links_for[link.head_uuid] << link
949 # helper method to get a certain number of objects of a specific type
950 # this can be used to replace any uses of: "dataclass.limit(n)"
951 helper_method :get_n_objects_of_class
952 def get_n_objects_of_class dataclass, size
953 @objects_map_for ||= {}
955 raise ArgumentError, 'Argument is not a data class' unless dataclass.is_a? Class and dataclass < ArvadosBase
956 raise ArgumentError, 'Argument is not a valid limit size' unless (size && size>0)
958 # if the objects_map_for has a value for this dataclass, and the
959 # size used to retrieve those objects is equal, return it
960 size_key = "#{dataclass.name}_size"
961 if @objects_map_for[dataclass.name] && @objects_map_for[size_key] &&
962 (@objects_map_for[size_key] == size)
963 return @objects_map_for[dataclass.name]
966 @objects_map_for[size_key] = size
967 @objects_map_for[dataclass.name] = dataclass.limit(size)
970 # helper method to get collections for the given uuid
971 helper_method :collections_for_object
972 def collections_for_object uuid
973 raise ArgumentError, 'No input argument' unless uuid
974 preload_collections_for_objects([uuid])
975 @all_collections_for[uuid] ||= []
978 # helper method to preload collections for the given uuids
979 helper_method :preload_collections_for_objects
980 def preload_collections_for_objects uuids
981 @all_collections_for ||= {}
983 raise ArgumentError, 'Argument is not an array' unless uuids.is_a? Array
984 return @all_collections_for if uuids.empty?
986 # if already preloaded for all of these uuids, return
987 if not uuids.select { |x| @all_collections_for[x].nil? }.any?
988 return @all_collections_for
992 @all_collections_for[x] = []
995 # TODO: make sure we get every page of results from API server
996 Collection.where(uuid: uuids).each do |collection|
997 @all_collections_for[collection.uuid] << collection
1002 # helper method to get log collections for the given log
1003 helper_method :log_collections_for_object
1004 def log_collections_for_object log
1005 raise ArgumentError, 'No input argument' unless log
1007 preload_log_collections_for_objects([log])
1010 fixup = /([a-f0-9]{32}\+\d+)(\+?.*)/.match(log)
1011 if fixup && fixup.size>1
1015 @all_log_collections_for[uuid] ||= []
1018 # helper method to preload collections for the given uuids
1019 helper_method :preload_log_collections_for_objects
1020 def preload_log_collections_for_objects logs
1021 @all_log_collections_for ||= {}
1023 raise ArgumentError, 'Argument is not an array' unless logs.is_a? Array
1024 return @all_log_collections_for if logs.empty?
1028 fixup = /([a-f0-9]{32}\+\d+)(\+?.*)/.match(log)
1029 if fixup && fixup.size>1
1036 # if already preloaded for all of these uuids, return
1037 if not uuids.select { |x| @all_log_collections_for[x].nil? }.any?
1038 return @all_log_collections_for
1042 @all_log_collections_for[x] = []
1045 # TODO: make sure we get every page of results from API server
1046 Collection.where(uuid: uuids).each do |collection|
1047 @all_log_collections_for[collection.uuid] << collection
1049 @all_log_collections_for
1052 # helper method to get object of a given dataclass and uuid
1053 helper_method :object_for_dataclass
1054 def object_for_dataclass dataclass, uuid
1055 raise ArgumentError, 'No input argument dataclass' unless (dataclass && uuid)
1056 preload_objects_for_dataclass(dataclass, [uuid])
1060 # helper method to preload objects for given dataclass and uuids
1061 helper_method :preload_objects_for_dataclass
1062 def preload_objects_for_dataclass dataclass, uuids
1065 raise ArgumentError, 'Argument is not a data class' unless dataclass.is_a? Class
1066 raise ArgumentError, 'Argument is not an array' unless uuids.is_a? Array
1068 return @objects_for if uuids.empty?
1070 # if already preloaded for all of these uuids, return
1071 if not uuids.select { |x| @objects_for[x].nil? }.any?
1075 dataclass.where(uuid: uuids).each do |obj|
1076 @objects_for[obj.uuid] = obj
1081 def wiselinks_layout