hippofish/packages/client/src/scripts/check-word-mute.ts

133 lines
3.2 KiB
TypeScript
Raw Normal View History

import type * as firefish from "firefish-js";
2023-09-02 01:27:33 +02:00
export interface Muted {
muted: boolean;
matched: string[];
2023-05-04 07:41:18 +02:00
what?: string; // "note" || "reply" || "renote" || "quote"
2023-09-02 01:27:33 +02:00
}
const NotMuted = { muted: false, matched: [] };
function checkLangMute(
note: firefish.entities.Note,
mutedLangs: Array<string | string[]>,
): Muted {
const mutedLangList = new Set(
mutedLangs.reduce((arr, x) => [...arr, ...(Array.isArray(x) ? x : [x])]),
);
if (mutedLangList.has((note.lang?.[0]?.lang || "").split("-")[0])) {
return { muted: true, matched: [note.lang?.[0]?.lang] };
}
return NotMuted;
}
2023-05-04 22:17:16 +02:00
function checkWordMute(
note: firefish.entities.Note,
2023-05-04 22:17:16 +02:00
mutedWords: Array<string | string[]>,
): Muted {
2023-05-20 22:34:39 +02:00
let text = `${note.cw ?? ""} ${note.text ?? ""}`;
if (note.files != null)
text += ` ${note.files.map((f) => f.comment ?? "").join(" ")}`;
text = text.trim();
2023-05-04 07:13:13 +02:00
if (text === "") return NotMuted;
2023-09-02 01:27:33 +02:00
const result = { muted: false, matched: [] };
2023-05-05 05:23:44 +02:00
2023-05-04 07:13:13 +02:00
for (const mutePattern of mutedWords) {
if (Array.isArray(mutePattern)) {
2023-05-05 05:23:44 +02:00
// Clean up
const keywords = mutePattern.filter((keyword) => keyword !== "");
if (
keywords.length > 0 &&
keywords.every((keyword) =>
text.toLowerCase().includes(keyword.toLowerCase()),
)
2023-05-05 05:23:44 +02:00
) {
result.muted = true;
result.matched.push(...keywords);
2023-05-04 07:13:13 +02:00
}
} else {
2023-05-05 05:23:44 +02:00
// represents RegExp
2023-05-04 07:13:13 +02:00
const regexp = mutePattern.match(/^\/(.+)\/(.*)$/);
2023-05-05 05:23:44 +02:00
2023-05-04 07:13:13 +02:00
// This should never happen due to input sanitisation.
if (!regexp) {
console.warn(`Found invalid regex in word mutes: ${mutePattern}`);
continue;
}
2023-05-05 05:23:44 +02:00
try {
if (new RegExp(regexp[1], regexp[2]).test(text)) {
result.muted = true;
result.matched.push(mutePattern);
}
} catch (err) {
// This should never happen due to input sanitisation.
2023-05-04 07:13:13 +02:00
}
}
}
2023-05-04 22:22:32 +02:00
2023-05-05 05:23:44 +02:00
result.matched = [...new Set(result.matched)];
return result;
2023-05-04 07:13:13 +02:00
}
export function getWordSoftMute(
note: firefish.entities.Note,
meId: string | null | undefined,
2023-01-13 05:40:33 +01:00
mutedWords: Array<string | string[]>,
mutedLangs: Array<string | string[]>,
): Muted {
if (meId == null || note.userId === meId) return NotMuted;
if (mutedWords.length > 0) {
2023-09-02 01:27:33 +02:00
const noteMuted = checkWordMute(note, mutedWords);
2023-05-04 07:13:13 +02:00
if (noteMuted.muted) {
noteMuted.what = "note";
return noteMuted;
}
2023-05-04 07:13:13 +02:00
if (note.renote) {
2023-09-02 01:27:33 +02:00
const renoteMuted = checkWordMute(note.renote, mutedWords);
2023-05-04 07:13:13 +02:00
if (renoteMuted.muted) {
2023-05-04 07:41:18 +02:00
renoteMuted.what = note.text == null ? "renote" : "quote";
2023-05-04 07:13:13 +02:00
return renoteMuted;
}
}
2023-05-05 01:17:45 +02:00
if (note.reply) {
2023-09-02 01:27:33 +02:00
const replyMuted = checkWordMute(note.reply, mutedWords);
2023-05-05 01:17:45 +02:00
if (replyMuted.muted) {
replyMuted.what = "reply";
return replyMuted;
}
}
}
if (mutedLangs.length > 0) {
2023-10-22 10:44:32 +02:00
const noteLangMuted = checkLangMute(note, mutedLangs);
if (noteLangMuted.muted) {
noteLangMuted.what = "note";
return noteLangMuted;
}
if (note.renote) {
2023-10-22 10:44:32 +02:00
const renoteLangMuted = checkLangMute(note, mutedLangs);
if (renoteLangMuted.muted) {
renoteLangMuted.what = note.text == null ? "renote" : "quote";
return renoteLangMuted;
}
}
if (note.reply) {
2023-10-22 10:44:32 +02:00
const replyLangMuted = checkLangMute(note, mutedLangs);
if (replyLangMuted.muted) {
replyLangMuted.what = "reply";
return replyLangMuted;
}
}
}
return NotMuted;
}