2019-09-24 04:35:36 +02:00
|
|
|
# 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
|
2024-04-29 14:32:06 +02:00
|
|
|
fail(:invalid) # rubocop:disable Style/SignalException -- method is from Warden::Strategies::Base
|
2019-09-24 04:35:36 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def valid_params?
|
|
|
|
params[scope] && params[scope][:password].present?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
Warden::Strategies.add(:two_factor_pam_authenticatable, Devise::Strategies::TwoFactorPamAuthenticatable)
|