import { Util } from "discord.js"; import * as t from "io-ts"; import { allowTimeout } from "../../../RegExpRunner"; import { normalizeText } from "../../../utils/normalizeText"; import { stripMarkdown } from "../../../utils/stripMarkdown"; import { TRegex } from "../../../validatorUtils"; import { getTextMatchPartialSummary } from "../functions/getTextMatchPartialSummary"; import { MatchableTextType, matchMultipleTextTypesOnMessage } from "../functions/matchMultipleTextTypesOnMessage"; import { automodTrigger } from "../helpers"; interface MatchResultType { pattern: string; type: MatchableTextType; } const combinedRegexCache: WeakMap = new WeakMap(); export const MatchRegexTrigger = automodTrigger()({ configType: t.type({ patterns: t.array(TRegex), case_sensitive: t.boolean, normalize: t.boolean, strip_markdown: t.boolean, match_messages: t.boolean, match_embeds: t.boolean, match_visible_names: t.boolean, match_usernames: t.boolean, match_nicknames: t.boolean, match_custom_status: t.boolean, }), defaultConfig: { case_sensitive: false, normalize: false, strip_markdown: false, match_messages: true, match_embeds: false, match_visible_names: false, match_usernames: false, match_nicknames: false, match_custom_status: false, }, async match({ pluginData, context, triggerConfig: trigger }) { if (!context.message) { return; } for await (let [type, str] of matchMultipleTextTypesOnMessage(pluginData, trigger, context.message)) { if (trigger.strip_markdown) { str = stripMarkdown(str); } if (trigger.normalize) { str = normalizeText(str); } if (!combinedRegexCache.has(trigger)) { const combinedPattern = trigger.patterns.map((p) => `(?:${p.source})`).join("|"); const combinedRegex = new RegExp(combinedPattern, trigger.case_sensitive ? "" : "i"); combinedRegexCache.set(trigger, combinedRegex); } const regex = combinedRegexCache.get(trigger)!; const matches = await pluginData.state.regexRunner.exec(regex, str).catch(allowTimeout); if (matches?.length) { return { extra: { pattern: "