about summary refs log tree commit diff
path: root/app/models/glitch/keyword_mute_helper.rb
blob: 955c3b1f3db042de080e70bada535db5ed313dc1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
require 'html2text'

class Glitch::KeywordMuteHelper
  attr_reader :text_matcher
  attr_reader :tag_matcher

  def initialize(receiver_id)
    @text_matcher   = Glitch::KeywordMute.text_matcher_for(receiver_id)
    @tag_matcher    = Glitch::KeywordMute.tag_matcher_for(receiver_id)
  end

  def matches?(status, scope)
    matchers_match?(status, scope) || (status.reblog? && matchers_match?(status.reblog, scope))
  end

  private

  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)
  end

  def prepare_text(text)
    Html2Text.convert(text)
  end
end