mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 04:03:57 -06:00
d45bd7f131
* Abort CensoredWordsValidator early if censored_words_regexp nil. Sometimes censored_words_regex can end up nil, erroring the validator. This handles the nil condition and also adds a spec for the validator
39 lines
1001 B
Ruby
39 lines
1001 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CensoredWordsValidator < ActiveModel::EachValidator
|
|
def validate_each(record, attribute, value)
|
|
words_regexp = censored_words_regexp
|
|
if WordWatcher.words_for_action(:censor).present? && !words_regexp.nil?
|
|
censored_words = censor_words(value, words_regexp)
|
|
return if censored_words.blank?
|
|
record.errors.add(
|
|
attribute,
|
|
:contains_censored_words,
|
|
censored_words: join_censored_words(censored_words)
|
|
)
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def censor_words(value, regexp)
|
|
censored_words = value.scan(regexp)
|
|
censored_words.flatten!
|
|
censored_words.compact!
|
|
censored_words.map!(&:strip)
|
|
censored_words.select!(&:present?)
|
|
censored_words.uniq!
|
|
censored_words
|
|
end
|
|
|
|
def join_censored_words(censored_words)
|
|
censored_words.map!(&:downcase)
|
|
censored_words.uniq!
|
|
censored_words.join(", ".freeze)
|
|
end
|
|
|
|
def censored_words_regexp
|
|
WordWatcher.word_matcher_regexp :censor
|
|
end
|
|
end
|