2018-02-10 17:32:14 +01:00
|
|
|
require 'html2text'
|
2017-12-04 04:40:28 +01:00
|
|
|
|
2017-12-04 04:49:55 +01:00
|
|
|
class Glitch::KeywordMuteHelper
|
2017-12-04 00:28:30 +01:00
|
|
|
attr_reader :text_matcher
|
|
|
|
attr_reader :tag_matcher
|
|
|
|
|
|
|
|
def initialize(receiver_id)
|
2017-12-04 04:40:28 +01:00
|
|
|
@text_matcher = Glitch::KeywordMute.text_matcher_for(receiver_id)
|
|
|
|
@tag_matcher = Glitch::KeywordMute.tag_matcher_for(receiver_id)
|
2017-12-04 00:28:30 +01:00
|
|
|
end
|
|
|
|
|
2018-06-04 02:41:54 +02:00
|
|
|
def matches?(status, scope)
|
|
|
|
matchers_match?(status, scope) || (status.reblog? && matchers_match?(status.reblog, scope))
|
2017-12-04 00:28:30 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2018-06-04 02:41:54 +02:00
|
|
|
def matchers_match?(status, scope)
|
|
|
|
text_matcher.matches?(prepare_text(status.text), scope) ||
|
|
|
|
text_matcher.matches?(prepare_text(status.spoiler_text), scope) ||
|
|
|
|
tag_matcher.matches?(status.tags, scope)
|
2017-12-04 00:28:30 +01:00
|
|
|
end
|
2017-12-04 04:40:28 +01:00
|
|
|
|
|
|
|
def prepare_text(text)
|
2018-02-10 17:32:14 +01:00
|
|
|
Html2Text.convert(text)
|
2017-12-04 04:40:28 +01:00
|
|
|
end
|
2017-12-04 00:28:30 +01:00
|
|
|
end
|