lnbits-legend/lnbits/extensions/scrub/tasks.py

44 lines
1 KiB
Python
Raw Normal View History

2022-05-17 20:27:52 +01:00
import asyncio
import json
import httpx
from lnbits.core import db as core_db
2022-06-07 11:04:34 +01:00
from .models import ScrubLink
2022-05-17 20:27:52 +01:00
from lnbits.tasks import register_invoice_listener
2022-06-07 11:04:34 +01:00
from .crud import get_scrub_link
2022-05-17 20:27:52 +01:00
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)
2022-06-07 11:04:34 +01:00
async def on_invoice_paid(payment: ScrubLink) -> None:
2022-05-17 20:27:52 +01:00
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))
2022-05-19 11:39:59 +01:00
# PAY LNURLP AND LNADDRESS
2022-05-17 20:27:52 +01:00
2022-06-07 11:04:34 +01:00
async def mark_webhook_sent(payment: ScrubLink, status: int) -> None:
2022-05-17 20:27:52 +01:00
payment.extra["wh_status"] = status
await core_db.execute(
"""
UPDATE apipayments SET extra = ?
WHERE hash = ?
""",
(json.dumps(payment.extra), payment.payment_hash),
)