discourse/spec/lib/validators
Selase Krakani 862007fb18
FEATURE: Add support for case-sensitive Watched Words (#17445)
* FEATURE: Add case-sensitivity flag to watched_words

Currently, all watched words are matched case-insensitively. This flag
allows a watched word to be flagged for case-sensitive matching.
To allow allow for backwards compatibility the flag is set to false by
default.

* FEATURE: Support case-sensitive creation of Watched Words via API

Extend admin creation and upload of Watched Words to support case
sensitive flag. This lays the ground work for supporting
case-insensitive matching of Watched Words.

Support for an extra column has also been introduced for the Watched
Words upload CSV file. The new column structure is as follows:

 word,replacement,case_sentive

* FEATURE: Enable case-sensitive matching of Watched Words

WordWatcher's word_matcher_regexp now returns a list of regular
expressions instead of one case-insensitive regular expression.

With the ability to flag a Watched Word as case-sensitive, an action
can have words of both sensitivities.This makes the use of the global
Regexp::IGNORECASE flag added to all words problematic.

To get around platform limitations around the use of subexpression level
switches/flags, a list of regular expressions is returned instead, one for each
case sensitivity.

Word matching has also been updated to use this list of regular expressions
instead of one.

* FEATURE: Use case-sensitive regular expressions for Watched Words

Update Watched Words regular expressions matching and processing to handle
the extra metadata which comes along with the introduction of
case-sensitive Watched Words.

This allows case-sensitive Watched Words to matched as such.

* DEV: Simplify type casting of case-sensitive flag from uploads

Use builtin semantics instead of a custom method for converting
string case flags in uploaded Watched Words to boolean.

* UX: Add case-sensitivity details to Admin Watched Words UI

Update Watched Word form to include a toggle for case-sensitivity.
This also adds support for, case-sensitive testing and matching of  Watched Word
in the admin UI.

* DEV: Code improvements from review feedback

 - Extract watched word regex creation out to a utility function
 - Make JS array presence check more explicit and readable

* DEV: Extract Watched Word regex creation to utility function

Clean-up work from review feedback. Reduce code duplication.

* DEV: Rename word_matcher_regexp to word_matcher_regexp_list

Since a list is returned now instead of a single regular expression,
change `word_matcher_regexp` to `word_matcher_regexp_list` to better communicate
this change.

* DEV:  Incorporate WordWatcher updates from upstream

Resolve conflicts and ensure apply_to_text does not remove non-word characters in matches
that aren't at the beginning of the line.
2022-08-02 10:06:03 +02:00
..
allowed_ip_address_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
category_search_priority_weights_validator_spec.rb DEV: Upgrade to Rails 7 2022-04-28 11:51:03 +02:00
censored_words_validator_spec.rb FEATURE: Add support for case-sensitive Watched Words (#17445) 2022-08-02 10:06:03 +02:00
css_color_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
delete_rejected_email_after_days_spec.rb FIX: Rejected emails should not be cleaned up before their logs (#17648) 2022-07-27 07:28:44 +01:00
email_address_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
email_setting_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
email_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
enable_invite_only_validator_spec.rb DEV: Automatically require 'rails_helper' in all specs (#16077) 2022-03-01 17:50:50 +00:00
enable_local_logins_via_email_validator_spec.rb DEV: Automatically require 'rails_helper' in all specs (#16077) 2022-03-01 17:50:50 +00:00
enable_sso_validator_spec.rb FIX: Check 2FA is disabled before enabling DiscourseConnect. (#16542) 2022-04-25 14:49:36 -03:00
external_system_avatars_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
group_setting_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
host_list_setting_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
integer_setting_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
ip_address_format_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
max_emojis_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
max_username_length_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
min_username_length_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
password_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
post_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
quality_title_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
regex_presence_validator_spec.rb DEV: Automatically require 'rails_helper' in all specs (#16077) 2022-03-01 17:50:50 +00:00
regex_setting_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
regexp_list_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
reply_by_email_address_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
reply_by_email_enabled_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
search_tokenize_chinese_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
search_tokenize_japanese_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
selectable_avatars_mode_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
sso_overrides_email_validator_spec.rb DEV: Automatically require 'rails_helper' in all specs (#16077) 2022-03-01 17:50:50 +00:00
string_setting_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
timezone_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
topic_title_length_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
unicode_username_allowlist_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
unicode_username_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
upload_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
url_validator_spec.rb DEV: Upgrade to Rails 7 2022-04-28 11:51:03 +02:00
user_full_name_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00
username_setting_validator_spec.rb Add RSpec 4 compatibility (#17652) 2022-07-28 10:27:38 +08:00