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