afb6304979
* fix: handle regex exceptions for word mutes * add i18n strings Co-authored-by: rinsuki <428rinsuki+git@gmail.com> * stricter input validation in backend * add migration for hard mutes * fix * use correct regex library in migration * use query builder to avoid SQL injection Co-authored-by: Robin B <robflop98@outlook.com> Co-authored-by: rinsuki <428rinsuki+git@gmail.com>
32 lines
851 B
TypeScript
32 lines
851 B
TypeScript
export function checkWordMute(note: Record<string, any>, me: Record<string, any> | null | undefined, mutedWords: Array<string | string[]>): boolean {
|
|
// 自分自身
|
|
if (me && (note.userId === me.id)) return false;
|
|
|
|
if (mutedWords.length > 0) {
|
|
if (note.text == null) return false;
|
|
|
|
const matched = mutedWords.some(filter => {
|
|
if (Array.isArray(filter)) {
|
|
return filter.every(keyword => note.text!.includes(keyword));
|
|
} else {
|
|
// represents RegExp
|
|
const regexp = filter.match(/^\/(.+)\/(.*)$/);
|
|
|
|
// This should never happen due to input sanitisation.
|
|
if (!regexp) return false;
|
|
|
|
try {
|
|
return new RegExp(regexp[1], regexp[2]).test(note.text!);
|
|
} catch (err) {
|
|
// This should never happen due to input sanitisation.
|
|
return false;
|
|
}
|
|
}
|
|
});
|
|
|
|
if (matched) return true;
|
|
}
|
|
|
|
return false;
|
|
}
|