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

48 lines
1.2 KiB
Python
Raw Normal View History

2022-08-27 17:37:31 +02:00
import asyncio
import json
from lnbits.core import db as core_db
from lnbits.core.models import Payment
from lnbits.helpers import get_current_extension_name
2022-08-27 17:37:31 +02:00
from lnbits.tasks import register_invoice_listener
2022-08-29 16:51:32 +02:00
from .crud import create_refund, get_hit
2022-08-27 17:37:31 +02:00
async def wait_for_paid_invoices():
invoice_queue = asyncio.Queue()
register_invoice_listener(invoice_queue, get_current_extension_name())
2022-08-27 17:37:31 +02:00
while True:
payment = await invoice_queue.get()
await on_invoice_paid(payment)
async def on_invoice_paid(payment: Payment) -> None:
2023-01-05 12:27:43 +01:00
2022-08-29 17:32:13 +02:00
if not payment.extra.get("refund"):
2022-08-27 17:37:31 +02:00
return
if payment.extra.get("wh_status"):
# this webhook has already been sent
return
2023-01-05 12:27:43 +01:00
hit = await get_hit(str(payment.extra.get("refund")))
2022-08-29 17:32:13 +02:00
2022-08-27 17:37:31 +02:00
if hit:
2023-01-05 12:27:43 +01:00
await create_refund(hit_id=hit.id, refund_amount=(payment.amount / 1000))
2022-08-27 17:37:31 +02:00
await mark_webhook_sent(payment, 1)
2022-08-29 17:32:13 +02:00
async def mark_webhook_sent(payment: Payment, status: int) -> None:
2023-01-05 12:27:43 +01:00
2022-08-29 17:32:13 +02:00
payment.extra["wh_status"] = status
await core_db.execute(
"""
UPDATE apipayments SET extra = ?
WHERE hash = ?
""",
(json.dumps(payment.extra), payment.payment_hash),
)