1 class UserSessionsController < ApplicationController
2 before_filter :require_auth_scope, :only => [ :destroy ]
4 skip_before_filter :set_cors_headers
5 skip_before_filter :find_object_by_uuid
6 skip_before_filter :render_404_if_no_object
10 # omniauth callback method
12 omniauth = env['omniauth.auth']
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: "+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,
47 :owner_uuid => system_user_uuid)
48 if omniauth['info']['username']
49 user.set_initial_username(requested: omniauth['info']['username'])
52 user.save or raise Exception.new(user.errors.messages)
55 user.email = omniauth['info']['email']
56 user.first_name = omniauth['info']['first_name']
57 user.last_name = omniauth['info']['last_name']
58 if user.identity_url.nil?
59 # First login to a pre-activated account
60 user.identity_url = omniauth['info']['identity_url']
64 # For the benefit of functional and integration tests:
67 # prevent ArvadosModel#before_create and _update from throwing
69 Thread.current[:user] = user
71 user.save or raise Exception.new(user.errors.messages)
73 omniauth.delete('extra')
75 # Give the authenticated user a cookie for direct API access
76 session[:user_id] = user.id
77 session[:api_client_uuid] = nil
78 session[:api_client_trusted] = true # full permission to see user's secrets
80 @redirect_to = root_path
81 if params.has_key?(:return_to)
82 return send_api_token_to(params[:return_to], user)
84 redirect_to @redirect_to
87 # Omniauth failure callback
89 flash[:notice] = params[:message]
92 # logout - Clear our rack session BUT essentially redirect to the provider
93 # to clean up the Devise session from there too !
95 session[:user_id] = nil
97 flash[:notice] = 'You have logged off'
98 return_to = params[:return_to] || root_url
99 redirect_to "#{Rails.configuration.sso_provider_url}/users/sign_out?redirect_uri=#{CGI.escape return_to}"
102 # login - Just bounce to /auth/joshid. The only purpose of this function is
103 # to save the return_to parameter (if it exists; see the application
104 # controller). /auth/joshid bypasses the application controller.
106 auth_provider = if params[:auth_provider] then "auth_provider=#{CGI.escape(params[:auth_provider])}" else "" end
108 if current_user and params[:return_to]
109 # Already logged in; just need to send a token to the requesting
112 # FIXME: if current_user has never authorized this app before,
113 # ask for confirmation here!
115 send_api_token_to(params[:return_to], current_user)
116 elsif params[:return_to]
117 redirect_to "/auth/joshid?return_to=#{CGI.escape(params[:return_to])}&#{auth_provider}"
119 redirect_to "/auth/joshid?#{auth_provider}"
123 def send_api_token_to(callback_url, user)
124 # Give the API client a token for making API calls on behalf of
125 # the authenticated user
127 # Stub: automatically register all new API clients
128 api_client_url_prefix = callback_url.match(%r{^.*?://[^/]+})[0] + '/'
129 act_as_system_user do
130 @api_client = ApiClient.
131 find_or_create_by(url_prefix: api_client_url_prefix)
134 api_client_auth = ApiClientAuthorization.
136 api_client: @api_client,
137 created_by_ip_address: remote_ip,
139 api_client_auth.save!
141 if callback_url.index('?')
146 callback_url += 'api_token=' + api_client_auth.api_token
147 redirect_to callback_url
150 def cross_origin_forbidden
151 send_error 'Forbidden', status: 403