otwarchive-symphonyarchive/app/models/mute.rb

36 lines
875 B
Ruby
Raw Normal View History

2026-03-11 22:22:11 +00:00
class Mute < ApplicationRecord
include MuteHelper
belongs_to :muter, class_name: "User"
belongs_to :muted, class_name: "User"
validates :muter, :muted, presence: true
validates :muted_id, uniqueness: { scope: :muter_id }
validate :check_self
def check_self
errors.add(:muted, :self) if muted == muter
end
validate :check_official, if: :muted
def check_official
errors.add(:muted, :official) if muted.official
end
validate :check_mute_limit
def check_mute_limit
errors.add(:muted, :limit) if muter.muted_users.count >= ArchiveConfig.MAX_MUTED_USERS
end
after_create :update_cache
after_destroy :update_cache
def update_cache
Rails.cache.write(mute_css_key(muter), mute_css_uncached(muter))
end
def muted_byline=(byline)
pseud = Pseud.parse_byline(byline)
self.muted = pseud.user unless pseud.nil?
end
end