1 class UserSessionsController < ApplicationController
2 before_filter :require_auth_scope_all, :only => [ :destroy ]
4 skip_before_filter :find_object_by_uuid
5 skip_before_filter :render_404_if_no_object
9 # omniauth callback method
11 omniauth = env['omniauth.auth']
12 #logger.debug "+++ #{omniauth}"
14 identity_url_ok = (omniauth['info']['identity_url'].length > 0) rescue false
15 unless identity_url_ok
16 # Whoa. This should never happen.
17 logger.error "UserSessionsController.create: omniauth object missing/invalid"
18 logger.error "omniauth.pretty_inspect():\n\n#{omniauth.pretty_inspect()}"
20 return redirect_to login_failure_url
23 user = User.find_by_identity_url(omniauth['info']['identity_url'])
25 # Check for permission to log in to an existing User record with
26 # a different identity_url
27 Link.where("link_class = ? and name = ? and tail_uuid = ? and head_uuid like ?",
30 omniauth['info']['email'],
31 User.uuid_like_pattern).each do |link|
32 if prefix = link.properties['identity_url_prefix']
33 if prefix == omniauth['info']['identity_url'][0..prefix.size-1]
34 user = User.find_by_uuid(link.head_uuid)
41 # New user registration
42 user = User.new(:email => omniauth['info']['email'],
43 :first_name => omniauth['info']['first_name'],
44 :last_name => omniauth['info']['last_name'],
45 :identity_url => omniauth['info']['identity_url'],
46 :is_active => Rails.configuration.new_users_are_active)
48 user.email = omniauth['info']['email']
49 user.first_name = omniauth['info']['first_name']
50 user.last_name = omniauth['info']['last_name']
51 if user.identity_url.nil?
52 # First login to a pre-activated account
53 user.identity_url = omniauth['info']['identity_url']
57 # prevent ArvadosModel#before_create and _update from throwing
59 Thread.current[:user] = user
63 omniauth.delete('extra')
65 # Give the authenticated user a cookie for direct API access
66 session[:user_id] = user.id
67 session[:api_client_uuid] = nil
68 session[:api_client_trusted] = true # full permission to see user's secrets
70 @redirect_to = root_path
71 if params.has_key?(:return_to)
72 return send_api_token_to(params[:return_to], user)
74 redirect_to @redirect_to
77 # Omniauth failure callback
79 flash[:notice] = params[:message]
82 # logout - Clear our rack session BUT essentially redirect to the provider
83 # to clean up the Devise session from there too !
85 session[:user_id] = nil
87 flash[:notice] = 'You have logged off'
88 return_to = params[:return_to] || root_url
89 redirect_to "#{CUSTOM_PROVIDER_URL}/users/sign_out?redirect_uri=#{CGI.escape return_to}"
92 # login - Just bounce to /auth/joshid. The only purpose of this function is
93 # to save the return_to parameter (if it exists; see the application
94 # controller). /auth/joshid bypasses the application controller.
96 if current_user and params[:return_to]
97 # Already logged in; just need to send a token to the requesting
100 # FIXME: if current_user has never authorized this app before,
101 # ask for confirmation here!
103 send_api_token_to(params[:return_to], current_user)
104 elsif params[:return_to]
105 redirect_to "/auth/joshid?return_to=#{CGI.escape(params[:return_to])}"
107 redirect_to "/auth/joshid"
111 def send_api_token_to(callback_url, user)
112 # Give the API client a token for making API calls on behalf of
113 # the authenticated user
115 # Stub: automatically register all new API clients
116 api_client_url_prefix = callback_url.match(%r{^.*?://[^/]+})[0] + '/'
117 act_as_system_user do
118 @api_client = ApiClient.find_or_create_by_url_prefix api_client_url_prefix
121 api_client_auth = ApiClientAuthorization.
123 api_client: @api_client,
124 created_by_ip_address: remote_ip,
126 api_client_auth.save!
128 if callback_url.index('?')
133 callback_url += 'api_token=' + api_client_auth.api_token
134 redirect_to callback_url