Refactor hard word mutes
This commit is contained in:
parent
bf262b972f
commit
075e5a1c7a
|
@ -12,67 +12,63 @@ type UserLike = {
|
|||
id: User["id"];
|
||||
};
|
||||
|
||||
export type Muted = {
|
||||
muted: boolean;
|
||||
matched: string[];
|
||||
};
|
||||
|
||||
const NotMuted = { muted: false, matched: [] };
|
||||
|
||||
function escapeRegExp(x: string) {
|
||||
function escapeRegExp(x: string): string {
|
||||
return x.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); // $& means the whole matched string
|
||||
}
|
||||
|
||||
function checkWordMute(note: NoteLike): boolean {
|
||||
if (note == null) return false;
|
||||
|
||||
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.
|
||||
}
|
||||
}
|
||||
|
||||
return notMuted;
|
||||
}
|
||||
|
||||
export async function getWordMute(
|
||||
note: NoteLike,
|
||||
me: UserLike | null | undefined,
|
||||
mutedWords: Array<string | string[]>,
|
||||
): Promise<Muted> {
|
||||
): Promise<boolean> {
|
||||
// 自分自身
|
||||
if (me && note.userId === me.id) {
|
||||
return NotMuted;
|
||||
return false;
|
||||
}
|
||||
|
||||
if (mutedWords.length > 0) {
|
||||
const text = ((note.cw ?? "") + "\n" + (note.text ?? "")).trim();
|
||||
|
||||
if (text === "") {
|
||||
return NotMuted;
|
||||
}
|
||||
|
||||
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 { muted: true, matched };
|
||||
}
|
||||
} catch (err) {
|
||||
// This should never happen due to input sanitisation.
|
||||
}
|
||||
}
|
||||
return checkWordMute(note) || checkWordMute(reply) || checkWordMute(renote)
|
||||
}
|
||||
|
||||
return NotMuted;
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import Channel from "../channel.js";
|
||||
import { Notes } from "@/models/index.js";
|
||||
import { isUserRelated } from "@/misc/is-user-related.js";
|
||||
import { getWordMute } from "@/misc/check-word-mute.js";
|
||||
import type { StreamMessages } from "../types.js";
|
||||
import { IdentifiableError } from "@/misc/identifiable-error.js";
|
||||
|
||||
|
@ -37,6 +38,12 @@ export default class extends Channel {
|
|||
if (note.renote && !note.text && isUserRelated(note, this.renoteMuting))
|
||||
return;
|
||||
|
||||
if (
|
||||
this.userProfile &&
|
||||
(await getWordMute(note, this.user, this.userProfile.mutedWords))
|
||||
)
|
||||
return;
|
||||
|
||||
this.connection.cacheNote(note);
|
||||
|
||||
this.send("note", note);
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import Channel from "../channel.js";
|
||||
import { Users } from "@/models/index.js";
|
||||
import { isUserRelated } from "@/misc/is-user-related.js";
|
||||
import { getWordMute } from "@/misc/check-word-mute.js";
|
||||
import type { User } from "@/models/entities/user.js";
|
||||
import type { StreamMessages } from "../types.js";
|
||||
import type { Packed } from "@/misc/schema.js";
|
||||
|
@ -39,6 +40,12 @@ export default class extends Channel {
|
|||
if (note.renote && !note.text && isUserRelated(note, this.renoteMuting))
|
||||
return;
|
||||
|
||||
if (
|
||||
this.userProfile &&
|
||||
(await getWordMute(note, this.user, this.userProfile.mutedWords))
|
||||
)
|
||||
return;
|
||||
|
||||
this.connection.cacheNote(note);
|
||||
|
||||
this.send("note", note);
|
||||
|
|
|
@ -66,7 +66,7 @@ export default class extends Channel {
|
|||
// そのためレコードが存在するかのチェックでは不十分なので、改めてgetWordMuteを呼んでいる
|
||||
if (
|
||||
this.userProfile &&
|
||||
(await getWordMute(note, this.user, this.userProfile.mutedWords)).muted
|
||||
(await getWordMute(note, this.user, this.userProfile.mutedWords))
|
||||
)
|
||||
return;
|
||||
|
||||
|
|
|
@ -64,7 +64,7 @@ export default class extends Channel {
|
|||
// そのためレコードが存在するかのチェックでは不十分なので、改めてgetWordMuteを呼んでいる
|
||||
if (
|
||||
this.userProfile &&
|
||||
(await getWordMute(note, this.user, this.userProfile.mutedWords)).muted
|
||||
(await getWordMute(note, this.user, this.userProfile.mutedWords))
|
||||
)
|
||||
return;
|
||||
|
||||
|
|
|
@ -81,7 +81,7 @@ export default class extends Channel {
|
|||
// そのためレコードが存在するかのチェックでは不十分なので、改めてgetWordMuteを呼んでいる
|
||||
if (
|
||||
this.userProfile &&
|
||||
(await getWordMute(note, this.user, this.userProfile.mutedWords)).muted
|
||||
(await getWordMute(note, this.user, this.userProfile.mutedWords))
|
||||
)
|
||||
return;
|
||||
|
||||
|
|
|
@ -58,7 +58,7 @@ export default class extends Channel {
|
|||
// そのためレコードが存在するかのチェックでは不十分なので、改めてgetWordMuteを呼んでいる
|
||||
if (
|
||||
this.userProfile &&
|
||||
(await getWordMute(note, this.user, this.userProfile.mutedWords)).muted
|
||||
(await getWordMute(note, this.user, this.userProfile.mutedWords))
|
||||
)
|
||||
return;
|
||||
|
||||
|
|
|
@ -79,7 +79,7 @@ export default class extends Channel {
|
|||
// そのためレコードが存在するかのチェックでは不十分なので、改めてgetWordMuteを呼んでいる
|
||||
if (
|
||||
this.userProfile &&
|
||||
(await getWordMute(note, this.user, this.userProfile.mutedWords)).muted
|
||||
(await getWordMute(note, this.user, this.userProfile.mutedWords))
|
||||
)
|
||||
return;
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@ import Channel from "../channel.js";
|
|||
import { UserListJoinings, UserLists } from "@/models/index.js";
|
||||
import type { User } from "@/models/entities/user.js";
|
||||
import { isUserRelated } from "@/misc/is-user-related.js";
|
||||
import { getWordMute } from "@/misc/check-word-mute.js";
|
||||
import type { Packed } from "@/misc/schema.js";
|
||||
|
||||
export default class extends Channel {
|
||||
|
@ -59,6 +60,12 @@ export default class extends Channel {
|
|||
if (note.renote && !note.text && isUserRelated(note, this.renoteMuting))
|
||||
return;
|
||||
|
||||
if (
|
||||
this.userProfile &&
|
||||
(await getWordMute(note, this.user, this.userProfile.mutedWords))
|
||||
)
|
||||
return;
|
||||
|
||||
this.send("note", note);
|
||||
}
|
||||
|
||||
|
|
|
@ -356,7 +356,7 @@ export default async (
|
|||
for (const u of us) {
|
||||
getWordMute(note, { id: u.userId }, u.mutedWords).then(
|
||||
(shouldMute) => {
|
||||
if (shouldMute.muted) {
|
||||
if (shouldMute) {
|
||||
MutedNotes.insert({
|
||||
id: genId(),
|
||||
userId: u.userId,
|
||||
|
|
Loading…
Reference in New Issue