fix: broken lnurl_callback (#2445)

* fix: broken lnurl_callback
This commit is contained in:
dni ⚡ 2024-04-18 12:16:00 +02:00 committed by GitHub
parent 98ec59df96
commit bbfc301440
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 36 additions and 3 deletions

View File

@ -387,6 +387,7 @@ class CreateInvoice(BaseModel):
extra: Optional[dict] = None
webhook: Optional[str] = None
bolt11: Optional[str] = None
lnurl_callback: Optional[str] = None
class CreateTopup(BaseModel):

View File

@ -3,7 +3,7 @@ import json
import uuid
from http import HTTPStatus
from math import ceil
from typing import List, Optional
from typing import List, Optional, Union
from urllib.parse import urlparse
import httpx
@ -177,9 +177,34 @@ async def api_payments_create_invoice(data: CreateInvoice, wallet: Wallet):
invoice = bolt11.decode(payment_request)
lnurl_response: Union[None, bool, str] = None
if data.lnurl_callback:
headers = {"User-Agent": settings.user_agent}
async with httpx.AsyncClient(headers=headers) as client:
try:
r = await client.get(
data.lnurl_callback,
params={
"pr": payment_request,
},
timeout=10,
)
if r.is_error:
lnurl_response = r.text
else:
resp = json.loads(r.text)
if resp["status"] != "OK":
lnurl_response = resp["reason"]
else:
lnurl_response = True
except (httpx.ConnectError, httpx.RequestError) as ex:
logger.error(ex)
lnurl_response = False
return {
"payment_hash": invoice.payment_hash,
"payment_request": payment_request,
"lnurl_response": lnurl_response,
# maintain backwards compatibility with API clients:
"checking_id": checking_id,
}

File diff suppressed because one or more lines are too long

View File

@ -22,11 +22,18 @@ window.LNbits = {
data: data
})
},
createInvoice: async function (wallet, amount, memo, unit = 'sat') {
createInvoice: async function (
wallet,
amount,
memo,
unit = 'sat',
lnurlCallback = null
) {
return this.request('post', '/api/v1/payments', wallet.inkey, {
out: false,
amount: amount,
memo: memo,
lnurl_callback: lnurlCallback,
unit: unit
})
},