mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-25 15:10:41 +01:00
* initial commit * add docs * black & prettier * mobile styles * add print view * prettier * make format * initial migrations un-messed * make migrations work for sqlite * add invoices table * clean migrations * add migration to conv * fix card size * hopefully fix test migration * add missing status * timestamp * init testing * remove draft invoice by default on create * what should i test * make format * raise if not invoice * new test and renaming * fix issue reported by @talvasconcelos which prevented users from setting status on creation * readme * run black * trying to make tests work * make it work again * send paid amount * partial pay flow * good coding * can't get these test to work * clean up and commenting * make format * validation for 2 decimals Co-authored-by: ben <ben@arc.wales> Co-authored-by: Tiago vasconcelos <talvasconcelos@gmail.com>
51 lines
1.3 KiB
Python
51 lines
1.3 KiB
Python
import asyncio
|
|
import json
|
|
|
|
from lnbits.core.models import Payment
|
|
from lnbits.helpers import urlsafe_short_hash
|
|
from lnbits.tasks import internal_invoice_queue, register_invoice_listener
|
|
|
|
from .crud import (
|
|
create_invoice_payment,
|
|
get_invoice,
|
|
get_invoice_items,
|
|
get_invoice_payments,
|
|
get_invoice_total,
|
|
get_payments_total,
|
|
update_invoice_internal,
|
|
)
|
|
|
|
|
|
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") != "invoices":
|
|
# not relevant
|
|
return
|
|
|
|
invoice_id = payment.extra.get("invoice_id")
|
|
|
|
payment = await create_invoice_payment(
|
|
invoice_id=invoice_id, amount=payment.extra.get("famount")
|
|
)
|
|
|
|
invoice = await get_invoice(invoice_id)
|
|
|
|
invoice_items = await get_invoice_items(invoice_id)
|
|
invoice_total = await get_invoice_total(invoice_items)
|
|
|
|
invoice_payments = await get_invoice_payments(invoice_id)
|
|
payments_total = await get_payments_total(invoice_payments)
|
|
|
|
if payments_total >= invoice_total:
|
|
invoice.status = "paid"
|
|
await update_invoice_internal(invoice.wallet, invoice)
|
|
|
|
return
|