2020-10-18 01:39:46 -07:00
|
|
|
class User::SessionsController < Devise::SessionsController
|
2020-10-23 11:45:06 -07:00
|
|
|
def new
|
|
|
|
session.delete(:user_sign_in_uid)
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2020-10-18 01:39:46 -07:00
|
|
|
def create
|
|
|
|
if session.has_key?(:user_sign_in_uid)
|
2020-10-23 11:45:06 -07:00
|
|
|
self.resource = User.find(session.delete(:user_sign_in_uid))
|
2020-10-18 01:39:46 -07:00
|
|
|
else
|
|
|
|
self.resource = warden.authenticate!(auth_options)
|
|
|
|
end
|
|
|
|
|
2020-10-18 02:39:28 -07:00
|
|
|
if resource.active_for_authentication? && resource.otp_module_enabled?
|
2020-10-18 01:39:46 -07:00
|
|
|
if params[:user][:otp_attempt].blank?
|
|
|
|
session[:user_sign_in_uid] = resource.id
|
|
|
|
sign_out(resource)
|
2020-10-23 11:45:06 -07:00
|
|
|
warden.lock!
|
|
|
|
render 'auth/two_factor_authentication'
|
2020-10-18 01:39:46 -07:00
|
|
|
else
|
|
|
|
if resource.authenticate_otp(params[:user][:otp_attempt])
|
|
|
|
continue_sign_in(resource, resource_name)
|
|
|
|
else
|
|
|
|
sign_out(resource)
|
2020-10-23 11:45:06 -07:00
|
|
|
flash[:error] = "Invalid code provided"
|
|
|
|
redirect_to new_user_session_url
|
2020-10-18 01:39:46 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
|
|
|
continue_sign_in(resource, resource_name)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def two_factor_entry
|
2020-10-19 03:20:44 -07:00
|
|
|
unless session.has_key? :user_sign_in_uid
|
|
|
|
redirect_to root_url
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2020-10-18 01:39:46 -07:00
|
|
|
self.resource = User.find(session[:user_sign_in_uid])
|
|
|
|
render 'auth/two_factor_authentication'
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def continue_sign_in(resource, resource_name)
|
|
|
|
set_flash_message!(:notice, :signed_in)
|
|
|
|
sign_in(resource_name, resource)
|
|
|
|
yield resource if block_given?
|
|
|
|
respond_with resource, location: after_sign_in_path_for(resource)
|
|
|
|
end
|
|
|
|
end
|