2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-09 05:48:43 -07:00
|
|
|
class DomainBlock < ApplicationRecord
|
2017-01-23 08:38:38 -08:00
|
|
|
enum severity: [:silence, :suspend]
|
|
|
|
|
2017-04-16 03:51:30 -07:00
|
|
|
attr_accessor :retroactive
|
|
|
|
|
2016-10-09 05:48:43 -07:00
|
|
|
validates :domain, presence: true, uniqueness: true
|
|
|
|
|
2017-04-16 10:37:01 -07:00
|
|
|
has_many :accounts, foreign_key: :domain, primary_key: :domain
|
|
|
|
delegate :count, to: :accounts, prefix: true
|
|
|
|
|
2016-10-09 05:48:43 -07:00
|
|
|
def self.blocked?(domain)
|
2017-02-19 11:25:54 -08:00
|
|
|
where(domain: domain, severity: :suspend).exists?
|
2016-10-09 05:48:43 -07:00
|
|
|
end
|
2017-04-24 17:47:31 -07:00
|
|
|
|
|
|
|
before_validation :normalize_domain
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def normalize_domain
|
|
|
|
self.domain = TagManager.instance.normalize_domain(domain)
|
|
|
|
end
|
2016-10-09 05:48:43 -07:00
|
|
|
end
|