2012-01-28 14:23:17 +01:00
|
|
|
class OmniauthCallbacksController < Devise::OmniauthCallbacksController
|
2012-07-17 00:31:28 +02:00
|
|
|
|
|
|
|
# Extend the standard message generation to accept our custom exception
|
|
|
|
def failure_message
|
|
|
|
exception = env["omniauth.error"]
|
|
|
|
if exception.class == OmniAuth::Error
|
|
|
|
error = exception.message
|
|
|
|
else
|
|
|
|
error = exception.error_reason if exception.respond_to?(:error_reason)
|
|
|
|
error ||= exception.error if exception.respond_to?(:error)
|
|
|
|
error ||= env["omniauth.error.type"].to_s
|
|
|
|
end
|
|
|
|
error.to_s.humanize if error
|
|
|
|
end
|
2012-01-28 14:23:17 +01:00
|
|
|
|
|
|
|
def ldap
|
|
|
|
# We only find ourselves here if the authentication to LDAP was successful.
|
2012-02-17 18:10:50 +01:00
|
|
|
info = request.env["omniauth.auth"]["info"]
|
|
|
|
@user = User.find_for_ldap_auth(info)
|
2012-01-28 14:23:17 +01:00
|
|
|
if @user.persisted?
|
|
|
|
@user.remember_me = true
|
|
|
|
end
|
|
|
|
sign_in_and_redirect @user
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|