2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-12-22 09:18:12 +08:00
|
|
|
class UserSecondFactor < ActiveRecord::Base
|
|
|
|
belongs_to :user
|
2018-07-12 16:20:45 +08:00
|
|
|
|
|
|
|
scope :backup_codes, -> do
|
|
|
|
where(method: UserSecondFactor.methods[:backup_codes], enabled: true)
|
|
|
|
end
|
2018-02-20 14:44:51 +08:00
|
|
|
|
2019-03-15 15:02:04 +08:00
|
|
|
scope :totps, -> do
|
|
|
|
where(method: UserSecondFactor.methods[:totp], enabled: true)
|
|
|
|
end
|
|
|
|
|
2019-06-27 07:58:06 +08:00
|
|
|
scope :all_totps, -> do
|
|
|
|
where(method: UserSecondFactor.methods[:totp])
|
|
|
|
end
|
|
|
|
|
2018-02-20 14:44:51 +08:00
|
|
|
def self.methods
|
|
|
|
@methods ||= Enum.new(
|
|
|
|
totp: 1,
|
2018-06-28 16:12:32 +08:00
|
|
|
backup_codes: 2,
|
2018-02-20 14:44:51 +08:00
|
|
|
)
|
|
|
|
end
|
2018-06-28 16:12:32 +08:00
|
|
|
|
2019-06-27 07:58:06 +08:00
|
|
|
def get_totp_object
|
|
|
|
ROTP::TOTP.new(self.data, issuer: SiteSetting.title)
|
|
|
|
end
|
|
|
|
|
|
|
|
def totp_provisioning_uri
|
|
|
|
get_totp_object.provisioning_uri(user.email)
|
2018-07-16 10:12:19 +08:00
|
|
|
end
|
|
|
|
|
2017-12-22 09:18:12 +08:00
|
|
|
end
|
2018-02-20 14:44:51 +08:00
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: user_second_factors
|
|
|
|
#
|
2019-05-03 06:34:12 +08:00
|
|
|
# id :bigint not null, primary key
|
2018-02-20 14:44:51 +08:00
|
|
|
# user_id :integer not null
|
2018-02-26 15:32:04 +08:00
|
|
|
# method :integer not null
|
|
|
|
# data :string not null
|
2018-02-20 14:44:51 +08:00
|
|
|
# enabled :boolean default(FALSE), not null
|
|
|
|
# last_used :datetime
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|
2018-07-16 14:21:07 +08:00
|
|
|
# Indexes
|
|
|
|
#
|
2019-04-02 13:17:55 +08:00
|
|
|
# index_user_second_factors_on_method_and_enabled (method,enabled)
|
|
|
|
# index_user_second_factors_on_user_id (user_id)
|
2018-07-16 14:21:07 +08:00
|
|
|
#
|