iceshrimp-legacy/packages/backend/src/misc/check-word-mute.ts

80 lines
1.7 KiB
TypeScript
Raw Normal View History

2023-01-13 05:40:33 +01:00
import RE2 from "re2";
import type { Note } from "@/models/entities/note.js";
import type { User } from "@/models/entities/user.js";
type NoteLike = {
2023-01-13 05:40:33 +01:00
userId: Note["userId"];
text: Note["text"];
2023-05-20 22:34:39 +02:00
files?: Note["files"];
cw?: Note["cw"];
};
type UserLike = {
2023-01-13 05:40:33 +01:00
id: User["id"];
};
2023-05-04 22:17:16 +02:00
function checkWordMute(
note: NoteLike,
mutedWords: Array<string | string[]>,
): boolean {
2023-05-04 06:17:37 +02:00
if (note == null) return false;
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 06:17:37 +02:00
if (text === "") return false;
2023-05-05 05:36:17 +02:00
for (const mutePattern of mutedWords) {
if (Array.isArray(mutePattern)) {
// Clean up
const keywords = mutePattern.filter((keyword) => keyword !== "");
if (
keywords.length > 0 &&
keywords.every((keyword) => text.includes(keyword))
)
return true;
2023-05-04 06:17:37 +02:00
} else {
// represents RegExp
2023-05-05 05:36:17 +02:00
const regexp = mutePattern.match(/^\/(.+)\/(.*)$/);
2023-05-04 06:17:37 +02:00
// This should never happen due to input sanitisation.
if (!regexp) {
2023-05-05 05:36:17 +02:00
console.warn(`Found invalid regex in word mutes: ${mutePattern}`);
continue;
2023-05-04 06:17:37 +02:00
}
try {
2023-05-05 05:49:34 +02:00
if (new RE2(regexp[1], regexp[2]).test(text)) return true;
} catch (err) {
// This should never happen due to input sanitisation.
}
2023-05-04 06:17:37 +02:00
}
2023-05-05 05:36:17 +02:00
}
2023-05-04 06:17:37 +02:00
2023-05-05 05:36:17 +02:00
return false;
}
export async function getWordHardMute(
2023-01-13 05:40:33 +01:00
note: NoteLike,
me: UserLike | null | undefined,
mutedWords: Array<string | string[]>,
2023-05-04 06:17:37 +02:00
): Promise<boolean> {
// 自分自身
if (me && note.userId === me.id) {
2023-05-04 06:17:37 +02:00
return false;
}
if (mutedWords.length > 0) {
2023-05-04 22:17:16 +02:00
return (
checkWordMute(note, mutedWords) ||
2023-05-04 23:16:23 +02:00
checkWordMute(note.reply, mutedWords) ||
checkWordMute(note.renote, mutedWords)
2023-05-04 22:17:16 +02:00
);
}
2023-05-04 06:17:37 +02:00
return false;
}