rudeshark.net/packages/backend/src/misc/check-word-mute.ts

82 lines
1.8 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"];
cw?: Note["cw"];
};
type UserLike = {
2023-01-13 05:40:33 +01:00
id: User["id"];
};
2023-05-04 06:17:37 +02:00
function escapeRegExp(x: string): string {
return x.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); // $& means the whole matched string
}
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-04 06:17:37 +02:00
const text = ((note.cw ?? "") + " " + (note.text ?? "")).trim();
if (text === "") return false;
for (const mutePattern of mutedWords) {
let mute: RE2;
let matched: string[];
if (Array.isArray(mutePattern)) {
matched = mutePattern.filter((keyword) => keyword !== "");
if (matched.length === 0) {
continue;
}
mute = new RE2(
`\\b${matched.map(escapeRegExp).join("\\b.*\\b")}\\b`,
"g",
);
} else {
const regexp = mutePattern.match(/^\/(.+)\/(.*)$/);
// This should never happen due to input sanitisation.
if (!regexp) {
console.warn(`Found invalid regex in word mutes: ${mutePattern}`);
continue;
}
mute = new RE2(regexp[1], regexp[2]);
matched = [mutePattern];
}
try {
if (mute.test(text)) return true;
} catch (err) {
// This should never happen due to input sanitisation.
}
}
2023-05-04 22:22:32 +02:00
return NotMuted;
}
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) ||
checkWordMute(reply, mutedWords) ||
checkWordMute(renote, mutedWords)
);
}
2023-05-04 06:17:37 +02:00
return false;
}