2017-10-04 15:16:10 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: email_domain_blocks
|
|
|
|
#
|
2018-04-23 11:29:17 +02:00
|
|
|
# id :bigint(8) not null, primary key
|
2017-11-14 20:37:17 +01:00
|
|
|
# domain :string default(""), not null
|
2017-10-04 15:16:10 +02:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2020-03-12 22:35:20 +01:00
|
|
|
# parent_id :bigint(8)
|
2017-10-04 15:16:10 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
class EmailDomainBlock < ApplicationRecord
|
2018-12-26 06:38:42 +01:00
|
|
|
include DomainNormalizable
|
2017-11-14 20:37:17 +01:00
|
|
|
|
2020-03-12 22:35:20 +01:00
|
|
|
belongs_to :parent, class_name: 'EmailDomainBlock', optional: true
|
|
|
|
has_many :children, class_name: 'EmailDomainBlock', foreign_key: :parent_id, inverse_of: :parent, dependent: :destroy
|
|
|
|
|
2019-08-08 23:04:19 +02:00
|
|
|
validates :domain, presence: true, uniqueness: true, domain: true
|
2017-11-14 20:37:17 +01:00
|
|
|
|
2020-03-12 22:35:20 +01:00
|
|
|
def with_dns_records=(val)
|
|
|
|
@with_dns_records = ActiveModel::Type::Boolean.new.cast(val)
|
|
|
|
end
|
|
|
|
|
|
|
|
def with_dns_records?
|
|
|
|
@with_dns_records
|
|
|
|
end
|
|
|
|
|
|
|
|
alias with_dns_records with_dns_records?
|
|
|
|
|
2017-10-04 15:16:10 +02:00
|
|
|
def self.block?(email)
|
2017-11-14 20:37:17 +01:00
|
|
|
_, domain = email.split('@', 2)
|
|
|
|
|
|
|
|
return true if domain.nil?
|
|
|
|
|
|
|
|
begin
|
|
|
|
domain = TagManager.instance.normalize_domain(domain)
|
|
|
|
rescue Addressable::URI::InvalidURIError
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2017-10-04 15:16:10 +02:00
|
|
|
where(domain: domain).exists?
|
|
|
|
end
|
|
|
|
end
|