2012-01-28 08:23:17 -05:00
|
|
|
class OmniauthCallbacksController < Devise::OmniauthCallbacksController
|
2012-12-14 19:16:25 -05:00
|
|
|
Gitlab.config.omniauth.providers.each do |provider|
|
2012-09-12 01:23:20 -04:00
|
|
|
define_method provider['name'] do
|
|
|
|
handle_omniauth
|
|
|
|
end
|
|
|
|
end
|
2012-07-16 18:31:28 -04:00
|
|
|
|
|
|
|
# Extend the standard message generation to accept our custom exception
|
|
|
|
def failure_message
|
|
|
|
exception = env["omniauth.error"]
|
2012-07-21 04:04:05 -04:00
|
|
|
error = exception.error_reason if exception.respond_to?(:error_reason)
|
|
|
|
error ||= exception.error if exception.respond_to?(:error)
|
|
|
|
error ||= exception.message if exception.respond_to?(:message)
|
|
|
|
error ||= env["omniauth.error.type"].to_s
|
2012-07-16 18:31:28 -04:00
|
|
|
error.to_s.humanize if error
|
|
|
|
end
|
2012-08-03 11:27:39 -04:00
|
|
|
|
2014-10-13 07:39:54 -04:00
|
|
|
# We only find ourselves here
|
|
|
|
# if the authentication to LDAP was successful.
|
2012-01-28 08:23:17 -05:00
|
|
|
def ldap
|
2014-10-13 07:39:54 -04:00
|
|
|
@user = Gitlab::LDAP::User.new(oauth)
|
|
|
|
@user.save if @user.changed? # will also save new users
|
|
|
|
gl_user = @user.gl_user
|
|
|
|
gl_user.remember_me = true if @user.persisted?
|
2014-06-12 10:01:23 -04:00
|
|
|
|
2014-07-30 03:50:50 -04:00
|
|
|
# Do additional LDAP checks for the user filter and EE features
|
2014-10-13 07:39:54 -04:00
|
|
|
if @user.allowed?
|
|
|
|
sign_in_and_redirect(gl_user)
|
2014-07-30 03:50:50 -04:00
|
|
|
else
|
|
|
|
flash[:alert] = "Access denied for your LDAP account."
|
|
|
|
redirect_to new_user_session_path
|
2014-06-12 10:01:23 -04:00
|
|
|
end
|
2012-01-28 08:23:17 -05:00
|
|
|
end
|
|
|
|
|
2014-06-24 08:16:52 -04:00
|
|
|
def omniauth_error
|
|
|
|
@provider = params[:provider]
|
|
|
|
@error = params[:error]
|
|
|
|
render 'errors/omniauth_error', layout: "errors", status: 422
|
|
|
|
end
|
|
|
|
|
2012-08-03 11:27:39 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
def handle_omniauth
|
|
|
|
if current_user
|
|
|
|
# Change a logged-in user's authentication method:
|
2013-09-03 17:06:29 -04:00
|
|
|
current_user.extern_uid = oauth['uid']
|
|
|
|
current_user.provider = oauth['provider']
|
2012-08-03 11:27:39 -04:00
|
|
|
current_user.save
|
|
|
|
redirect_to profile_path
|
|
|
|
else
|
2014-10-13 07:39:54 -04:00
|
|
|
@user = Gitlab::OAuth::User.new(oauth)
|
2014-10-16 14:08:30 -04:00
|
|
|
@user.save
|
2012-08-03 11:27:39 -04:00
|
|
|
|
2014-10-16 05:46:40 -04:00
|
|
|
# Only allow properly saved users to login.
|
|
|
|
if @user.persisted? && @user.valid?
|
2014-10-13 07:39:54 -04:00
|
|
|
sign_in_and_redirect(@user.gl_user)
|
2014-10-17 06:15:59 -04:00
|
|
|
else
|
|
|
|
error_message =
|
|
|
|
if @user.gl_user.errors.any?
|
|
|
|
@user.gl_user.errors.map do |attribute, message|
|
|
|
|
"#{attribute} #{message}"
|
|
|
|
end.join(", ")
|
|
|
|
else
|
|
|
|
''
|
|
|
|
end
|
|
|
|
|
2014-10-13 07:39:54 -04:00
|
|
|
redirect_to omniauth_error_path(oauth['provider'], error: error_message) and return
|
2012-08-03 11:27:39 -04:00
|
|
|
end
|
|
|
|
end
|
2014-10-16 14:08:30 -04:00
|
|
|
rescue StandardError
|
|
|
|
flash[:notice] = "There's no such user!"
|
|
|
|
redirect_to new_user_session_path
|
2012-08-03 11:27:39 -04:00
|
|
|
end
|
2013-09-03 17:06:29 -04:00
|
|
|
|
|
|
|
def oauth
|
|
|
|
@oauth ||= request.env['omniauth.auth']
|
|
|
|
end
|
2012-01-28 08:23:17 -05:00
|
|
|
end
|