mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-25 15:10:41 +01:00
29 lines
750 B
Python
29 lines
750 B
Python
# tasks.py is for asynchronous when invoices get paid
|
|
|
|
# add your dependencies here
|
|
|
|
import asyncio
|
|
|
|
from loguru import logger
|
|
|
|
from lnbits.core.models import Payment
|
|
from lnbits.helpers import get_current_extension_name
|
|
from lnbits.tasks import register_invoice_listener
|
|
|
|
|
|
async def wait_for_paid_invoices():
|
|
invoice_queue = asyncio.Queue()
|
|
register_invoice_listener(invoice_queue, get_current_extension_name())
|
|
|
|
while True:
|
|
payment = await invoice_queue.get()
|
|
await on_invoice_paid(payment)
|
|
|
|
|
|
async def on_invoice_paid(payment: Payment) -> None:
|
|
if (
|
|
payment.extra.get("tag") != "example"
|
|
): # Will grab any payment with the tag "example"
|
|
logger.debug(payment)
|
|
# Do something
|
|
return
|