From fe66937bba49d6aa00679ed5da3bbf4b16c29069 Mon Sep 17 00:00:00 2001 From: "P. Reis" Date: Sat, 11 May 2024 12:04:44 -0300 Subject: [PATCH] feat: do not allow deactivated accounts to post --- src/pipeline.ts | 42 ++++++++++++++++++++++-------------------- 1 file changed, 22 insertions(+), 20 deletions(-) diff --git a/src/pipeline.ts b/src/pipeline.ts index 3eb8913..d05b09a 100644 --- a/src/pipeline.ts +++ b/src/pipeline.ts @@ -21,18 +21,10 @@ import { AdminSigner } from '@/signers/AdminSigner.ts'; import { lnurlCache } from '@/utils/lnurl.ts'; import { nip05Cache } from '@/utils/nip05.ts'; +import { MuteListPolicy } from '@/policies/MuteListPolicy.ts'; + const debug = Debug('ditto:pipeline'); -let UserPolicy: any; - -try { - UserPolicy = (await import('../data/policy.ts')).default; - debug('policy loaded from data/policy.ts'); -} catch (_e) { - // do nothing - debug('policy not found'); -} - /** * Common pipeline function to process (and maybe store) events. * It is idempotent, so it can be called multiple times for the same event. @@ -43,17 +35,8 @@ async function handleEvent(event: DittoEvent, signal: AbortSignal): Promise ${event.id}`); await hydrateEvent(event, signal); - if (UserPolicy) { - const result = await new UserPolicy().call(event, signal); - debug(JSON.stringify(result)); - const [_, _eventId, ok, reason] = result; - if (!ok) { - const [prefix, ...rest] = reason.split(': '); - throw new RelayError(prefix, rest.join(': ')); - } - } - await Promise.all([ + policyFilter(event), storeEvent(event, signal), parseMetadata(event, signal), processDeletions(event, signal), @@ -66,6 +49,25 @@ async function handleEvent(event: DittoEvent, signal: AbortSignal): Promise { + const UserPolicy = new MuteListPolicy(Conf.pubkey, Storages.admin); + const result = await UserPolicy.call(event); + + debug(JSON.stringify(result)); + + const [_, _eventId, ok, reason] = result; + if (!ok) { + const [prefix, ...rest] = reason.split(': '); + if (['duplicate', 'pow', 'blocked', 'rate-limited', 'invalid'].includes(prefix)) { + const error = new RelayError(prefix as any, rest.join(': ')); + return Promise.reject(error); + } else { + const error = new RelayError('error', rest.join(': ')); + return Promise.reject(error); + } + } +} + /** Encounter the event, and return whether it has already been encountered. */ async function encounterEvent(event: NostrEvent, signal: AbortSignal): Promise { const [existing] = await Storages.cache.query([{ ids: [event.id], limit: 1 }]);