mirror of
https://github.com/lnbits/lnbits.git
synced 2025-10-09 20:12:34 +02:00
36 lines
969 B
Python
36 lines
969 B
Python
import asyncio
|
|
|
|
from lnbits.core.models import Payment
|
|
from lnbits.tasks import register_invoice_listener
|
|
|
|
from .crud import get_ticket, set_ticket_paid
|
|
|
|
|
|
async def register_listeners():
|
|
send_queue = asyncio.Queue()
|
|
recv_queue = asyncio.Queue()
|
|
register_invoice_listener(send_queue)
|
|
await wait_for_paid_invoices(recv_queue)
|
|
|
|
|
|
async def wait_for_paid_invoices(invoice_paid_queue: asyncio.Queue):
|
|
while True:
|
|
payment = await invoice_paid_queue.get()
|
|
await on_invoice_paid(payment)
|
|
|
|
|
|
async def on_invoice_paid(payment: Payment) -> None:
|
|
if "lnticket" != payment.extra.get("tag"):
|
|
# not a lnticket invoice
|
|
return
|
|
|
|
ticket = await get_ticket(payment.checking_id)
|
|
if not ticket:
|
|
print("this should never happen", payment)
|
|
return
|
|
|
|
await payment.set_pending(False)
|
|
await set_ticket_paid(payment.payment_hash)
|
|
_ticket = await get_ticket(payment.checking_id)
|
|
print("ticket", _ticket)
|