mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2024-11-20 02:28:10 +01:00
5a12f4f237
* logging listeners
* comments
* generate privkey upon init
* listener queue
* remove duplicate check
* make format
* reuse channel
* error handling in sse listener
* uuid for listeners
* register named invoices
* uuid for listeners and listener list
* fix poetry lock
* setuptools
* requirements asyncio timeout
* setuptool;s
* make format
* remove async-timeout
* async_timeout readd
* try lower setuptools version
* try lower lower setuptools version
* back to current version + fix, maybe
* fix worflows to use poetry 1.2.1
* remove uneeded setuptools from build-system
* fix up formatting workflow
* debug to trace
* more traces
* debug logs to trace
Co-authored-by: dni ⚡ <office@dnilabs.com>
63 lines
1.8 KiB
Python
63 lines
1.8 KiB
Python
import asyncio
|
|
|
|
import httpx
|
|
|
|
from lnbits.core.models import Payment
|
|
from lnbits.helpers import get_current_extension_name
|
|
from lnbits.tasks import register_invoice_listener
|
|
|
|
from .crud import get_address, get_domain, set_address_paid, set_address_renewed
|
|
|
|
|
|
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 call_webhook_on_paid(payment_hash):
|
|
### Use webhook to notify about cloudflare registration
|
|
address = await get_address(payment_hash)
|
|
domain = await get_domain(address.domain)
|
|
|
|
if not domain.webhook:
|
|
return
|
|
|
|
async with httpx.AsyncClient() as client:
|
|
try:
|
|
r = await client.post(
|
|
domain.webhook,
|
|
json={
|
|
"domain": domain.domain,
|
|
"address": address.username,
|
|
"email": address.email,
|
|
"cost": str(address.sats) + " sats",
|
|
"duration": str(address.duration) + " days",
|
|
},
|
|
timeout=40,
|
|
)
|
|
except AssertionError:
|
|
webhook = None
|
|
|
|
|
|
async def on_invoice_paid(payment: Payment) -> None:
|
|
if payment.extra.get("tag") == "lnaddress":
|
|
|
|
await payment.set_pending(False)
|
|
await set_address_paid(payment_hash=payment.payment_hash)
|
|
await call_webhook_on_paid(payment_hash=payment.payment_hash)
|
|
|
|
elif payment.extra.get("tag") == "renew lnaddress":
|
|
|
|
await payment.set_pending(False)
|
|
await set_address_renewed(
|
|
address_id=payment.extra["id"], duration=payment.extra["duration"]
|
|
)
|
|
await call_webhook_on_paid(payment_hash=payment.payment_hash)
|
|
|
|
else:
|
|
return
|