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.
 
 
 
 

89 lines
2.7 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. # filtered_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), if: :locale?
  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. before_validation :sanitize_languages
  50. def confirmed?
  51. confirmed_at.present?
  52. end
  53. def disable_two_factor!
  54. self.otp_required_for_login = false
  55. otp_backup_codes&.clear
  56. save!
  57. end
  58. def send_devise_notification(notification, *args)
  59. devise_mailer.send(notification, self, *args).deliver_later
  60. end
  61. def setting_default_privacy
  62. settings.default_privacy || (account.locked? ? 'private' : 'public')
  63. end
  64. def setting_boost_modal
  65. settings.boost_modal
  66. end
  67. def setting_auto_play_gif
  68. settings.auto_play_gif
  69. end
  70. private
  71. def sanitize_languages
  72. filtered_languages.reject!(&:blank?)
  73. end
  74. end