Commit 9028999c authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Use new OAuth classes

parent 0df1cf7f
...@@ -18,33 +18,39 @@ class OmniauthCallbacksController < Devise::OmniauthCallbacksController ...@@ -18,33 +18,39 @@ class OmniauthCallbacksController < Devise::OmniauthCallbacksController
def ldap def ldap
# We only find ourselves here # We only find ourselves here
# if the authentication to LDAP was successful. # if the authentication to LDAP was successful.
@user = Gitlab::LDAP::User.find_or_create(request.env["omniauth.auth"]) @user = Gitlab::LDAP::User.find_or_create(oauth)
@user.remember_me = true if @user.persisted? @user.remember_me = true if @user.persisted?
sign_in_and_redirect(@user) sign_in_and_redirect(@user)
end end
private private
def handle_omniauth def handle_omniauth
oauth = request.env['omniauth.auth']
provider, uid = oauth['provider'], oauth['uid']
if current_user if current_user
# Change a logged-in user's authentication method: # Change a logged-in user's authentication method:
current_user.extern_uid = uid current_user.extern_uid = oauth['uid']
current_user.provider = provider current_user.provider = oauth['provider']
current_user.save current_user.save
redirect_to profile_path redirect_to profile_path
else else
@user = User.find_or_new_for_omniauth(oauth) @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 ||= Gitlab::OAuth::User.create(oauth)
end
if @user if @user
sign_in_and_redirect @user sign_in_and_redirect(@user)
else else
flash[:notice] = "There's no such user!" flash[:notice] = "There's no such user!"
redirect_to new_user_session_path redirect_to new_user_session_path
end end
end end
end end
def oauth
@oauth ||= request.env['omniauth.auth']
end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment