summaryrefslogtreecommitdiff
path: root/packages/backend/src/misc/is-instance-muted.ts
blob: a74ba524e32e9a65a9add68c40b1b74f0c963b25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { Packed } from './schema.js';

export function isInstanceMuted(note: Packed<'Note'>, mutedInstances: Set<string>): boolean {
	if (mutedInstances.has(note?.user?.host ?? '')) return true;
	if (mutedInstances.has(note?.reply?.user?.host ?? '')) return true;
	if (mutedInstances.has(note?.renote?.user?.host ?? '')) return true;

	return false;
}

export function isUserFromMutedInstance(notif: Packed<'Notification'>, mutedInstances: Set<string>): boolean {
	if (mutedInstances.has(notif?.user?.host ?? '')) return true;

	return false;
}