Publish NWC event from pipeline

This commit is contained in:
Alex Gleason 2024-01-16 17:46:53 -06:00
parent 40d3a46c16
commit b5a1220159
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
2 changed files with 31 additions and 4 deletions

View File

@ -5,17 +5,19 @@ import { findUser } from '@/db/users.ts';
import { Debug, type Event } from '@/deps.ts';
import { isEphemeralKind } from '@/kinds.ts';
import { isLocallyFollowed } from '@/queries.ts';
import { lnurlResponseSchema } from '@/schemas/lnurl.ts';
import { lnurlCallbackResponseSchema, lnurlResponseSchema } from '@/schemas/lnurl.ts';
import { updateStats } from '@/stats.ts';
import { client, eventsDB, memorelay, reqmeister } from '@/storages.ts';
import { Sub } from '@/subs.ts';
import { getTagSet } from '@/tags.ts';
import { type EventData } from '@/types.ts';
import { lnurlDecode } from '@/utils/lnurl.ts';
import { eventAge, isRelay, nostrDate, Time } from '@/utils.ts';
import { eventAge, isRelay, nostrDate, nostrNow, Time } from '@/utils.ts';
import { fetchWorker } from '@/workers/fetch.ts';
import { TrendsWorker } from '@/workers/trends.ts';
import { verifySignatureWorker } from '@/workers/verify.ts';
import { signAdminEvent } from '@/sign.ts';
import { encryptAdmin } from '@/crypto.ts';
const debug = Debug('ditto:pipeline');
@ -179,7 +181,27 @@ async function submitZaps(event: Event, data: EventData, signal = AbortSignal.ti
params.set('nostr', JSON.stringify(event));
params.set('lnurl', lnurl);
callback.search = params.toString();
await fetchWorker(callback, { signal });
const response = await fetchWorker(callback, { signal });
const json = await response.json();
const { pr } = lnurlCallbackResponseSchema.parse(json);
const nwcRequestEvent = await signAdminEvent({
kind: 23194,
content: await encryptAdmin(
event.pubkey,
JSON.stringify({
method: 'pay_invoice',
params: {
invoice: pr,
},
}),
),
created_at: nostrNow(),
tags: [
['p', event.pubkey],
['e', event.id],
],
});
await handleEvent(nwcRequestEvent);
}
} catch (e) {
debug('lnurl error:', e);

View File

@ -12,4 +12,9 @@ const lnurlResponseSchema = z.object({
nostrPubkey: nostrIdSchema.optional(),
});
export { lnurlResponseSchema };
const lnurlCallbackResponseSchema = z.object({
pr: z.string(),
routes: z.unknown().array(),
});
export { lnurlCallbackResponseSchema, lnurlResponseSchema };