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 :check_user_agreements, except: ERROR_ACTIONS
16 before_filter :check_user_notifications, except: ERROR_ACTIONS
17 before_filter :find_object_by_uuid, except: [:index, :choose] + ERROR_ACTIONS
21 rescue_from(ActiveRecord::RecordNotFound,
22 ActionController::RoutingError,
23 ActionController::UnknownController,
24 AbstractController::ActionNotFound,
25 with: :render_not_found)
26 rescue_from(Exception,
27 ActionController::UrlGenerationError,
28 with: :render_exception)
31 def unprocessable(message=nil)
34 @errors << message if message
35 render_error status: 422
38 def render_error(opts)
39 opts = {status: 500}.merge opts
41 # json must come before html here, so it gets used as the
42 # default format when js is requested by the client. This lets
43 # ajax:error callback parse the response correctly, even though
45 f.json { render opts.merge(json: {success: false, errors: @errors}) }
46 f.html { render opts.merge(controller: 'application', action: 'error') }
50 def render_exception(e)
51 logger.error e.inspect
52 logger.error e.backtrace.collect { |x| x + "\n" }.join('') if e.backtrace
53 if @object.andand.errors.andand.full_messages.andand.any?
54 @errors = @object.errors.full_messages
58 if e.is_a? ArvadosApiClient::NotLoggedInException
59 self.render_error status: 422
61 set_thread_api_token do
62 self.render_error status: 422
67 def render_not_found(e=ActionController::RoutingError.new("Path not found"))
68 logger.error e.inspect
69 @errors = ["Path not found"]
70 set_thread_api_token do
71 self.render_error status: 404
75 def find_objects_for_index
78 @limit = params[:limit].to_i
83 @offset = params[:offset].to_i
88 filters = params[:filters]
89 if filters.is_a? String
90 filters = Oj.load filters
95 @objects ||= model_class
96 @objects = @objects.filter(@filters).limit(@limit).offset(@offset)
101 f.json { render json: @objects }
103 if params['tab_pane']
104 comparable = self.respond_to? :compare
105 render(partial: 'show_' + params['tab_pane'].downcase,
106 locals: { comparable: comparable, objects: @objects })
116 find_objects_for_index if !@objects
120 helper_method :next_page_offset
122 if @objects.respond_to?(:result_offset) and
123 @objects.respond_to?(:result_limit) and
124 @objects.respond_to?(:items_available)
125 next_offset = @objects.result_offset + @objects.result_limit
126 if next_offset < @objects.items_available
136 return render_not_found("object not found")
139 f.json { render json: @object.attributes.merge(href: url_for(@object)) }
141 if params['tab_pane']
142 comparable = self.respond_to? :compare
143 render(partial: 'show_' + params['tab_pane'].downcase,
144 locals: { comparable: comparable, objects: @objects })
145 elsif request.method.in? ['GET', 'HEAD']
148 redirect_to params[:return_to] || @object
156 params[:limit] ||= 40
158 if params[:project_uuid] and !params[:project_uuid].empty?
159 # We want the chooser to show objects of the controllers's model_class
160 # type within a specific project specified by project_uuid, so fetch the
161 # project and request the contents of the project filtered on the
162 # controllers's model_class kind.
163 @objects = Group.find(params[:project_uuid]).contents({:filters => [['uuid', 'is_a', "arvados\##{ArvadosApiClient.class_kind(model_class)}"]]})
165 find_objects_for_index if !@objects
171 content: render_to_string(partial: "choose_rows.html",
174 multiple: params[:multiple]
176 next_page_href: @next_page_href
181 render partial: 'choose', locals: {multiple: params[:multiple]}
188 return render_not_found("object not found")
193 @object = model_class.new
197 @updates ||= params[@object.resource_param_name.to_sym]
198 @updates.keys.each do |attr|
199 if @object.send(attr).is_a? Hash
200 if @updates[attr].is_a? String
201 @updates[attr] = Oj.load @updates[attr]
203 if params[:merge] || params["merge_#{attr}".to_sym]
204 # Merge provided Hash with current Hash, instead of
206 @updates[attr] = @object.send(attr).with_indifferent_access.
207 deep_merge(@updates[attr].with_indifferent_access)
211 if @object.update_attributes @updates
214 self.render_error status: 422
219 @new_resource_attrs ||= params[model_class.to_s.underscore.singularize]
220 @new_resource_attrs ||= {}
221 @new_resource_attrs.reject! { |k,v| k.to_s == 'uuid' }
222 @object ||= model_class.new @new_resource_attrs, params["options"]
225 f.json { render json: @object.attributes.merge(href: url_for(@object)) }
232 self.render_error status: 422
236 # Clone the given object, merging any attribute values supplied as
237 # with a create action.
239 @new_resource_attrs ||= params[model_class.to_s.underscore.singularize]
240 @new_resource_attrs ||= {}
241 @object = @object.dup
242 @object.update_attributes @new_resource_attrs
243 if not @new_resource_attrs[:name] and @object.respond_to? :name
244 if @object.name and @object.name != ''
245 @object.name = "Copy of #{@object.name}"
247 @object.name = "Copy of unnamed #{@object.class_for_display.downcase}"
257 f.json { render json: @object }
259 redirect_to(params[:return_to] || :back)
264 self.render_error status: 422
269 return Thread.current[:user] if Thread.current[:user]
271 if Thread.current[:arvados_api_token]
273 if session[:user][:is_active] != true
274 Thread.current[:user] = User.current
276 Thread.current[:user] = User.new(session[:user])
279 Thread.current[:user] = User.current
282 logger.error "No API token in Thread"
288 controller_name.classify.constantize
291 def breadcrumb_page_name
292 (@breadcrumb_page_name ||
293 (@object.friendly_link_name if @object.respond_to? :friendly_link_name) ||
302 %w(Attributes Advanced)
307 def strip_token_from_path(path)
308 path.sub(/([\?&;])api_token=[^&;]*[&;]?/, '\1')
311 def redirect_to_login
314 if request.method.in? ['GET', 'HEAD']
315 redirect_to arvados_api_client.arvados_login_url(return_to: strip_token_from_path(request.url))
317 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."
322 @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.']
323 self.render_error status: 422
326 false # For convenience to return from callbacks
329 def using_specific_api_token(api_token)
331 [:arvados_api_token, :user].each do |key|
332 start_values[key] = Thread.current[key]
334 Thread.current[:arvados_api_token] = api_token
335 Thread.current[:user] = nil
339 start_values.each_key { |key| Thread.current[key] = start_values[key] }
343 def find_object_by_uuid
344 if params[:id] and params[:id].match /\D/
345 params[:uuid] = params.delete :id
349 elsif params[:uuid].is_a? String
350 if params[:uuid].empty?
353 if (model_class != Link and
354 resource_class_for_uuid(params[:uuid]) == Link)
355 @name_link = Link.find(params[:uuid])
356 @object = model_class.find(@name_link.head_uuid)
358 @object = model_class.find(params[:uuid])
362 @object = model_class.where(uuid: params[:uuid]).first
367 Thread.current[:arvados_api_token] = nil
368 Thread.current[:user] = nil
369 Rails.cache.delete_matched(/^request_#{Thread.current.object_id}_/)
371 Rails.cache.delete_matched(/^request_#{Thread.current.object_id}_/)
374 # Save the session API token in thread-local storage, and yield.
375 # This method also takes care of session setup if the request
376 # provides a valid api_token parameter.
377 # If a token is unavailable or expired, the block is still run, with
379 def set_thread_api_token
380 # If an API token has already been found, pass it through.
381 if Thread.current[:arvados_api_token]
387 # If there's a valid api_token parameter, use it to set up the session.
388 if (Thread.current[:arvados_api_token] = params[:api_token]) and
390 session[:arvados_api_token] = params[:api_token]
395 first_name: u.first_name,
396 last_name: u.last_name,
397 is_active: u.is_active,
398 is_admin: u.is_admin,
401 if !request.format.json? and request.method.in? ['GET', 'HEAD']
402 # Repeat this request with api_token in the (new) session
403 # cookie instead of the query string. This prevents API
404 # tokens from appearing in (and being inadvisedly copied
405 # and pasted from) browser Location bars.
406 redirect_to strip_token_from_path(request.fullpath)
411 # With setup done, handle the request using the session token.
412 Thread.current[:arvados_api_token] = session[:arvados_api_token]
415 rescue ArvadosApiClient::NotLoggedInException
416 # If we got this error with a token, it must've expired.
417 # Retry the request without a token.
418 unless Thread.current[:arvados_api_token].nil?
419 Thread.current[:arvados_api_token] = nil
424 # Remove token in case this Thread is used for anything else.
425 Thread.current[:arvados_api_token] = nil
429 # Reroute this request if an API token is unavailable.
430 def require_thread_api_token
431 if Thread.current[:arvados_api_token]
433 elsif session[:arvados_api_token]
434 # Expired session. Clear it before refreshing login so that,
435 # if this login procedure fails, we end up showing the "please
436 # log in" page instead of getting stuck in a redirect loop.
437 session.delete :arvados_api_token
440 render 'users/welcome'
446 Link.where(uuid: 'just-verifying-my-api-token')
448 rescue ArvadosApiClient::NotLoggedInException
453 def ensure_current_user_is_admin
454 unless current_user and current_user.is_admin
455 @errors = ['Permission denied']
456 self.render_error status: 401
460 def check_user_agreements
461 if current_user && !current_user.is_active
462 if not current_user.is_invited
463 return render 'users/inactive'
465 signatures = UserAgreement.signatures
466 @signed_ua_uuids = UserAgreement.signatures.map &:head_uuid
467 @required_user_agreements = UserAgreement.all.map do |ua|
468 if not @signed_ua_uuids.index ua.uuid
469 Collection.find(ua.uuid)
472 if @required_user_agreements.empty?
473 # No agreements to sign. Perhaps we just need to ask?
474 current_user.activate
475 if !current_user.is_active
476 logger.warn "#{current_user.uuid.inspect}: " +
477 "No user agreements to sign, but activate failed!"
480 if !current_user.is_active
481 render 'user_agreements/index'
488 return Rails.configuration.arvados_theme
491 @@notification_tests = []
493 @@notification_tests.push lambda { |controller, current_user|
494 AuthorizedKey.limit(1).where(authorized_user_uuid: current_user.uuid).each do
497 return lambda { |view|
498 view.render partial: 'notifications/ssh_key_notification'
502 #@@notification_tests.push lambda { |controller, current_user|
503 # Job.limit(1).where(created_by: current_user.uuid).each do
506 # return lambda { |view|
507 # view.render partial: 'notifications/jobs_notification'
511 @@notification_tests.push lambda { |controller, current_user|
512 Collection.limit(1).where(created_by: current_user.uuid).each do
515 return lambda { |view|
516 view.render partial: 'notifications/collections_notification'
520 @@notification_tests.push lambda { |controller, current_user|
521 PipelineInstance.limit(1).where(created_by: current_user.uuid).each do
524 return lambda { |view|
525 view.render partial: 'notifications/pipelines_notification'
529 def check_user_notifications
530 return if params['tab_pane']
532 @notification_count = 0
536 @showallalerts = false
537 @@notification_tests.each do |t|
538 a = t.call(self, current_user)
540 @notification_count += 1
541 @notifications.push a
546 if @notification_count == 0
547 @notification_count = ''
551 helper_method :all_projects
553 @all_projects ||= Group.
554 filter([['group_class','in',['project','folder']]]).order('name')
557 helper_method :my_projects
559 return @my_projects if @my_projects
562 all_projects.each do |g|
563 root_of[g.uuid] = g.owner_uuid
569 root_of = root_of.each_with_object({}) do |(child, parent), h|
571 h[child] = root_of[parent]
578 @my_projects = @my_projects.select do |g|
579 root_of[g.uuid] == current_user.uuid
583 helper_method :projects_shared_with_me
584 def projects_shared_with_me
585 my_project_uuids = my_projects.collect &:uuid
586 all_projects.reject { |x| x.uuid.in? my_project_uuids }
589 helper_method :recent_jobs_and_pipelines
590 def recent_jobs_and_pipelines
592 PipelineInstance.limit(10)).
594 x.finished_at || x.started_at || x.created_at rescue x.created_at
598 helper_method :my_project_tree
604 helper_method :shared_project_tree
605 def shared_project_tree
610 def build_project_trees
611 return if @my_project_tree and @shared_project_tree
612 parent_of = {current_user.uuid => 'me'}
613 all_projects.each do |ob|
614 parent_of[ob.uuid] = ob.owner_uuid
616 children_of = {false => [], 'me' => [current_user]}
617 all_projects.each do |ob|
618 if ob.owner_uuid != current_user.uuid and
619 not parent_of.has_key? ob.owner_uuid
620 parent_of[ob.uuid] = false
622 children_of[parent_of[ob.uuid]] ||= []
623 children_of[parent_of[ob.uuid]] << ob
625 buildtree = lambda do |children_of, root_uuid=false|
627 children_of[root_uuid].andand.each do |ob|
628 tree[ob] = buildtree.call(children_of, ob.uuid)
632 sorted_paths = lambda do |tree, depth=0|
634 tree.keys.sort_by { |ob|
635 ob.is_a?(String) ? ob : ob.friendly_link_name
637 paths << {object: ob, depth: depth}
638 paths += sorted_paths.call tree[ob], depth+1
643 sorted_paths.call buildtree.call(children_of, 'me')
644 @shared_project_tree =
645 sorted_paths.call({'Shared with me' =>
646 buildtree.call(children_of, false)})
649 helper_method :get_object
651 if @get_object.nil? and @objects
652 @get_object = @objects.each_with_object({}) do |object, h|
653 h[object.uuid] = object
660 helper_method :project_breadcrumbs
661 def project_breadcrumbs
663 current = @name_link || @object
665 if current.is_a?(Group) and current.group_class.in?(['project','folder'])
666 crumbs.prepend current
668 if current.is_a? Link
669 current = Group.find?(current.tail_uuid)
671 current = Group.find?(current.owner_uuid)
677 helper_method :current_project_uuid
678 def current_project_uuid
679 if @object.is_a? Group and @object.group_class.in?(['project','folder'])
681 elsif @name_link.andand.tail_uuid
683 elsif @object and resource_class_for_uuid(@object.owner_uuid) == Group
690 # helper method to get links for given object or uuid
691 helper_method :links_for_object
692 def links_for_object object_or_uuid
693 raise ArgumentError, 'No input argument' unless object_or_uuid
694 preload_links_for_objects([object_or_uuid])
695 uuid = object_or_uuid.is_a?(String) ? object_or_uuid : object_or_uuid.uuid
696 @all_links_for[uuid] ||= []
699 # helper method to preload links for given objects and uuids
700 helper_method :preload_links_for_objects
701 def preload_links_for_objects objects_and_uuids
702 @all_links_for ||= {}
704 raise ArgumentError, 'Argument is not an array' unless objects_and_uuids.is_a? Array
705 return @all_links_for if objects_and_uuids.empty?
707 uuids = objects_and_uuids.collect { |x| x.is_a?(String) ? x : x.uuid }
709 # if already preloaded for all of these uuids, return
710 if not uuids.select { |x| @all_links_for[x].nil? }.any?
711 return @all_links_for
715 @all_links_for[x] = []
718 # TODO: make sure we get every page of results from API server
719 Link.filter([['head_uuid', 'in', uuids]]).each do |link|
720 @all_links_for[link.head_uuid] << link
725 # helper method to get a certain number of objects of a specific type
726 # this can be used to replace any uses of: "dataclass.limit(n)"
727 helper_method :get_n_objects_of_class
728 def get_n_objects_of_class dataclass, size
729 @objects_map_for ||= {}
731 raise ArgumentError, 'Argument is not a data class' unless dataclass.is_a? ArvadosBase
732 raise ArgumentError, 'Argument is not a valid limit size' unless (size && size>0)
734 # if the objects_map_for has a value for this dataclass, and the
735 # size used to retrieve those objects is equal, return it
736 size_key = "#{dataclass.name}_size"
737 if @objects_map_for[dataclass.name] && @objects_map_for[size_key] &&
738 (@objects_map_for[size_key] == size)
739 return @objects_map_for[dataclass.name]
742 @objects_map_for[size_key] = size
743 @objects_map_for[dataclass.name] = dataclass.limit(size)
746 # helper method to get collections for the given uuid
747 helper_method :collections_for_object
748 def collections_for_object uuid
749 raise ArgumentError, 'No input argument' unless uuid
750 preload_collections_for_objects([uuid])
751 @all_collections_for[uuid] ||= []
754 # helper method to preload collections for the given uuids
755 helper_method :preload_collections_for_objects
756 def preload_collections_for_objects uuids
757 @all_collections_for ||= {}
759 raise ArgumentError, 'Argument is not an array' unless uuids.is_a? Array
760 return @all_collections_for if uuids.empty?
762 # if already preloaded for all of these uuids, return
763 if not uuids.select { |x| @all_collections_for[x].nil? }.any?
764 return @all_collections_for
768 @all_collections_for[x] = []
771 # TODO: make sure we get every page of results from API server
772 Collection.where(uuid: uuids).each do |collection|
773 @all_collections_for[collection.uuid] << collection
778 # helper method to get log collections for the given log
779 helper_method :log_collections_for_object
780 def log_collections_for_object log
781 raise ArgumentError, 'No input argument' unless log
783 preload_log_collections_for_objects([log])
786 fixup = /([a-f0-9]{32}\+\d+)(\+?.*)/.match(log)
787 if fixup && fixup.size>1
791 @all_log_collections_for[uuid] ||= []
794 # helper method to preload collections for the given uuids
795 helper_method :preload_log_collections_for_objects
796 def preload_log_collections_for_objects logs
797 @all_log_collections_for ||= {}
799 raise ArgumentError, 'Argument is not an array' unless logs.is_a? Array
800 return @all_log_collections_for if logs.empty?
804 fixup = /([a-f0-9]{32}\+\d+)(\+?.*)/.match(log)
805 if fixup && fixup.size>1
812 # if already preloaded for all of these uuids, return
813 if not uuids.select { |x| @all_log_collections_for[x].nil? }.any?
814 return @all_log_collections_for
818 @all_log_collections_for[x] = []
821 # TODO: make sure we get every page of results from API server
822 Collection.where(uuid: uuids).each do |collection|
823 @all_log_collections_for[collection.uuid] << collection
825 @all_log_collections_for
828 # helper method to get object of a given dataclass and uuid
829 helper_method :object_for_dataclass
830 def object_for_dataclass dataclass, uuid
831 raise ArgumentError, 'No input argument dataclass' unless (dataclass && uuid)
832 preload_objects_for_dataclass(dataclass, [uuid])
836 # helper method to preload objects for given dataclass and uuids
837 helper_method :preload_objects_for_dataclass
838 def preload_objects_for_dataclass dataclass, uuids
841 raise ArgumentError, 'Argument is not a data class' unless dataclass.is_a? Class
842 raise ArgumentError, 'Argument is not an array' unless uuids.is_a? Array
844 return @objects_for if uuids.empty?
846 # if already preloaded for all of these uuids, return
847 if not uuids.select { |x| @objects_for[x].nil? }.any?
851 dataclass.where(uuid: uuids).each do |obj|
852 @objects_for[obj.uuid] = obj