mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-01-08 00:29:19 +09:00
8d06a6475e
* chore: 著作権とライセンスについての情報を各ファイルに追加する * chore: Add the SPDX information to each file Add copyright and licensing information as defined in version 3.0 of the REUSE Specification. * tweak format --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> * chore: Add SPDX-License-Identifier [skip ci] * add missing SPDX-License-Identifier * remove unused file --------- Co-authored-by: Shun Sakai <sorairolake@protonmail.ch> Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> Co-authored-by: Chocolate Pie <106949016+chocolate-pie@users.noreply.github.com>
43 lines
1.1 KiB
TypeScript
43 lines
1.1 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
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) {
|
|
const text = ((note.cw ?? '') + '\n' + (note.text ?? '')).trim();
|
|
|
|
if (text === '') return false;
|
|
|
|
const matched = mutedWords.some(filter => {
|
|
if (Array.isArray(filter)) {
|
|
// Clean up
|
|
const filteredFilter = filter.filter(keyword => keyword !== '');
|
|
if (filteredFilter.length === 0) return false;
|
|
|
|
return filteredFilter.every(keyword => 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(text);
|
|
} catch (err) {
|
|
// This should never happen due to input sanitisation.
|
|
return false;
|
|
}
|
|
}
|
|
});
|
|
|
|
if (matched) return true;
|
|
}
|
|
|
|
return false;
|
|
}
|