You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
315 lines
10 KiB
315 lines
10 KiB
import { FAST_READ_RELAY_URLS, FAST_WRITE_RELAY_URLS, CODY_PUBKEY, IMWALD_MAINTAINER_PUBKEY } from '@/constants' |
|
import { getZapInfoFromEvent } from '@/lib/event-metadata' |
|
import { TProfile } from '@/types' |
|
import { init, launchPaymentModal } from '@getalby/bitcoin-connect-react' |
|
import { Invoice } from '@getalby/lightning-tools' |
|
import { bech32 } from '@scure/base' |
|
import { WebLNProvider } from '@webbtc/webln-types' |
|
import dayjs from 'dayjs' |
|
import { Filter, kinds, NostrEvent } from 'nostr-tools' |
|
import { SubCloser } from 'nostr-tools/abstract-pool' |
|
import { makeZapRequest } from 'nostr-tools/nip57' |
|
import { utf8Decoder } from 'nostr-tools/utils' |
|
import client from './client.service' |
|
import storage from './local-storage.service' |
|
import { queryService, replaceableEventService } from './client.service' |
|
import { getProfileFromEvent } from '@/lib/event-metadata' |
|
import { fetchWithTimeout } from '@/lib/fetch-with-timeout' |
|
import logger from '@/lib/logger' |
|
import { runAfterReleasingRadixScrollLock } from '@/lib/react-remove-scroll-body-cleanup' |
|
|
|
export type TRecentSupporter = { pubkey: string; amount: number; comment?: string } |
|
|
|
const OFFICIAL_PUBKEYS = [IMWALD_MAINTAINER_PUBKEY, CODY_PUBKEY] |
|
|
|
class LightningService { |
|
static instance: LightningService |
|
provider: WebLNProvider | null = null |
|
private recentSupportersCache: TRecentSupporter[] | null = null |
|
|
|
constructor() { |
|
if (!LightningService.instance) { |
|
LightningService.instance = this |
|
init({ |
|
appName: 'Imwald', |
|
showBalance: false |
|
}) |
|
} |
|
return LightningService.instance |
|
} |
|
|
|
async zap( |
|
sender: string, |
|
recipientOrEvent: string | NostrEvent, |
|
sats: number, |
|
comment: string, |
|
closeOuterModel?: () => void, |
|
includePublicReceipt: boolean = storage.getIncludePublicZapReceipt() |
|
): Promise<{ preimage: string; invoice: string } | null> { |
|
if (!client.signer) { |
|
throw new Error('You need to be logged in to zap') |
|
} |
|
const { recipient, event } = |
|
typeof recipientOrEvent === 'string' |
|
? { recipient: recipientOrEvent } |
|
: { recipient: recipientOrEvent.pubkey, event: recipientOrEvent } |
|
|
|
// Privacy: Only use current user's relays + defaults |
|
const [profile, senderRelayList] = await Promise.all([ |
|
(async () => { |
|
const profileEvent = await replaceableEventService.fetchReplaceableEvent(recipient, kinds.Metadata) |
|
return profileEvent ? getProfileFromEvent(profileEvent) : undefined |
|
})(), |
|
sender |
|
? client.fetchRelayList(sender) // Keep using client for relay list merging |
|
: Promise.resolve({ read: FAST_READ_RELAY_URLS, write: FAST_WRITE_RELAY_URLS }) |
|
]) |
|
if (!profile) { |
|
throw new Error('Recipient not found') |
|
} |
|
const zapEndpoint = await this.getZapEndpoint(profile) |
|
if (!zapEndpoint) { |
|
throw new Error("Recipient's lightning address is invalid") |
|
} |
|
const { callback, lnurl } = zapEndpoint |
|
const amount = sats * 1000 |
|
const zapRelays = includePublicReceipt |
|
? senderRelayList.write.slice(0, 4).concat(FAST_READ_RELAY_URLS) |
|
: [] |
|
const zapRequestDraft = makeZapRequest({ |
|
...(event ? { event } : { pubkey: recipient }), |
|
amount, |
|
relays: zapRelays, |
|
comment |
|
}) |
|
const zapRequest = await client.signer.signEvent(zapRequestDraft) |
|
const zapRequestRes = await fetchWithTimeout( |
|
`${callback}?amount=${amount}&nostr=${encodeURI(JSON.stringify(zapRequest))}&lnurl=${lnurl}`, |
|
{ timeoutMs: 25_000 } |
|
) |
|
const zapRequestResBody = await zapRequestRes.json() |
|
if (zapRequestResBody.error) { |
|
throw new Error(zapRequestResBody.message) |
|
} |
|
const { pr, verify, reason } = zapRequestResBody |
|
if (!pr) { |
|
throw new Error(reason ?? 'Failed to create invoice') |
|
} |
|
|
|
if (this.provider) { |
|
const { preimage } = await this.provider.sendPayment(pr) |
|
closeOuterModel?.() |
|
return { preimage, invoice: pr } |
|
} |
|
|
|
return new Promise((resolve) => { |
|
runAfterReleasingRadixScrollLock(closeOuterModel, () => { |
|
let checkPaymentInterval: ReturnType<typeof setInterval> | undefined |
|
let subCloser: SubCloser | undefined |
|
const { setPaid } = launchPaymentModal({ |
|
invoice: pr, |
|
onPaid: (response) => { |
|
clearInterval(checkPaymentInterval) |
|
subCloser?.close() |
|
resolve({ preimage: response.preimage, invoice: pr }) |
|
}, |
|
onCancelled: () => { |
|
clearInterval(checkPaymentInterval) |
|
subCloser?.close() |
|
resolve(null) |
|
} |
|
}) |
|
|
|
if (verify) { |
|
checkPaymentInterval = setInterval(async () => { |
|
const invoice = new Invoice({ pr, verify }) |
|
const paid = await invoice.verifyPayment() |
|
|
|
if (paid && invoice.preimage) { |
|
setPaid({ |
|
preimage: invoice.preimage |
|
}) |
|
} |
|
}, 1000) |
|
} else { |
|
const filter: Filter = { |
|
kinds: [kinds.Zap], |
|
'#p': [recipient], |
|
since: dayjs().subtract(1, 'minute').unix() |
|
} |
|
if (event) { |
|
filter['#e'] = [event.id] |
|
} |
|
subCloser = client.subscribe( |
|
senderRelayList.write.concat(FAST_READ_RELAY_URLS).slice(0, 4), |
|
filter, |
|
{ |
|
onevent: (evt) => { |
|
const info = getZapInfoFromEvent(evt) |
|
if (!info) return |
|
|
|
if (info.invoice === pr) { |
|
setPaid({ preimage: info.preimage ?? '' }) |
|
} |
|
} |
|
} |
|
) |
|
} |
|
}) |
|
}) |
|
} |
|
|
|
async payInvoice( |
|
invoice: string, |
|
closeOuterModel?: () => void |
|
): Promise<{ preimage: string; invoice: string } | null> { |
|
if (this.provider) { |
|
const { preimage } = await this.provider.sendPayment(invoice) |
|
closeOuterModel?.() |
|
return { preimage, invoice: invoice } |
|
} |
|
|
|
return new Promise((resolve) => { |
|
runAfterReleasingRadixScrollLock(closeOuterModel, () => { |
|
launchPaymentModal({ |
|
invoice: invoice, |
|
onPaid: (response) => { |
|
resolve({ preimage: response.preimage, invoice: invoice }) |
|
}, |
|
onCancelled: () => { |
|
resolve(null) |
|
} |
|
}) |
|
}) |
|
}) |
|
} |
|
|
|
async fetchRecentSupporters() { |
|
if (this.recentSupportersCache) { |
|
return this.recentSupportersCache |
|
} |
|
// Privacy: Use defaults instead of fetching CODY_PUBKEY's relays |
|
const events = await queryService.fetchEvents(FAST_READ_RELAY_URLS.slice(0, 4), { |
|
authors: ['79f00d3f5a19ec806189fcab03c1be4ff81d18ee4f653c88fac41fe03570f432'], // alby |
|
kinds: [kinds.Zap], |
|
'#p': OFFICIAL_PUBKEYS, |
|
since: dayjs().subtract(1, 'month').unix() |
|
}) |
|
events.sort((a, b) => b.created_at - a.created_at) |
|
const map = new Map<string, { pubkey: string; amount: number; comment?: string }>() |
|
events.forEach((event) => { |
|
const info = getZapInfoFromEvent(event) |
|
if (!info || !info.senderPubkey || OFFICIAL_PUBKEYS.includes(info.senderPubkey)) return |
|
|
|
const { amount, comment, senderPubkey } = info |
|
const item = map.get(senderPubkey) |
|
if (!item) { |
|
map.set(senderPubkey, { pubkey: senderPubkey, amount, comment }) |
|
} else { |
|
item.amount += amount |
|
if (!item.comment && comment) item.comment = comment |
|
} |
|
}) |
|
this.recentSupportersCache = Array.from(map.values()) |
|
.filter((item) => item.amount >= 1000) |
|
.sort((a, b) => b.amount - a.amount) |
|
return this.recentSupportersCache |
|
} |
|
|
|
private async getZapEndpoint(profile: TProfile): Promise<null | { |
|
callback: string |
|
lnurl: string |
|
}> { |
|
const candidates = this.lightningAddressCandidates(profile) |
|
for (const addr of candidates) { |
|
const resolved = await this.fetchLnurlPayZapEndpoint(addr) |
|
if (resolved) return resolved |
|
} |
|
return null |
|
} |
|
|
|
/** Ordered lightning identifiers from kind 0 (lud16/lud06 + `w` lightning rows); de-duplicated. */ |
|
private lightningAddressCandidates(profile: TProfile): string[] { |
|
const raw = |
|
profile.lightningAddressList?.length && profile.lightningAddressList.length > 0 |
|
? profile.lightningAddressList |
|
: profile.lightningAddress |
|
? [profile.lightningAddress] |
|
: [] |
|
const out: string[] = [] |
|
const seen = new Set<string>() |
|
for (const a of raw) { |
|
const t = a?.trim() |
|
if (!t) continue |
|
const k = t.toLowerCase() |
|
if (seen.has(k)) continue |
|
seen.add(k) |
|
out.push(t) |
|
} |
|
return out |
|
} |
|
|
|
private async fetchLnurlPayZapEndpoint(lightningAddress: string): Promise<null | { |
|
callback: string |
|
lnurl: string |
|
}> { |
|
try { |
|
let lnurl = '' |
|
|
|
if (lightningAddress.includes('@')) { |
|
const [name, domain] = lightningAddress.split('@') |
|
if (!name?.trim() || !domain?.trim()) return null |
|
lnurl = new URL(`/.well-known/lnurlp/${name}`, `https://${domain}`).toString() |
|
} else { |
|
const { words } = bech32.decode(lightningAddress as any, 1000) |
|
const data = bech32.fromWords(words) |
|
lnurl = utf8Decoder.decode(data) |
|
} |
|
|
|
const res = await fetchWithTimeout(lnurl, { timeoutMs: 15_000 }) |
|
if (!res.ok) { |
|
logger.warn('LNURL-pay metadata HTTP error', { |
|
status: res.status, |
|
statusText: res.statusText, |
|
lnurl, |
|
lightningAddress |
|
}) |
|
return null |
|
} |
|
|
|
const text = await res.text() |
|
let body: { allowsNostr?: unknown; nostrPubkey?: unknown; callback?: unknown } |
|
try { |
|
body = JSON.parse(text) as { allowsNostr?: unknown; nostrPubkey?: unknown; callback?: unknown } |
|
} catch { |
|
logger.warn('LNURL-pay metadata was not valid JSON (HTML error page or empty redirect target?)', { |
|
lnurl, |
|
lightningAddress, |
|
preview: text.slice(0, 160) |
|
}) |
|
return null |
|
} |
|
|
|
if (body.allowsNostr && body.nostrPubkey && typeof body.callback === 'string') { |
|
return { |
|
callback: body.callback, |
|
lnurl |
|
} |
|
} |
|
} catch (err) { |
|
const failedFetch = |
|
err instanceof TypeError || (err instanceof Error && err.message === 'Failed to fetch') |
|
logger.error('Failed to resolve LNURL from profile', { |
|
error: err, |
|
lightningAddress, |
|
/** Browser blocks reading cross-origin LNURL without `Access-Control-Allow-Origin`. */ |
|
hint: typeof window !== 'undefined' && failedFetch ? 'possible_missing_cors_on_lnurl_host' : undefined |
|
}) |
|
} |
|
|
|
return null |
|
} |
|
} |
|
|
|
const instance = new LightningService() |
|
export default instance
|
|
|