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.
244 lines
7.6 KiB
244 lines
7.6 KiB
import { BIG_RELAY_URLS, CODY_PUBKEY, JUMBLE_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 logger from '@/lib/logger' |
|
|
|
export type TRecentSupporter = { pubkey: string; amount: number; comment?: string } |
|
|
|
const OFFICIAL_PUBKEYS = [JUMBLE_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: 'Jumble', |
|
showBalance: false |
|
}) |
|
} |
|
return LightningService.instance |
|
} |
|
|
|
async zap( |
|
sender: string, |
|
recipientOrEvent: string | NostrEvent, |
|
sats: number, |
|
comment: string, |
|
closeOuterModel?: () => void |
|
): 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([ |
|
client.fetchProfile(recipient, true), |
|
sender |
|
? client.fetchRelayList(sender) |
|
: Promise.resolve({ read: BIG_RELAY_URLS, write: BIG_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 zapRequestDraft = makeZapRequest({ |
|
...(event ? { event } : { pubkey: recipient }), |
|
amount, |
|
// Privacy: Only use sender's relays + defaults, not recipient's relays |
|
relays: senderRelayList.write.slice(0, 4).concat(BIG_RELAY_URLS), |
|
comment |
|
}) |
|
const zapRequest = await client.signer.signEvent(zapRequestDraft) |
|
const zapRequestRes = await fetch( |
|
`${callback}?amount=${amount}&nostr=${encodeURI(JSON.stringify(zapRequest))}&lnurl=${lnurl}` |
|
) |
|
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) => { |
|
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(BIG_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) => { |
|
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 client.fetchEvents(BIG_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 |
|
}> { |
|
try { |
|
let lnurl: string = '' |
|
|
|
// Some clients have incorrectly filled in the positions for lud06 and lud16 |
|
if (!profile.lightningAddress) { |
|
return null |
|
} |
|
|
|
if (profile.lightningAddress.includes('@')) { |
|
const [name, domain] = profile.lightningAddress.split('@') |
|
lnurl = new URL(`/.well-known/lnurlp/${name}`, `https://${domain}`).toString() |
|
} else { |
|
const { words } = bech32.decode(profile.lightningAddress as any, 1000) |
|
const data = bech32.fromWords(words) |
|
lnurl = utf8Decoder.decode(data) |
|
} |
|
|
|
const res = await fetch(lnurl) |
|
const body = await res.json() |
|
|
|
if (body.allowsNostr && body.nostrPubkey) { |
|
return { |
|
callback: body.callback, |
|
lnurl |
|
} |
|
} |
|
} catch (err) { |
|
logger.error('Failed to resolve LNURL from profile', { error: err, profile }) |
|
} |
|
|
|
return null |
|
} |
|
} |
|
|
|
const instance = new LightningService() |
|
export default instance
|
|
|