about summary refs log tree commit diff
path: root/app/models
diff options
context:
space:
mode:
authorbeatrix <beatrix.bitrot@gmail.com>2018-02-10 21:46:19 -0500
committerGitHub <noreply@github.com>2018-02-10 21:46:19 -0500
commit20b519f0fcfa2a3a3170aaf385c978726877f329 (patch)
tree6ed37e20febbac1cf4b38d3d569da0ce78e3775c /app/models
parent3405ea6dd9fde38ba1044933fec2ec7fa909ea8c (diff)
parent380989def863fb8eafbd7f6b53f8bfbf9f813528 (diff)
Merge pull request #236 from glitch-soc/plaintext-mutes
Make keyword mutes operate on plain text input
Diffstat (limited to 'app/models')
-rw-r--r--app/models/glitch/keyword_mute_helper.rb27
1 files changed, 27 insertions, 0 deletions
diff --git a/app/models/glitch/keyword_mute_helper.rb b/app/models/glitch/keyword_mute_helper.rb
new file mode 100644
index 000000000..6d067947f
--- /dev/null
+++ b/app/models/glitch/keyword_mute_helper.rb
@@ -0,0 +1,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)
+    matchers_match?(status) || (status.reblog? && matchers_match?(status.reblog))
+  end
+
+  private
+
+  def matchers_match?(status)
+    text_matcher.matches?(prepare_text(status.text)) ||
+      text_matcher.matches?(prepare_text(status.spoiler_text)) ||
+      tag_matcher.matches?(status.tags)
+  end
+
+  def prepare_text(text)
+    Html2Text.convert(text)
+  end
+end