mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
18 lines
615 B
TypeScript
18 lines
615 B
TypeScript
import { NostrEvent, NostrRelayOK, NPolicy, NStore } from '@nostrify/nostrify';
|
|
|
|
import { getTagSet } from '@/tags.ts';
|
|
|
|
export class MuteListPolicy implements NPolicy {
|
|
constructor(private pubkey: string, private store: NStore) {}
|
|
|
|
async call(event: NostrEvent): Promise<NostrRelayOK> {
|
|
const [muteList] = await this.store.query([{ authors: [this.pubkey], kinds: [10000], limit: 1 }]);
|
|
const pubkeys = getTagSet(muteList?.tags ?? [], 'p');
|
|
|
|
if (pubkeys.has(event.pubkey)) {
|
|
return ['OK', event.id, false, 'You are banned in this server.'];
|
|
}
|
|
|
|
return ['OK', event.id, true, ''];
|
|
}
|
|
}
|