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.
 
 
 
 

47 lines
1.5 KiB

  1. # frozen_string_literal: true
  2. # == Schema Information
  3. #
  4. # Table name: account_identity_proofs
  5. #
  6. # id :bigint(8) not null, primary key
  7. # account_id :bigint(8)
  8. # provider :string default(""), not null
  9. # provider_username :string default(""), not null
  10. # token :text default(""), not null
  11. # verified :boolean default(FALSE), not null
  12. # live :boolean default(FALSE), not null
  13. # created_at :datetime not null
  14. # updated_at :datetime not null
  15. #
  16. class AccountIdentityProof < ApplicationRecord
  17. belongs_to :account
  18. validates :provider, inclusion: { in: ProofProvider::SUPPORTED_PROVIDERS }
  19. validates :provider_username, format: { with: /\A[a-z0-9_]+\z/i }, length: { minimum: 2, maximum: 15 }
  20. validates :provider_username, uniqueness: { scope: [:account_id, :provider] }
  21. validates :token, format: { with: /\A[a-f0-9]+\z/ }, length: { maximum: 66 }
  22. validate :validate_with_provider, if: :token_changed?
  23. scope :active, -> { where(verified: true, live: true) }
  24. after_create_commit :queue_worker
  25. delegate :refresh!, :on_success_path, :badge, to: :provider_instance
  26. private
  27. def provider_instance
  28. @provider_instance ||= ProofProvider.find(provider, self)
  29. end
  30. def queue_worker
  31. provider_instance.worker_class.perform_async(id)
  32. end
  33. def validate_with_provider
  34. provider_instance.validate!
  35. end
  36. end