-
Notifications
You must be signed in to change notification settings - Fork 14
/
tasks.py
66 lines (50 loc) · 1.67 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import asyncio
from lnbits.core.models import Payment
from lnbits.core.services import create_invoice, pay_invoice, websocket_updater
from lnbits.tasks import register_invoice_listener
from loguru import logger
from .crud import get_tpos
async def wait_for_paid_invoices():
invoice_queue = asyncio.Queue()
register_invoice_listener(invoice_queue, "ext_tpos")
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") != "tpos"
or payment.extra.get("tipSplitted")
):
return
tip_amount = payment.extra.get("tip_amount")
stripped_payment = {
"amount": payment.amount,
"fee": payment.fee,
"checking_id": payment.checking_id,
"payment_hash": payment.payment_hash,
"bolt11": payment.bolt11,
}
tpos_id = payment.extra.get("tpos_id")
assert tpos_id
tpos = await get_tpos(tpos_id)
assert tpos
await websocket_updater(tpos_id, str(stripped_payment))
if not tip_amount:
# no tip amount
return
wallet_id = tpos.tip_wallet
assert wallet_id
tip_payment = await create_invoice(
wallet_id=wallet_id,
amount=int(tip_amount),
internal=True,
memo="tpos tip",
)
logger.debug(f"tpos: tip invoice created: {payment.payment_hash}")
paid_payment = await pay_invoice(
payment_request=tip_payment.bolt11,
wallet_id=payment.wallet_id,
extra={**payment.extra, "tipSplitted": True},
)
logger.debug(f"tpos: tip invoice paid: {paid_payment.checking_id}")