45 lines
1.2 KiB
Ruby
45 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class UserSecondFactor < ActiveRecord::Base
|
|
include SecondFactorManager
|
|
belongs_to :user
|
|
|
|
scope :backup_codes, -> { where(method: UserSecondFactor.methods[:backup_codes], enabled: true) }
|
|
|
|
scope :totps, -> { where(method: UserSecondFactor.methods[:totp], enabled: true) }
|
|
|
|
scope :all_totps, -> { where(method: UserSecondFactor.methods[:totp]) }
|
|
|
|
def self.methods
|
|
@methods ||= Enum.new(totp: 1, backup_codes: 2, security_key: 3)
|
|
end
|
|
|
|
def totp_object
|
|
get_totp_object(self.data)
|
|
end
|
|
|
|
def totp_provisioning_uri
|
|
totp_object.provisioning_uri(user.email)
|
|
end
|
|
end
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: user_second_factors
|
|
#
|
|
# id :bigint not null, primary key
|
|
# user_id :integer not null
|
|
# method :integer not null
|
|
# data :string not null
|
|
# enabled :boolean default(FALSE), not null
|
|
# last_used :datetime
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# name :string
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_user_second_factors_on_method_and_enabled (method,enabled)
|
|
# index_user_second_factors_on_user_id (user_id)
|
|
#
|