2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
2017-05-02 02:14:47 +02:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: domain_blocks
|
|
|
|
#
|
2018-10-20 08:02:44 +02: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-02 02:14:47 +02:00
|
|
|
#
|
2016-11-15 16:56:29 +01:00
|
|
|
|
2016-10-09 14:48:43 +02:00
|
|
|
class DomainBlock < ApplicationRecord
|
2018-12-26 06:38:42 +01:00
|
|
|
include DomainNormalizable
|
|
|
|
|
2017-07-24 14:26:55 +02:00
|
|
|
enum severity: [:silence, :suspend, :noop]
|
2017-01-23 17:38:38 +01:00
|
|
|
|
2016-10-09 14:48:43 +02:00
|
|
|
validates :domain, presence: true, uniqueness: true
|
|
|
|
|
2017-04-16 19:37:01 +02:00
|
|
|
has_many :accounts, foreign_key: :domain, primary_key: :domain
|
|
|
|
delegate :count, to: :accounts, prefix: true
|
|
|
|
|
2019-02-18 14:59:19 +01:00
|
|
|
scope :matches_domain, ->(value) { where(arel_table[:domain].matches("%#{value}%")) }
|
|
|
|
|
2016-10-09 14:48:43 +02:00
|
|
|
def self.blocked?(domain)
|
2017-02-19 20:25:54 +01:00
|
|
|
where(domain: domain, severity: :suspend).exists?
|
2016-10-09 14:48:43 +02:00
|
|
|
end
|
2019-05-03 20:36:36 +02:00
|
|
|
|
|
|
|
def stricter_than?(other_block)
|
|
|
|
return true if suspend?
|
|
|
|
return false if other_block.suspend? && (silence? || noop?)
|
|
|
|
return false if other_block.silence? && noop?
|
|
|
|
(reject_media || !other_block.reject_media) && (reject_reports || !other_block.reject_reports)
|
|
|
|
end
|
2019-05-14 19:05:02 +02:00
|
|
|
|
|
|
|
def affected_accounts_count
|
|
|
|
scope = suspend? ? accounts.where(suspended_at: created_at) : accounts.where(silenced_at: created_at)
|
|
|
|
scope.count
|
|
|
|
end
|
2016-10-09 14:48:43 +02:00
|
|
|
end
|