2019-06-17 05:37:11 +00:00
|
|
|
|
using Discord;
|
2021-08-26 03:18:45 +00:00
|
|
|
|
using RegexBot.Common;
|
2019-06-17 05:37:11 +00:00
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
|
|
2022-07-06 03:59:19 +00:00
|
|
|
|
namespace RegexBot.Modules.RegexModerator;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Representation of a single RegexModerator rule for a guild.
|
|
|
|
|
/// Data in this class is immutable. Contains various helper methods.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[DebuggerDisplay("RM rule '{Label}'")]
|
|
|
|
|
class ConfDefinition {
|
|
|
|
|
public string Label { get; }
|
|
|
|
|
|
|
|
|
|
// Matching settings
|
|
|
|
|
private IEnumerable<Regex> Regex { get; }
|
|
|
|
|
private FilterList Filter { get; }
|
|
|
|
|
private bool IgnoreMods { get; }
|
|
|
|
|
private bool ScanEmbeds { get; }
|
|
|
|
|
|
|
|
|
|
// Response settings
|
|
|
|
|
public EntityName? ReportingChannel { get; }
|
|
|
|
|
public IReadOnlyList<string> Response { get; }
|
|
|
|
|
public int BanPurgeDays { get; }
|
|
|
|
|
public bool NotifyChannelOfRemoval { get; }
|
|
|
|
|
public bool NotifyUserOfRemoval { get; }
|
|
|
|
|
|
|
|
|
|
public ConfDefinition(JObject def) {
|
|
|
|
|
Label = def[nameof(Label)]?.Value<string>()
|
|
|
|
|
?? throw new ModuleLoadException($"Encountered a rule without a defined {nameof(Label)}.");
|
|
|
|
|
|
|
|
|
|
var errpostfx = $" in the rule definition for '{Label}'.";
|
|
|
|
|
|
|
|
|
|
var rptch = def[nameof(ReportingChannel)]?.Value<string>();
|
|
|
|
|
if (rptch != null) {
|
2022-08-23 02:25:48 +00:00
|
|
|
|
try {
|
|
|
|
|
ReportingChannel = new EntityName(rptch, EntityType.Channel);
|
|
|
|
|
} catch (FormatException) {
|
2022-07-06 03:59:19 +00:00
|
|
|
|
throw new ModuleLoadException($"'{nameof(ReportingChannel)}' is not defined as a channel{errpostfx}");
|
2022-08-23 02:25:48 +00:00
|
|
|
|
}
|
2019-06-17 05:37:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-07-06 03:59:19 +00:00
|
|
|
|
// Regex loading
|
|
|
|
|
var opts = RegexOptions.Compiled | RegexOptions.CultureInvariant;
|
|
|
|
|
// Reminder: in Singleline mode, all contents are subject to the same regex (useful if e.g. spammer separates words line by line)
|
|
|
|
|
opts |= RegexOptions.Singleline;
|
|
|
|
|
// IgnoreCase is enabled by default; must be explicitly set to false
|
|
|
|
|
if (def["IgnoreCase"]?.Value<bool>() ?? true) opts |= RegexOptions.IgnoreCase;
|
|
|
|
|
const string ErrBadRegex = "Unable to parse regular expression pattern";
|
|
|
|
|
var regexRules = new List<Regex>();
|
|
|
|
|
List<string> regexStrings;
|
|
|
|
|
try {
|
2022-07-09 20:22:39 +00:00
|
|
|
|
regexStrings = Utilities.LoadStringOrStringArray(def[nameof(Regex)]);
|
2022-07-06 03:59:19 +00:00
|
|
|
|
} catch (ArgumentNullException) {
|
|
|
|
|
throw new ModuleLoadException($"No patterns were defined under '{nameof(Regex)}'{errpostfx}");
|
|
|
|
|
} catch (ArgumentException) {
|
|
|
|
|
throw new ModuleLoadException($"'{nameof(Regex)}' is not properly defined{errpostfx}");
|
|
|
|
|
}
|
|
|
|
|
foreach (var input in regexStrings) {
|
|
|
|
|
try {
|
|
|
|
|
regexRules.Add(new Regex(input, opts));
|
|
|
|
|
} catch (ArgumentException) {
|
|
|
|
|
throw new ModuleLoadException($"{ErrBadRegex}{errpostfx}");
|
2019-06-17 05:37:11 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2022-07-06 03:59:19 +00:00
|
|
|
|
Regex = regexRules.AsReadOnly();
|
|
|
|
|
|
|
|
|
|
// Filtering
|
|
|
|
|
Filter = new FilterList(def);
|
|
|
|
|
|
|
|
|
|
// Misc options
|
|
|
|
|
// IgnoreMods is enabled by default; must be explicitly set to false
|
|
|
|
|
IgnoreMods = def[nameof(IgnoreMods)]?.Value<bool>() ?? true;
|
|
|
|
|
ScanEmbeds = def[nameof(ScanEmbeds)]?.Value<bool>() ?? false; // false by default
|
|
|
|
|
|
|
|
|
|
// Load response(s) and response settings
|
|
|
|
|
try {
|
2022-07-09 20:22:39 +00:00
|
|
|
|
Response = Utilities.LoadStringOrStringArray(def[nameof(Response)]).AsReadOnly();
|
2022-07-06 03:59:19 +00:00
|
|
|
|
} catch (ArgumentNullException) {
|
|
|
|
|
throw new ModuleLoadException($"No responses were defined under '{nameof(Response)}'{errpostfx}");
|
|
|
|
|
} catch (ArgumentException) {
|
|
|
|
|
throw new ModuleLoadException($"'{nameof(Response)}' is not properly defined{errpostfx}");
|
2019-06-17 05:37:11 +00:00
|
|
|
|
}
|
2022-07-06 03:59:19 +00:00
|
|
|
|
BanPurgeDays = def[nameof(BanPurgeDays)]?.Value<int>() ?? 0;
|
|
|
|
|
NotifyChannelOfRemoval = def[nameof(NotifyChannelOfRemoval)]?.Value<bool>() ?? true;
|
|
|
|
|
NotifyUserOfRemoval = def[nameof(NotifyUserOfRemoval)]?.Value<bool>() ?? true;
|
|
|
|
|
}
|
2019-06-17 05:37:11 +00:00
|
|
|
|
|
2022-07-06 03:59:19 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Checks the given message to determine if it matches this definition's constraints.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>True if match.</returns>
|
|
|
|
|
public bool IsMatch(SocketMessage m, bool senderIsModerator) {
|
|
|
|
|
if (Filter.IsFiltered(m, false)) return false;
|
|
|
|
|
if (senderIsModerator && IgnoreMods) return false;
|
|
|
|
|
|
|
|
|
|
foreach (var regex in Regex) {
|
|
|
|
|
if (ScanEmbeds && regex.IsMatch(SerializeEmbed(m.Embeds))) return true;
|
|
|
|
|
if (regex.IsMatch(m.Content)) return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2019-06-17 05:37:11 +00:00
|
|
|
|
|
2022-07-06 03:59:19 +00:00
|
|
|
|
private static string SerializeEmbed(IReadOnlyCollection<Embed> e) {
|
|
|
|
|
static string serialize(Embed e) {
|
|
|
|
|
var result = new StringBuilder();
|
|
|
|
|
if (e.Author.HasValue) result.AppendLine($"{e.Author.Value.Name} {e.Author.Value.Url}");
|
2019-06-17 05:37:11 +00:00
|
|
|
|
if (!string.IsNullOrWhiteSpace(e.Title)) result.AppendLine(e.Title);
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(e.Description)) result.AppendLine(e.Description);
|
|
|
|
|
|
2022-07-06 03:59:19 +00:00
|
|
|
|
foreach (var f in e.Fields) {
|
2019-06-17 05:37:11 +00:00
|
|
|
|
if (!string.IsNullOrWhiteSpace(f.Name)) result.AppendLine(f.Name);
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(f.Value)) result.AppendLine(f.Value);
|
|
|
|
|
}
|
2022-07-06 03:59:19 +00:00
|
|
|
|
if (e.Footer.HasValue) {
|
2019-06-17 05:37:11 +00:00
|
|
|
|
result.AppendLine(e.Footer.Value.Text ?? "");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result.ToString();
|
|
|
|
|
}
|
2022-07-06 03:59:19 +00:00
|
|
|
|
|
|
|
|
|
var text = new StringBuilder();
|
|
|
|
|
foreach (var item in e) text.AppendLine(serialize(item));
|
|
|
|
|
return text.ToString();
|
2019-06-17 05:37:11 +00:00
|
|
|
|
}
|
|
|
|
|
}
|