2021-09-28 21:18:15 +02:00
|
|
|
import asyncio
|
2021-08-20 12:44:03 +01:00
|
|
|
|
|
|
|
from lnbits.core.models import Payment
|
2021-09-28 21:18:15 +02:00
|
|
|
from lnbits.tasks import register_invoice_listener
|
2021-08-20 12:44:03 +01:00
|
|
|
|
|
|
|
from .crud import get_ticket, set_ticket_paid
|
|
|
|
|
|
|
|
|
2021-09-29 20:44:00 +02:00
|
|
|
async def wait_for_paid_invoices():
|
|
|
|
invoice_queue = asyncio.Queue()
|
|
|
|
register_invoice_listener(invoice_queue)
|
2021-08-20 12:44:03 +01:00
|
|
|
|
2021-09-28 21:18:15 +02:00
|
|
|
while True:
|
2021-09-29 20:44:00 +02:00
|
|
|
payment = await invoice_queue.get()
|
2021-08-20 12:44:03 +01:00
|
|
|
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)
|