You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
812 B
31 lines
812 B
# frozen_string_literal: true |
|
|
|
require 'devise/strategies/base' |
|
|
|
module Devise |
|
module Strategies |
|
class TwoFactorPamAuthenticatable < Base |
|
def valid? |
|
valid_params? && mapping.to.respond_to?(:authenticate_with_pam) |
|
end |
|
|
|
def authenticate! |
|
resource = mapping.to.authenticate_with_pam(params[scope]) |
|
|
|
if resource && !resource.otp_required_for_login? |
|
success!(resource) |
|
else |
|
fail(:invalid) # rubocop:disable Style/SignalException -- method is from Warden::Strategies::Base |
|
end |
|
end |
|
|
|
protected |
|
|
|
def valid_params? |
|
params[scope].is_a?(Hash) && params[scope][:password].present? |
|
end |
|
end |
|
end |
|
end |
|
|
|
Warden::Strategies.add(:two_factor_pam_authenticatable, Devise::Strategies::TwoFactorPamAuthenticatable)
|
|
|