2021-10-29 17:43:26 +02:00
|
|
|
import asyncio
|
|
|
|
|
|
|
|
import httpx
|
|
|
|
|
|
|
|
from lnbits.core.models import Payment
|
2022-10-04 09:51:47 +02:00
|
|
|
from lnbits.helpers import get_current_extension_name
|
2021-10-29 17:43:26 +02:00
|
|
|
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()
|
2022-10-04 09:51:47 +02:00
|
|
|
register_invoice_listener(invoice_queue, get_current_extension_name())
|
2021-10-29 17:43:26 +02:00
|
|
|
|
|
|
|
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:
|
2022-07-15 19:11:11 +02:00
|
|
|
if payment.extra.get("tag") == "lnaddress":
|
2021-10-29 17:43:26 +02:00
|
|
|
|
|
|
|
await payment.set_pending(False)
|
|
|
|
await set_address_paid(payment_hash=payment.payment_hash)
|
2021-12-01 22:55:04 +01:00
|
|
|
await call_webhook_on_paid(payment_hash=payment.payment_hash)
|
2021-10-29 17:43:26 +02:00
|
|
|
|
2022-07-15 19:11:11 +02:00
|
|
|
elif payment.extra.get("tag") == "renew lnaddress":
|
2021-10-29 17:43:26 +02:00
|
|
|
|
|
|
|
await payment.set_pending(False)
|
2021-11-26 06:58:20 +01:00
|
|
|
await set_address_renewed(
|
|
|
|
address_id=payment.extra["id"], duration=payment.extra["duration"]
|
|
|
|
)
|
2021-12-01 22:55:04 +01:00
|
|
|
await call_webhook_on_paid(payment_hash=payment.payment_hash)
|
2021-10-29 17:43:26 +02:00
|
|
|
|
|
|
|
else:
|
|
|
|
return
|