@@ -77,6 +77,45 @@ export default class Boostagram extends React.PureComponent<IProps> {
77
77
}
78
78
}
79
79
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
+
80
119
let feesDestinations = destinations . filter ( ( v ) => v . fee )
81
120
let splitsDestinations = destinations . filter ( ( v ) => ! v . fee )
82
121
let runningTotal = this . state . satAmount
@@ -106,18 +145,14 @@ export default class Boostagram extends React.PureComponent<IProps> {
106
145
feeRecord . name = dest . name
107
146
feeRecord . value_msat = amount * 1000
108
147
109
- let customRecords = { '7629169' : JSON . stringify ( feeRecord ) }
148
+ let customRecords = { }
110
149
111
150
if ( dest . customKey ) {
112
151
customRecords [ dest . customKey ] = dest . customValue
113
152
}
114
153
115
154
try {
116
- await webln . keysend ( {
117
- destination : dest . address ,
118
- amount : amount ,
119
- customRecords : customRecords ,
120
- } )
155
+ await sendPayment ( dest , amount , feeRecord , customRecords )
121
156
} catch ( err ) {
122
157
alert ( `error with ${ dest . name } : ${ err . message } ` )
123
158
}
@@ -134,17 +169,13 @@ export default class Boostagram extends React.PureComponent<IProps> {
134
169
record . name = dest . name
135
170
record . value_msat = amount * 1000
136
171
if ( amount >= 1 ) {
137
- let customRecords = { '7629169' : JSON . stringify ( record ) }
172
+ let customRecords = { }
138
173
if ( dest . customKey ) {
139
174
customRecords [ dest . customKey ] = dest . customValue
140
175
}
141
176
142
177
try {
143
- await webln . keysend ( {
144
- destination : dest . address ,
145
- amount : amount ,
146
- customRecords : customRecords ,
147
- } )
178
+ await sendPayment ( dest , amount , record , customRecords )
148
179
} catch ( err ) {
149
180
alert ( `error with ${ dest . name } : ${ err . message } ` )
150
181
}
0 commit comments