The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

81 line
2.5 KiB

  1. # frozen_string_literal: true
  2. # == Schema Information
  3. #
  4. # Table name: users
  5. #
  6. # id :integer not null, primary key
  7. # email :string default(""), not null
  8. # account_id :integer not null
  9. # created_at :datetime not null
  10. # updated_at :datetime not null
  11. # encrypted_password :string default(""), not null
  12. # reset_password_token :string
  13. # reset_password_sent_at :datetime
  14. # remember_created_at :datetime
  15. # sign_in_count :integer default(0), not null
  16. # current_sign_in_at :datetime
  17. # last_sign_in_at :datetime
  18. # current_sign_in_ip :inet
  19. # last_sign_in_ip :inet
  20. # admin :boolean default(FALSE)
  21. # confirmation_token :string
  22. # confirmed_at :datetime
  23. # confirmation_sent_at :datetime
  24. # unconfirmed_email :string
  25. # locale :string
  26. # encrypted_otp_secret :string
  27. # encrypted_otp_secret_iv :string
  28. # encrypted_otp_secret_salt :string
  29. # consumed_timestep :integer
  30. # otp_required_for_login :boolean
  31. # last_emailed_at :datetime
  32. # otp_backup_codes :string is an Array
  33. # allowed_languages :string default([]), not null, is an Array
  34. #
  35. class User < ApplicationRecord
  36. include Settings::Extend
  37. devise :registerable, :recoverable,
  38. :rememberable, :trackable, :validatable, :confirmable,
  39. :two_factor_authenticatable, :two_factor_backupable,
  40. otp_secret_encryption_key: ENV['OTP_SECRET'],
  41. otp_number_of_backup_codes: 10
  42. belongs_to :account, inverse_of: :user, required: true
  43. accepts_nested_attributes_for :account
  44. validates :locale, inclusion: I18n.available_locales.map(&:to_s), unless: 'locale.nil?'
  45. validates :email, email: true
  46. scope :recent, -> { order('id desc') }
  47. scope :admins, -> { where(admin: true) }
  48. scope :confirmed, -> { where.not(confirmed_at: nil) }
  49. def confirmed?
  50. confirmed_at.present?
  51. end
  52. def disable_two_factor!
  53. self.otp_required_for_login = false
  54. otp_backup_codes&.clear
  55. save!
  56. end
  57. def send_devise_notification(notification, *args)
  58. devise_mailer.send(notification, self, *args).deliver_later
  59. end
  60. def setting_default_privacy
  61. settings.default_privacy || (account.locked? ? 'private' : 'public')
  62. end
  63. def setting_boost_modal
  64. settings.boost_modal
  65. end
  66. def setting_auto_play_gif
  67. settings.auto_play_gif
  68. end
  69. end