lnbits-legend/lnbits/core/views/public_api.py

59 lines
1.7 KiB
Python
Raw Normal View History

import asyncio
from http import HTTPStatus
2021-10-29 16:43:26 +01:00
from fastapi import APIRouter, HTTPException
2022-07-16 14:23:03 +02:00
from loguru import logger
2021-10-29 16:43:26 +01:00
from lnbits import bolt11
from ..crud import get_standalone_payment
from ..tasks import api_invoice_listeners
public_router = APIRouter(tags=["Core"])
@public_router.get("/public/v1/payment/{payment_hash}")
async def api_public_payment_longpolling(payment_hash):
payment = await get_standalone_payment(payment_hash)
if not payment:
2021-09-11 11:02:48 +02:00
raise HTTPException(
2021-10-17 18:33:29 +01:00
status_code=HTTPStatus.NOT_FOUND, detail="Payment does not exist."
2021-09-11 11:02:48 +02:00
)
elif not payment.pending:
2021-09-11 11:02:48 +02:00
return {"status": "paid"}
try:
invoice = bolt11.decode(payment.bolt11)
if invoice.has_expired():
2021-09-11 11:02:48 +02:00
return {"status": "expired"}
except Exception as exc:
2021-09-11 11:02:48 +02:00
raise HTTPException(
2021-10-17 18:33:29 +01:00
status_code=HTTPStatus.BAD_REQUEST, detail="Invalid bolt11 invoice."
) from exc
payment_queue = asyncio.Queue(0)
logger.debug(f"adding standalone invoice listener for hash: {payment_hash}")
api_invoice_listeners[payment_hash] = payment_queue
response = None
async def payment_info_receiver():
for payment in await payment_queue.get():
if payment.payment_hash == payment_hash:
nonlocal response
2021-09-11 11:02:48 +02:00
response = {"status": "paid"}
async def timeouter(cancel_scope):
await asyncio.sleep(45)
cancel_scope.cancel()
cancel_scope = asyncio.create_task(payment_info_receiver())
asyncio.create_task(timeouter(cancel_scope)) # noqa: RUF006
if response:
return response
else:
2021-10-17 18:33:29 +01:00
raise HTTPException(status_code=HTTPStatus.REQUEST_TIMEOUT, detail="timeout")