
* feat(frontend): ソフトミュートで引っかかったものを表示できるように
* ソフトワードミュートのミュート文字列表示を切り替え可能に
* Chore(docs): Update CHANGELOG
* Fix: language file
* Fixed by review
* Fix by review
* Fix: reloadAskなおしきれていなかった
* perf: filter -> findに変更して最初の一個のみを表示するように変更
* Revert "perf: filter -> findに変更して最初の一個のみを表示するように変更"
This reverts commit 72ef92f0d6
.
44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
import * as Misskey from 'misskey-js';
|
|
|
|
export function checkWordMute(note: Misskey.entities.Note, me: Misskey.entities.UserLite | null | undefined, mutedWords: Array<string | string[]>): Array<string | string[]> | false {
|
|
// 自分自身
|
|
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.filter(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.length > 0) return matched;
|
|
}
|
|
|
|
return false;
|
|
}
|