about summary refs log tree commit diff
path: root/app/models
diff options
context:
space:
mode:
authorDavid Yip <yipdw@member.fsf.org>2017-12-03 17:28:30 -0600
committerDavid Yip <yipdw@member.fsf.org>2018-02-10 02:40:27 -0600
commit29b5b46c87979f49e2d1c4e574429ac649ff2bdf (patch)
tree2ba099daa48eb27a47dab2b654a5ec8de70887a4 /app/models
parent3405ea6dd9fde38ba1044933fec2ec7fa909ea8c (diff)
Strip HTML from keyword mute input. #234.
Diffstat (limited to 'app/models')
-rw-r--r--app/models/glitch/filter_helper.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/app/models/glitch/filter_helper.rb b/app/models/glitch/filter_helper.rb
new file mode 100644
index 000000000..0dfd69526
--- /dev/null
+++ b/app/models/glitch/filter_helper.rb
@@ -0,0 +1,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