mastodon/app/models/domain_block.rb

33 lines
965 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# == Schema Information
#
# Table name: domain_blocks
#
# 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
#
2016-10-09 14:48:43 +02:00
class DomainBlock < ApplicationRecord
include DomainNormalizable
enum severity: [:silence, :suspend, :noop]
attr_accessor :retroactive
2016-10-09 14:48:43 +02:00
validates :domain, presence: true, uniqueness: true
has_many :accounts, foreign_key: :domain, primary_key: :domain
delegate :count, to: :accounts, prefix: true
2019-02-24 01:55:42 +01:00
scope :matches_domain, ->(value) { where(arel_table[:domain].matches("%#{value}%")) }
2016-10-09 14:48:43 +02:00
def self.blocked?(domain)
where(domain: domain, severity: :suspend).exists?
2016-10-09 14:48:43 +02:00
end
end