mirror of
https://github.com/openSUSE/osem.git
synced 2026-01-19 19:41:31 -05:00
Redirecting users to `/account/sign_in` caused a redirect loop which crashed the page, but still adds them to the `users` table correctly.. Forcing users to the `root_path` solves the redirect loop.
46 lines
1.4 KiB
Ruby
46 lines
1.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Users
|
|
class OmniauthCallbacksController < Devise::OmniauthCallbacksController
|
|
skip_before_action :verify_authenticity_token
|
|
skip_authorization_check
|
|
|
|
User.omniauth_providers.each do |provider|
|
|
define_method(provider) { handle(provider) }
|
|
end
|
|
|
|
private
|
|
|
|
def handle(provider)
|
|
auth_hash = request.env['omniauth.auth']
|
|
unless auth_hash.info.email.present?
|
|
flash[:error] = "Email field is missing in your #{provider} account"
|
|
redirect_to new_user_registration_path
|
|
return
|
|
end
|
|
username = auth_hash.info.email.split('@')[0]
|
|
openid = Openid.find_for_oauth(auth_hash) # Get or create openid
|
|
# If openid exists and is associated with a user, sign in with associated user,
|
|
# even if the email of the associated user and the email of the provided openid are different
|
|
unless (user = openid.user)
|
|
user = User.find_for_auth(auth_hash, current_user) # Get or create users
|
|
user.username = "#{username}@#{provider}" if user.username.blank?
|
|
end
|
|
|
|
begin
|
|
user.save!
|
|
if openid.user != user
|
|
openid.user = user
|
|
end
|
|
openid.save!
|
|
|
|
sign_in user
|
|
redirect_to root_path, notice: "#{user.email} signed in successfully with #{provider}"
|
|
rescue => e
|
|
flash[:error] = e.message
|
|
redirect_back_or_to new_user_registration_path
|
|
end
|
|
end
|
|
end
|
|
end
|