mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-25 23:21:21 +01:00
33 lines
813 B
Python
33 lines
813 B
Python
import asyncio
|
|
|
|
from loguru import logger
|
|
|
|
from lnbits.core.models import Payment
|
|
from lnbits.tasks import register_invoice_listener
|
|
|
|
from .crud import activate_address
|
|
|
|
|
|
async def wait_for_paid_invoices():
|
|
invoice_queue = asyncio.Queue()
|
|
register_invoice_listener(invoice_queue)
|
|
|
|
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") != "nostrnip5":
|
|
return
|
|
|
|
domain_id = payment.extra.get("domain_id")
|
|
address_id = payment.extra.get("address_id")
|
|
|
|
if domain_id and address_id:
|
|
logger.info("Activating NOSTR NIP-05")
|
|
logger.info(domain_id)
|
|
logger.info(address_id)
|
|
await activate_address(domain_id, address_id)
|
|
|
|
return
|