I encountered this code for authentication using omniauth-twitter. It is also discussed in this railscasts
class AuthenticationsController < ApplicationController
def create
omniauth = request.env['omniauth.auth']
authentication = Authentication.find_by_provider_and_uid(omniauth['provider'], omniauth['uid'])
if authentication
# User is already registered with application
flash[:info] = 'Signed in successfully.'
sign_in_and_redirect(authentication.user)
elsif current_user
# User is signed in but has not already authenticated with this social network
current_user.authentications.create!(:provider => omniauth['provider'], :uid => omniauth['uid']).attributes
current_user.apply_omniauth(omniauth)
current_user.save
flash[:info] = 'Authentication successful.'
redirect_to home_url
else
# User is new to this application
user = User.new
user.authentications.build(:provider => omniauth['provider'], :uid => omniauth['uid'])
user.apply_omniauth(omniauth)
if user.save
flash[:info] = 'User created and signed in successfully.'
sign_in_and_redirect(user)
else
session[:omniauth] = omniauth.except('extra')
redirect_to signup_path
end
end
end
def destroy
@authentication = current_user.authentications.find(params[:id])
@authentication.destroy
flash[:notice] = 'Successfully destroyed authentication.'
redirect_to authentications_url
end
private
def sign_in_and_redirect(user)
unless current_user
sign_in(user)
end
redirect_to current_user
end
end
What I understand from this code is that
- If there is authentication present in the database for the current user then he is signed in,
- If there is no authentication present database and the user is currently logged in, then an authentication is created.
- If the authentication is not present in the database and the user is not logged in then a new user is created.
But the 3rd case is not always the only case. We can have a case when the authentication is not present in the database even if the user is registered to the site but not logged in. In that case we do not have to create a new user instead just create an authentication for that user [as in case 2] and then just sign him in.