2017-10-15 03:36:53 +02:00
|
|
|
# frozen_string_literal: true
|
2017-10-10 00:28:28 +02:00
|
|
|
# == Schema Information
|
|
|
|
#
|
2017-10-21 21:47:17 +02:00
|
|
|
# Table name: glitch_keyword_mutes
|
2017-10-10 00:28:28 +02:00
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# account_id :integer not null
|
|
|
|
# keyword :string not null
|
Allow keywords to match either substrings or whole words.
Word-boundary matching only works as intended in English and languages
that use similar word-breaking characters; it doesn't work so well in
(say) Japanese, Chinese, or Thai. It's unacceptable to have a feature
that doesn't work as intended for some languages. (Moreso especially
considering that it's likely that the largest contingent on the Mastodon
bit of the fediverse speaks Japanese.)
There are rules specified in Unicode TR29[1] for word-breaking across
all languages supported by Unicode, but the rules deliberately do not
cover all cases. In fact, TR29 states
For example, reliable detection of word boundaries in languages such
as Thai, Lao, Chinese, or Japanese requires the use of dictionary
lookup, analogous to English hyphenation.
So we aren't going to be able to make word detection work with regexes
within Mastodon (or glitchsoc). However, for a first pass (even if it's
kind of punting) we can allow the user to choose whether they want word
or substring detection and warn about the limitations of this
implementation in, say, docs.
[1]: https://unicode.org/reports/tr29/
https://web.archive.org/web/20171001005125/https://unicode.org/reports/tr29/
2017-10-16 02:49:22 +02:00
|
|
|
# whole_word :boolean default(TRUE), not null
|
2017-10-10 00:28:28 +02:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|
|
|
|
|
2017-10-21 21:47:17 +02:00
|
|
|
class Glitch::KeywordMute < ApplicationRecord
|
2017-10-15 03:36:53 +02:00
|
|
|
belongs_to :account, required: true
|
|
|
|
|
|
|
|
validates_presence_of :keyword
|
|
|
|
|
2017-11-16 00:26:29 +01:00
|
|
|
after_commit :invalidate_cached_matchers
|
2017-10-15 09:52:53 +02:00
|
|
|
|
2017-11-16 00:26:29 +01:00
|
|
|
def self.text_matcher_for(account_id)
|
|
|
|
TextMatcher.new(account_id)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.tag_matcher_for(account_id)
|
|
|
|
TagMatcher.new(account_id)
|
2017-10-15 09:52:53 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-11-16 00:26:29 +01:00
|
|
|
def invalidate_cached_matchers
|
|
|
|
Rails.cache.delete(TextMatcher.cache_key(account_id))
|
|
|
|
Rails.cache.delete(TagMatcher.cache_key(account_id))
|
2017-10-15 03:36:53 +02:00
|
|
|
end
|
|
|
|
|
2017-11-16 00:26:29 +01:00
|
|
|
class RegexpMatcher
|
2017-10-22 07:24:32 +02:00
|
|
|
attr_reader :account_id
|
2017-10-15 03:36:53 +02:00
|
|
|
attr_reader :regex
|
|
|
|
|
2017-10-15 09:52:53 +02:00
|
|
|
def initialize(account_id)
|
2017-10-22 07:24:32 +02:00
|
|
|
@account_id = account_id
|
2017-11-16 00:26:29 +01:00
|
|
|
regex_text = Rails.cache.fetch(self.class.cache_key(account_id)) { make_regex_text }
|
2017-11-13 18:06:02 +01:00
|
|
|
@regex = /#{regex_text}/
|
2017-10-22 07:24:32 +02:00
|
|
|
end
|
|
|
|
|
2017-11-16 00:26:29 +01:00
|
|
|
protected
|
|
|
|
|
|
|
|
def keywords
|
|
|
|
Glitch::KeywordMute.where(account_id: account_id).pluck(:whole_word, :keyword)
|
|
|
|
end
|
|
|
|
|
|
|
|
def boundary_regex_for_keyword(keyword)
|
|
|
|
sb = keyword =~ /\A[[:word:]]/ ? '\b' : ''
|
|
|
|
eb = keyword =~ /[[:word:]]\Z/ ? '\b' : ''
|
|
|
|
|
|
|
|
/(?mix:#{sb}#{Regexp.escape(keyword)}#{eb})/
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class TextMatcher < RegexpMatcher
|
|
|
|
def self.cache_key(account_id)
|
2017-11-16 01:08:03 +01:00
|
|
|
format('keyword_mutes:regex:text:%s', account_id)
|
2017-11-16 00:26:29 +01:00
|
|
|
end
|
|
|
|
|
2017-11-16 01:26:21 +01:00
|
|
|
def matches?(str)
|
|
|
|
!!(regex =~ str)
|
2017-10-25 01:31:34 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-11-16 00:26:29 +01:00
|
|
|
def make_regex_text
|
|
|
|
kws = keywords.map! do |whole_word, keyword|
|
|
|
|
whole_word ? boundary_regex_for_keyword(keyword) : keyword
|
2017-10-25 01:31:34 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
Regexp.union(kws).source
|
2017-10-15 03:36:53 +02:00
|
|
|
end
|
2017-11-16 00:26:29 +01:00
|
|
|
end
|
2017-10-15 03:36:53 +02:00
|
|
|
|
2017-11-16 00:26:29 +01:00
|
|
|
class TagMatcher < RegexpMatcher
|
|
|
|
def self.cache_key(account_id)
|
2017-11-16 01:08:03 +01:00
|
|
|
format('keyword_mutes:regex:tag:%s', account_id)
|
2017-11-16 00:26:29 +01:00
|
|
|
end
|
2017-10-22 07:24:32 +02:00
|
|
|
|
2017-11-16 01:26:21 +01:00
|
|
|
def matches?(tags)
|
|
|
|
tags.pluck(:name).any? { |n| regex =~ n }
|
2017-11-16 00:26:29 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def make_regex_text
|
|
|
|
kws = keywords.map! do |whole_word, keyword|
|
|
|
|
term = (Tag::HASHTAG_RE =~ keyword) ? $1 : keyword
|
|
|
|
whole_word ? boundary_regex_for_keyword(term) : term
|
|
|
|
end
|
|
|
|
|
|
|
|
Regexp.union(kws).source
|
2017-10-21 22:44:47 +02:00
|
|
|
end
|
2017-10-14 09:28:20 +02:00
|
|
|
end
|
2017-10-10 00:28:28 +02:00
|
|
|
end
|