2023-10-17 00:28:58 +02:00
|
|
|
import type * as firefish from "firefish-js";
|
|
|
|
|
2023-09-02 01:27:33 +02:00
|
|
|
export interface Muted {
|
2023-01-20 03:11:27 +01:00
|
|
|
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
|
|
|
}
|
2023-01-20 03:11:27 +01:00
|
|
|
|
|
|
|
const NotMuted = { muted: false, matched: [] };
|
|
|
|
|
2023-09-20 02:07:41 +02:00
|
|
|
function checkLangMute(
|
2023-10-17 00:28:58 +02:00
|
|
|
note: firefish.entities.Note,
|
2023-09-20 02:07:41 +02:00
|
|
|
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(
|
2023-10-17 00:28:58 +02:00
|
|
|
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 &&
|
2023-09-09 22:00:06 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2023-05-04 07:20:06 +02:00
|
|
|
export function getWordSoftMute(
|
2023-10-17 00:28:58 +02:00
|
|
|
note: firefish.entities.Note,
|
|
|
|
meId: string | null | undefined,
|
2023-01-13 05:40:33 +01:00
|
|
|
mutedWords: Array<string | string[]>,
|
2023-09-20 02:07:41 +02:00
|
|
|
mutedLangs: Array<string | string[]>,
|
2023-01-20 03:11:27 +01:00
|
|
|
): Muted {
|
2023-10-19 07:41:16 +02:00
|
|
|
if (meId == null || note.userId === meId) return NotMuted;
|
2020-07-27 06:34:20 +02:00
|
|
|
|
2022-02-10 11:47:46 +01:00
|
|
|
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-01-20 03:11:27 +01:00
|
|
|
}
|
2020-07-27 06:34:20 +02:00
|
|
|
|
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-01-20 03:11:27 +01:00
|
|
|
}
|
|
|
|
}
|
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;
|
|
|
|
}
|
|
|
|
}
|
2020-07-27 06:34:20 +02:00
|
|
|
}
|
2023-09-20 02:07:41 +02:00
|
|
|
if (mutedLangs.length > 0) {
|
|
|
|
let noteLangMuted = checkLangMute(note, mutedLangs);
|
|
|
|
if (noteLangMuted.muted) {
|
|
|
|
noteLangMuted.what = "note";
|
|
|
|
return noteLangMuted;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (note.renote) {
|
|
|
|
let renoteLangMuted = checkLangMute(note, mutedLangs);
|
|
|
|
if (renoteLangMuted.muted) {
|
|
|
|
renoteLangMuted.what = note.text == null ? "renote" : "quote";
|
|
|
|
return renoteLangMuted;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (note.reply) {
|
|
|
|
let replyLangMuted = checkLangMute(note, mutedLangs);
|
|
|
|
if (replyLangMuted.muted) {
|
|
|
|
replyLangMuted.what = "reply";
|
|
|
|
return replyLangMuted;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-07-27 06:34:20 +02:00
|
|
|
|
2023-01-20 03:11:27 +01:00
|
|
|
return NotMuted;
|
2020-07-27 06:34:20 +02:00
|
|
|
}
|