2022-02-10 10:47:46 +00:00
|
|
|
export function checkWordMute(note: Record<string, any>, me: Record<string, any> | null | undefined, mutedWords: Array<string | string[]>): boolean {
|
2020-07-27 04:34:20 +00:00
|
|
|
// 自分自身
|
|
|
|
if (me && (note.userId === me.id)) return false;
|
|
|
|
|
2022-02-10 10:47:46 +00:00
|
|
|
if (mutedWords.length > 0) {
|
2020-07-27 04:34:20 +00:00
|
|
|
if (note.text == null) return false;
|
|
|
|
|
2022-02-10 10:47:46 +00:00
|
|
|
const matched = mutedWords.some(filter => {
|
|
|
|
if (Array.isArray(filter)) {
|
2022-02-11 14:26:51 +00:00
|
|
|
// Clean up
|
|
|
|
const filteredFilter = filter.filter(keyword => keyword !== '');
|
|
|
|
if (filteredFilter.length === 0) return false;
|
|
|
|
|
|
|
|
return filteredFilter.every(keyword => note.text!.includes(keyword));
|
2022-02-10 10:47:46 +00:00
|
|
|
} else {
|
|
|
|
// represents RegExp
|
|
|
|
const regexp = filter.match(/^\/(.+)\/(.*)$/);
|
|
|
|
|
|
|
|
// This should never happen due to input sanitisation.
|
|
|
|
if (!regexp) return false;
|
|
|
|
|
|
|
|
try {
|
2020-07-27 04:34:20 +00:00
|
|
|
return new RegExp(regexp[1], regexp[2]).test(note.text!);
|
2022-02-10 10:47:46 +00:00
|
|
|
} catch (err) {
|
|
|
|
// This should never happen due to input sanitisation.
|
|
|
|
return false;
|
2020-07-27 04:34:20 +00:00
|
|
|
}
|
2022-02-10 10:47:46 +00:00
|
|
|
}
|
|
|
|
});
|
2020-07-27 04:34:20 +00:00
|
|
|
|
|
|
|
if (matched) return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|