Apply keyword mutes to reblogs.
This commit is contained in:
@@ -138,7 +138,9 @@ class FeedManager
|
||||
end
|
||||
|
||||
def filter_from_home?(status, receiver_id)
|
||||
return true if Glitch::KeywordMute.matcher_for(receiver_id) =~ status.text
|
||||
keyword_mute_matcher = Glitch::KeywordMute.matcher_for(receiver_id)
|
||||
|
||||
return true if keyword_mute_matcher =~ status.text
|
||||
|
||||
return false if receiver_id == status.account_id
|
||||
return true if status.reply? && (status.in_reply_to_id.nil? || status.in_reply_to_account_id.nil?)
|
||||
@@ -161,6 +163,7 @@ class FeedManager
|
||||
return should_filter
|
||||
elsif status.reblog? # Filter out a reblog
|
||||
should_filter = Block.where(account_id: status.reblog.account_id, target_account_id: receiver_id).exists? # or if the author of the reblogged status is blocking me
|
||||
should_filter ||= keyword_mute_matcher.matches?(status.reblog.text)
|
||||
should_filter ||= AccountDomainBlock.where(account_id: receiver_id, domain: status.reblog.account.domain).exists? # or the author's domain is blocked
|
||||
return should_filter
|
||||
end
|
||||
|
@@ -45,5 +45,9 @@ class Glitch::KeywordMute < ApplicationRecord
|
||||
def =~(str)
|
||||
regex ? regex =~ str : false
|
||||
end
|
||||
|
||||
def matches?(str)
|
||||
!!(regex =~ str)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
Reference in New Issue
Block a user