2016-11-15 09:56:29 -06:00
|
|
|
# frozen_string_literal: true
|
2017-05-01 19:14:47 -05:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: domain_blocks
|
|
|
|
#
|
2018-04-23 04:29:17 -05:00
|
|
|
# id :bigint(8) not null, primary key
|
2017-05-01 19:14:47 -05:00
|
|
|
# domain :string default(""), not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# severity :integer default("silence")
|
2017-07-12 20:12:25 -05:00
|
|
|
# reject_media :boolean default(FALSE), not null
|
2017-05-01 19:14:47 -05:00
|
|
|
#
|
2016-11-15 09:56:29 -06:00
|
|
|
|
2016-10-09 07:48:43 -05:00
|
|
|
class DomainBlock < ApplicationRecord
|
2017-07-24 07:26:55 -05:00
|
|
|
enum severity: [:silence, :suspend, :noop]
|
2017-01-23 10:38:38 -06:00
|
|
|
|
2017-04-16 05:51:30 -05:00
|
|
|
attr_accessor :retroactive
|
|
|
|
|
2016-10-09 07:48:43 -05:00
|
|
|
validates :domain, presence: true, uniqueness: true
|
|
|
|
|
2017-04-16 12:37:01 -05:00
|
|
|
has_many :accounts, foreign_key: :domain, primary_key: :domain
|
|
|
|
delegate :count, to: :accounts, prefix: true
|
|
|
|
|
2016-10-09 07:48:43 -05:00
|
|
|
def self.blocked?(domain)
|
2017-02-19 13:25:54 -06:00
|
|
|
where(domain: domain, severity: :suspend).exists?
|
2016-10-09 07:48:43 -05:00
|
|
|
end
|
2017-04-24 19:47:31 -05:00
|
|
|
|
|
|
|
before_validation :normalize_domain
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def normalize_domain
|
|
|
|
self.domain = TagManager.instance.normalize_domain(domain)
|
|
|
|
end
|
2016-10-09 07:48:43 -05:00
|
|
|
end
|