2017-12-21 20:18:12 -05:00
|
|
|
class UserSecondFactor < ActiveRecord::Base
|
|
|
|
belongs_to :user
|
2018-07-12 04:20:45 -04:00
|
|
|
|
|
|
|
scope :backup_codes, -> do
|
|
|
|
where(method: UserSecondFactor.methods[:backup_codes], enabled: true)
|
|
|
|
end
|
2018-02-20 01:44:51 -05:00
|
|
|
|
2019-03-15 03:02:04 -04:00
|
|
|
scope :totps, -> do
|
|
|
|
where(method: UserSecondFactor.methods[:totp], enabled: true)
|
|
|
|
end
|
|
|
|
|
2018-02-20 01:44:51 -05:00
|
|
|
def self.methods
|
|
|
|
@methods ||= Enum.new(
|
|
|
|
totp: 1,
|
2018-06-28 04:12:32 -04:00
|
|
|
backup_codes: 2,
|
2018-02-20 01:44:51 -05:00
|
|
|
)
|
|
|
|
end
|
2018-06-28 04:12:32 -04:00
|
|
|
|
2018-07-15 22:12:19 -04:00
|
|
|
def self.totp
|
|
|
|
where(method: self.methods[:totp]).first
|
|
|
|
end
|
|
|
|
|
2017-12-21 20:18:12 -05:00
|
|
|
end
|
2018-02-20 01:44:51 -05:00
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: user_second_factors
|
|
|
|
#
|
2018-07-16 02:18:07 -04:00
|
|
|
# id :bigint(8) not null, primary key
|
2018-02-20 01:44:51 -05:00
|
|
|
# user_id :integer not null
|
2018-02-26 02:32:04 -05:00
|
|
|
# method :integer not null
|
|
|
|
# data :string not null
|
2018-02-20 01:44:51 -05:00
|
|
|
# enabled :boolean default(FALSE), not null
|
|
|
|
# last_used :datetime
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|
2018-07-16 02:21:07 -04:00
|
|
|
# Indexes
|
|
|
|
#
|
2019-04-02 01:17:55 -04:00
|
|
|
# index_user_second_factors_on_method_and_enabled (method,enabled)
|
|
|
|
# index_user_second_factors_on_user_id (user_id)
|
2018-07-16 02:21:07 -04:00
|
|
|
#
|