mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-01 04:24:22 +00:00
a1f04c1e34
Regression from #11831
32 lines
717 B
Ruby
32 lines
717 B
Ruby
# 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)
|
|
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)
|