2021-04-17 03:14:25 +02:00
|
|
|
# frozen_string_literal: true
|
2023-02-20 06:58:28 +01:00
|
|
|
|
2021-04-17 03:14:25 +02:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: canonical_email_blocks
|
|
|
|
#
|
|
|
|
# id :bigint(8) not null, primary key
|
|
|
|
# canonical_email_hash :string default(""), not null
|
2022-08-28 03:31:54 +02:00
|
|
|
# reference_account_id :bigint(8)
|
2021-04-17 03:14:25 +02:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|
|
|
|
|
|
|
|
class CanonicalEmailBlock < ApplicationRecord
|
|
|
|
include EmailHelper
|
2022-08-28 03:31:54 +02:00
|
|
|
include Paginable
|
2021-04-17 03:14:25 +02:00
|
|
|
|
2022-08-28 03:31:54 +02:00
|
|
|
belongs_to :reference_account, class_name: 'Account', optional: true
|
2021-04-17 03:14:25 +02:00
|
|
|
|
2021-11-24 17:41:03 +01:00
|
|
|
validates :canonical_email_hash, presence: true, uniqueness: true
|
2021-04-17 03:14:25 +02:00
|
|
|
|
2022-08-28 03:31:54 +02:00
|
|
|
scope :matching_email, ->(email) { where(canonical_email_hash: email_to_canonical_email_hash(email)) }
|
|
|
|
|
|
|
|
def to_log_human_identifier
|
|
|
|
canonical_email_hash
|
|
|
|
end
|
|
|
|
|
2021-04-17 03:14:25 +02:00
|
|
|
def email=(email)
|
|
|
|
self.canonical_email_hash = email_to_canonical_email_hash(email)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.block?(email)
|
2022-08-28 03:31:54 +02:00
|
|
|
matching_email(email).exists?
|
2021-12-17 23:02:14 +01:00
|
|
|
end
|
2021-04-17 03:14:25 +02:00
|
|
|
end
|