about summary refs log tree commit diff
path: root/app/models/glitch/filter_helper.rb
blob: 0dfd695265db31ddcfb245249b830c6db03bc90f (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
class Glitch::FilterHelper
  include ActionView::Helpers::SanitizeHelper

  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)
    matchers_match?(status) || (status.reblog? && matchers_match?(status.reblog))
  end

  private

  def matchers_match?(status)
    text_matcher.matches?(strip_tags(status.text)) ||
      text_matcher.matches?(strip_tags(status.spoiler_text)) ||
      tag_matcher.matches?(status.tags)
  end
end