The code powering m.abunchtell.com https://m.abunchtell.com
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

47 rader
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: 30 }
  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_commit :queue_worker, if: :saved_change_to_token?
  25. delegate :refresh!, :on_success_path, :badge, to: :provider_instance
  26. def provider_instance
  27. @provider_instance ||= ProofProvider.find(provider, self)
  28. end
  29. private
  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