Files
lnbits/lnbits/extensions/scrub/tasks.py
T
2022-05-19 11:39:59 +01:00

44 lines
1.0 KiB
Python

import asyncio
import json
import httpx
from lnbits.core import db as core_db
from lnbits.core.models import Scrubment
from lnbits.tasks import register_invoice_listener
from .crud import get_pay_link
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: Scrubment) -> None:
if "scrub" != payment.extra.get("tag"):
# not an scrub invoice
return
if payment.extra.get("wh_status"):
# this webhook has already been sent
return
pay_link = await get_pay_link(payment.extra.get("link", -1))
# PAY LNURLP AND LNADDRESS
async def mark_webhook_sent(payment: Scrubment, status: int) -> None:
payment.extra["wh_status"] = status
await core_db.execute(
"""
UPDATE apipayments SET extra = ?
WHERE hash = ?
""",
(json.dumps(payment.extra), payment.payment_hash),
)