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

58 lines
1.8 KiB
Python
Raw Normal View History

2021-10-27 22:09:55 +01:00
import asyncio
import httpx
from lnbits.core.models import Payment
from lnbits.tasks import register_invoice_listener
from .cloudflare import cloudflare_create_subdomain
from .crud import get_domain, set_subdomain_paid
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)
2021-11-12 04:14:55 +00:00
2021-10-27 22:09:55 +01:00
async def on_invoice_paid(payment: Payment) -> None:
2022-07-15 18:11:11 +01:00
if payment.extra.get("tag") != "lnsubdomain":
2021-10-27 22:09:55 +01:00
# not an lnurlp invoice
return
await payment.set_pending(False)
subdomain = await set_subdomain_paid(payment_hash=payment.payment_hash)
domain = await get_domain(subdomain.domain)
### Create subdomain
2021-11-08 12:28:11 +00:00
cf_response = await cloudflare_create_subdomain(
2021-10-27 22:09:55 +01:00
domain=domain,
subdomain=subdomain.subdomain,
record_type=subdomain.record_type,
ip=subdomain.ip,
)
### Use webhook to notify about cloudflare registration
if domain.webhook:
async with httpx.AsyncClient() as client:
try:
r = await client.post(
domain.webhook,
json={
"domain": subdomain.domain_name,
"subdomain": subdomain.subdomain,
"record_type": subdomain.record_type,
"email": subdomain.email,
"ip": subdomain.ip,
"cost:": str(subdomain.sats) + " sats",
"duration": str(subdomain.duration) + " days",
"cf_response": cf_response,
},
timeout=40,
)
except AssertionError:
webhook = None