2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
2017-05-01 17:14:47 -07:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: domain_blocks
|
|
|
|
#
|
2018-10-19 23:02:44 -07:00
|
|
|
# id :bigint(8) not null, primary key
|
|
|
|
# domain :string default(""), not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# severity :integer default("silence")
|
|
|
|
# reject_media :boolean default(FALSE), not null
|
|
|
|
# reject_reports :boolean default(FALSE), not null
|
2017-05-01 17:14:47 -07:00
|
|
|
#
|
2016-11-15 07:56:29 -08:00
|
|
|
|
2016-10-09 05:48:43 -07:00
|
|
|
class DomainBlock < ApplicationRecord
|
2018-12-25 21:38:42 -08:00
|
|
|
include DomainNormalizable
|
|
|
|
|
2017-07-24 05:26:55 -07:00
|
|
|
enum severity: [:silence, :suspend, :noop]
|
2017-01-23 08:38:38 -08:00
|
|
|
|
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
|
|
|
|
|
2019-02-18 05:59:19 -08:00
|
|
|
scope :matches_domain, ->(value) { where(arel_table[:domain].matches("%#{value}%")) }
|
|
|
|
|
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
|
|
|
|
end
|