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