Module: ActiveModel::OneTimePassword::ClassMethods
- Defined in:
- lib/active_model/one_time_password.rb
Instance Method Summary collapse
- #has_one_time_password(options = {}) ⇒ Object
-
#otp_random_secret(length = 20) ⇒ Object
Defaults to 160 bit long secret (meaning a 32 character long base32 secret).
Instance Method Details
#has_one_time_password(options = {}) ⇒ Object
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/active_model/one_time_password.rb', line 14 def has_one_time_password( = {}) cattr_accessor :otp_column_name, :otp_counter_column_name, :otp_backup_codes_column_name, :otp_after_column_name class_attribute :otp_digits, :otp_counter_based, :otp_backup_codes_count, :otp_one_time_backup_codes, :otp_interval self.otp_column_name = ([:column_name] || OTP_DEFAULT_COLUMN_NAME).to_s self.otp_digits = [:length] || OTP_DEFAULT_DIGITS self.otp_counter_based = [:counter_based] || OTP_COUNTER_ENABLED_BY_DEFAULT self.otp_counter_column_name = ([:counter_column_name] || OTP_DEFAULT_COUNTER_COLUMN_NAME).to_s self.otp_interval = [:interval] self.otp_after_column_name = [:after_column_name] self.otp_backup_codes_column_name = ([:backup_codes_column_name] || OTP_DEFAULT_BACKUP_CODES_COLUMN_NAME).to_s self.otp_backup_codes_count = [:backup_codes_count] || OTP_DEFAULT_BACKUP_CODES_COUNT self.otp_one_time_backup_codes = [:one_time_backup_codes] || OTP_BACKUP_CODES_ENABLED_BY_DEFAULT include InstanceMethodsOnActivation before_create(**.slice(:if, :unless)) do self.otp_regenerate_secret if !otp_column self.otp_regenerate_counter if otp_counter_based && !otp_counter otp_regenerate_backup_codes if backup_codes_enabled? end if respond_to?(:attributes_protected_by_default) def self.attributes_protected_by_default #:nodoc: super + [otp_column_name, otp_counter_column_name] end end end |
#otp_random_secret(length = 20) ⇒ Object
Defaults to 160 bit long secret (meaning a 32 character long base32 secret)
48 49 50 |
# File 'lib/active_model/one_time_password.rb', line 48 def otp_random_secret(length = 20) ROTP::Base32.random(length) end |