-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtasks.py
34 lines (24 loc) · 1 KB
/
tasks.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import asyncio
from lnbits.core.models import Payment
from lnbits.helpers import get_current_extension_name
from lnbits.tasks import register_invoice_listener
from loguru import logger
from .crud import get_appointment, get_schedule, set_appointment_paid
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 not payment.extra or payment.extra.get("tag") != "lncalendar":
# not a lncalendar invoice
return
appointment = await get_appointment(payment.checking_id)
if not appointment:
logger.error("this should never happen", payment)
return
schedule = await get_schedule(appointment.schedule)
assert schedule
if payment.amount == schedule.amount * 1000:
await set_appointment_paid(payment.payment_hash)