Skip to content

Commit 0e4cf12

Browse files
authored
Merge pull request #416 from ericpp/add-lnurl-support
Add LNURL support to boost button
2 parents c33a1e6 + e1f60e4 commit 0e4cf12

File tree

1 file changed

+43
-12
lines changed

1 file changed

+43
-12
lines changed

ui/src/components/Boostagram/index.tsx

+43-12
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,45 @@ export default class Boostagram extends React.PureComponent<IProps> {
7777
}
7878
}
7979

80+
const sendPayment = async (dest, amount, boostInfo, customRecords) => {
81+
if (dest.type == 'lnaddress') {
82+
const [username, hostname] = dest.address.split('@')
83+
84+
// load their well-known to find the lnurl callback address
85+
let inforesp = await fetch(`https://${hostname}/.well-known/lnurlp/${username}`)
86+
const info = await inforesp.json()
87+
88+
let comment = ""
89+
90+
if (boostInfo.message != "") {
91+
comment += `${boostInfo.message}\n`
92+
}
93+
94+
comment += `From ${boostInfo.sender_name} for ${boostInfo.podcast} - ${boostInfo.episode}`
95+
96+
// request an invoice from the callback
97+
let params = new URLSearchParams({
98+
amount: (amount * 1000).toString(),
99+
comment: comment,
100+
})
101+
102+
let invoiceresp = await fetch(info.callback + `?${params.toString()}`)
103+
const invoice = await invoiceresp.json()
104+
105+
// pay invoice
106+
await webln.sendPayment(invoice.pr)
107+
}
108+
else {
109+
customRecords['7629169'] = JSON.stringify(boostInfo)
110+
111+
await webln.keysend({
112+
destination: dest.address,
113+
amount: amount,
114+
customRecords: customRecords,
115+
})
116+
}
117+
}
118+
80119
let feesDestinations = destinations.filter((v) => v.fee)
81120
let splitsDestinations = destinations.filter((v) => !v.fee)
82121
let runningTotal = this.state.satAmount
@@ -106,18 +145,14 @@ export default class Boostagram extends React.PureComponent<IProps> {
106145
feeRecord.name = dest.name
107146
feeRecord.value_msat = amount * 1000
108147

109-
let customRecords = { '7629169': JSON.stringify(feeRecord) }
148+
let customRecords = {}
110149

111150
if (dest.customKey) {
112151
customRecords[dest.customKey] = dest.customValue
113152
}
114153

115154
try {
116-
await webln.keysend({
117-
destination: dest.address,
118-
amount: amount,
119-
customRecords: customRecords,
120-
})
155+
await sendPayment(dest, amount, feeRecord, customRecords)
121156
} catch (err) {
122157
alert(`error with ${dest.name}: ${err.message}`)
123158
}
@@ -134,17 +169,13 @@ export default class Boostagram extends React.PureComponent<IProps> {
134169
record.name = dest.name
135170
record.value_msat = amount * 1000
136171
if (amount >= 1) {
137-
let customRecords = { '7629169': JSON.stringify(record) }
172+
let customRecords = {}
138173
if (dest.customKey) {
139174
customRecords[dest.customKey] = dest.customValue
140175
}
141176

142177
try {
143-
await webln.keysend({
144-
destination: dest.address,
145-
amount: amount,
146-
customRecords: customRecords,
147-
})
178+
await sendPayment(dest, amount, record, customRecords)
148179
} catch (err) {
149180
alert(`error with ${dest.name}: ${err.message}`)
150181
}

0 commit comments

Comments
 (0)