debian-mirror-gitlab/app/controllers/omniauth_callbacks_controller.rb

151 lines
4.4 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
class OmniauthCallbacksController < Devise::OmniauthCallbacksController
2016-04-02 18:10:28 +05:30
include AuthenticatesWithTwoFactor
2015-09-11 14:41:01 +05:30
protect_from_forgery except: [:kerberos, :saml, :cas3]
2015-09-11 14:41:01 +05:30
2014-09-02 18:07:02 +05:30
Gitlab.config.omniauth.providers.each do |provider|
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
2015-04-26 12:48:37 +05:30
# We only find ourselves here
# if the authentication to LDAP was successful.
2014-09-02 18:07:02 +05:30
def ldap
2016-02-05 20:25:01 +05:30
ldap_user = Gitlab::LDAP::User.new(oauth)
ldap_user.save if ldap_user.changed? # will also save new users
@user = ldap_user.gl_user
@user.remember_me = params[:remember_me] if ldap_user.persisted?
2014-09-02 18:07:02 +05:30
# Do additional LDAP checks for the user filter and EE features
2016-02-05 20:25:01 +05:30
if ldap_user.allowed?
2016-04-02 18:10:28 +05:30
if @user.two_factor_enabled?
prompt_for_two_factor(@user)
else
log_audit_event(@user, with: :ldap)
sign_in_and_redirect(@user)
end
2014-09-02 18:07:02 +05:30
else
flash[:alert] = "Access denied for your LDAP account."
redirect_to new_user_session_path
end
end
2016-04-02 18:10:28 +05:30
def saml
if current_user
log_audit_event(current_user, with: :saml)
# Update SAML identity if data has changed.
identity = current_user.identities.find_by(extern_uid: oauth['uid'], provider: :saml)
if identity.nil?
current_user.identities.create(extern_uid: oauth['uid'], provider: :saml)
redirect_to profile_account_path, notice: 'Authentication method updated'
else
redirect_to after_sign_in_path_for(current_user)
end
else
saml_user = Gitlab::Saml::User.new(oauth)
2016-06-02 11:05:42 +05:30
saml_user.save if saml_user.changed?
2016-04-02 18:10:28 +05:30
@user = saml_user.gl_user
continue_login_process
end
2016-06-02 11:05:42 +05:30
rescue Gitlab::OAuth::SignupDisabledError
handle_signup_error
2016-04-02 18:10:28 +05:30
end
2014-09-02 18:07:02 +05:30
def omniauth_error
@provider = params[:provider]
@error = params[:error]
2017-08-17 22:00:37 +05:30
render 'errors/omniauth_error', layout: "oauth_error", status: 422
2014-09-02 18:07:02 +05:30
end
def cas3
ticket = params['ticket']
if ticket
handle_service_ticket oauth['provider'], ticket
end
handle_omniauth
end
2017-08-17 22:00:37 +05:30
def authentiq
if params['sid']
handle_service_ticket oauth['provider'], params['sid']
end
handle_omniauth
end
2014-09-02 18:07:02 +05:30
private
def handle_omniauth
if current_user
2015-04-26 12:48:37 +05:30
# Add new authentication method
current_user.identities.find_or_create_by(extern_uid: oauth['uid'], provider: oauth['provider'])
2015-09-11 14:41:01 +05:30
log_audit_event(current_user, with: oauth['provider'])
2015-04-26 12:48:37 +05:30
redirect_to profile_account_path, notice: 'Authentication method updated'
2014-09-02 18:07:02 +05:30
else
2016-04-02 18:10:28 +05:30
oauth_user = Gitlab::OAuth::User.new(oauth)
oauth_user.save
@user = oauth_user.gl_user
2014-09-02 18:07:02 +05:30
2016-04-02 18:10:28 +05:30
continue_login_process
2014-09-02 18:07:02 +05:30
end
2015-10-24 18:46:33 +05:30
rescue Gitlab::OAuth::SignupDisabledError
2016-06-02 11:05:42 +05:30
handle_signup_error
2014-09-02 18:07:02 +05:30
end
def handle_service_ticket(provider, ticket)
Gitlab::OAuth::Session.create provider, ticket
session[:service_tickets] ||= {}
session[:service_tickets][provider] = ticket
end
2016-04-02 18:10:28 +05:30
def continue_login_process
# Only allow properly saved users to login.
if @user.persisted? && @user.valid?
log_audit_event(@user, with: oauth['provider'])
2016-08-24 12:49:21 +05:30
if @user.two_factor_enabled?
prompt_for_two_factor(@user)
else
sign_in_and_redirect(@user)
end
2016-04-02 18:10:28 +05:30
else
error_message = @user.errors.full_messages.to_sentence
2017-08-17 22:00:37 +05:30
return redirect_to omniauth_error_path(oauth['provider'], error: error_message)
2016-04-02 18:10:28 +05:30
end
end
2016-06-02 11:05:42 +05:30
def handle_signup_error
label = Gitlab::OAuth::Provider.label_for(oauth['provider'])
message = "Signing in using your #{label} account without a pre-existing GitLab account is not allowed."
if current_application_settings.signup_enabled?
message << " Create a GitLab account first, and then connect it to your #{label} account."
end
flash[:notice] = message
redirect_to new_user_session_path
end
2014-09-02 18:07:02 +05:30
def oauth
@oauth ||= request.env['omniauth.auth']
end
2015-09-11 14:41:01 +05:30
def log_audit_event(user, options = {})
AuditEventService.new(user, user, options).
for_authentication.security_event
end
2014-09-02 18:07:02 +05:30
end