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.
252 lines
7.4 KiB
252 lines
7.4 KiB
import { BIG_RELAY_URLS, CODY_PUBKEY } from '@/constants' |
|
import { getZapInfoFromEvent } from '@/lib/event-metadata' |
|
import { TProfile } from '@/types' |
|
import { |
|
init, |
|
launchPaymentModal, |
|
onConnected, |
|
onDisconnected |
|
} 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' |
|
|
|
export type TRecentSupporter = { pubkey: string; amount: number; comment?: string } |
|
|
|
class LightningService { |
|
static instance: LightningService |
|
private provider: WebLNProvider | null = null |
|
private recentSupportersCache: TRecentSupporter[] | null = null |
|
|
|
constructor() { |
|
if (!LightningService.instance) { |
|
LightningService.instance = this |
|
init({ |
|
appName: 'Jumble', |
|
showBalance: false |
|
}) |
|
onConnected((provider) => { |
|
this.provider = provider |
|
}) |
|
onDisconnected(() => { |
|
this.provider = null |
|
}) |
|
} |
|
return LightningService.instance |
|
} |
|
|
|
async zap( |
|
sender: string, |
|
recipient: string, |
|
sats: number, |
|
comment: string, |
|
event?: NostrEvent, |
|
closeOuterModel?: () => void |
|
): Promise<{ preimage: string; invoice: string } | null> { |
|
if (!client.signer) { |
|
throw new Error('You need to be logged in to zap') |
|
} |
|
|
|
const [profile, receiptRelayList, senderRelayList] = await Promise.all([ |
|
client.fetchProfile(recipient, true), |
|
client.fetchRelayList(recipient), |
|
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, |
|
relays: receiptRelayList.read |
|
.slice(0, 4) |
|
.concat(senderRelayList.write.slice(0, 3)) |
|
.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 } = zapRequestResBody |
|
if (!pr) { |
|
throw new Error('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 |
|
} |
|
const relayList = await client.fetchRelayList(CODY_PUBKEY) |
|
const events = await client.fetchEvents(relayList.read.slice(0, 4), { |
|
authors: ['79f00d3f5a19ec806189fcab03c1be4ff81d18ee4f653c88fac41fe03570f432'], // alby |
|
kinds: [kinds.Zap], |
|
'#p': [CODY_PUBKEY], |
|
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.eventId || !info.senderPubkey || info.senderPubkey === CODY_PUBKEY) 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) { |
|
console.error(err) |
|
} |
|
|
|
return null |
|
} |
|
} |
|
|
|
const instance = new LightningService() |
|
export default instance
|
|
|