|
|
@ -10,17 +10,24 @@ module TwoFactorAuthentication |
|
|
|
private |
|
|
|
private |
|
|
|
|
|
|
|
|
|
|
|
def handle_two_factor_authentication |
|
|
|
def handle_two_factor_authentication |
|
|
|
if not request.format.nil? and request.format.html? and not devise_controller? |
|
|
|
unless devise_controller? |
|
|
|
Devise.mappings.keys.flatten.any? do |scope| |
|
|
|
Devise.mappings.keys.flatten.any? do |scope| |
|
|
|
if signed_in?(scope) and warden.session(scope)[:need_two_factor_authentication] |
|
|
|
if signed_in?(scope) and warden.session(scope)[:need_two_factor_authentication] |
|
|
|
session["#{scope}_return_tor"] = request.path if request.get? |
|
|
|
handle_failed_second_factor(scope) |
|
|
|
redirect_to two_factor_authentication_path_for(scope) |
|
|
|
|
|
|
|
return |
|
|
|
|
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def handle_failed_second_factor(scope) |
|
|
|
|
|
|
|
if request.format.present? and request.format.html? |
|
|
|
|
|
|
|
session["#{scope}_return_tor"] = request.path if request.get? |
|
|
|
|
|
|
|
redirect_to two_factor_authentication_path_for(scope) |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
render nothing: true, status: :unauthorized |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
def two_factor_authentication_path_for(resource_or_scope = nil) |
|
|
|
def two_factor_authentication_path_for(resource_or_scope = nil) |
|
|
|
scope = Devise::Mapping.find_scope!(resource_or_scope) |
|
|
|
scope = Devise::Mapping.find_scope!(resource_or_scope) |
|
|
|
change_path = "#{scope}_two_factor_authentication_path" |
|
|
|
change_path = "#{scope}_two_factor_authentication_path" |
|
|
|