gitlab-org--gitlab-foss/app/controllers/omniauth_callbacks_controll...

76 lines
2.2 KiB
Ruby
Raw Normal View History

2012-01-28 08:23:17 -05:00
class OmniauthCallbacksController < Devise::OmniauthCallbacksController
Gitlab.config.omniauth.providers.each do |provider|
2012-09-12 01:23:20 -04:00
define_method provider['name'] do
handle_omniauth
end
end
# Extend the standard message generation to accept our custom exception
def failure_message
exception = env["omniauth.error"]
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
error.to_s.humanize if error
end
2012-08-03 11:27:39 -04:00
2012-01-28 08:23:17 -05:00
def ldap
# We only find ourselves here
# if the authentication to LDAP was successful.
2013-09-03 17:06:29 -04:00
@user = Gitlab::LDAP::User.find_or_create(oauth)
@user.remember_me = true if @user.persisted?
2014-06-12 10:01:23 -04:00
gitlab_ldap_access do |access|
if access.allowed?(@user)
sign_in_and_redirect(@user)
else
flash[:alert] = "Access denied for your LDAP account."
redirect_to new_user_session_path
end
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
2013-09-03 17:06:29 -04:00
@user = Gitlab::OAuth::User.find(oauth)
# Create user if does not exist
# and allow_single_sign_on is true
if Gitlab.config.omniauth['allow_single_sign_on'] && !@user
@user, errors = Gitlab::OAuth::User.create(oauth)
2013-09-03 17:06:29 -04:00
end
2012-08-03 11:27:39 -04:00
if @user && !errors
2013-09-03 17:06:29 -04:00
sign_in_and_redirect(@user)
2012-08-03 11:27:39 -04:00
else
if errors
error_message = errors.map{ |attribute, message| "#{attribute} #{message}" }.join(", ")
2014-06-24 08:16:52 -04:00
redirect_to omniauth_error_path(oauth['provider'], error: error_message) and return
else
flash[:notice] = "There's no such user!"
end
2012-08-03 11:27:39 -04:00
redirect_to new_user_session_path
end
end
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