2020-10-06 05:39:54 +02:00
|
|
|
import trio # type: ignore
|
|
|
|
from http import HTTPStatus
|
2020-10-06 06:50:55 +02:00
|
|
|
from typing import Optional, List, Callable
|
2020-10-06 05:39:54 +02:00
|
|
|
from quart_trio import QuartTrio
|
|
|
|
|
|
|
|
from lnbits.settings import WALLET
|
|
|
|
from lnbits.core.crud import get_standalone_payment
|
|
|
|
|
|
|
|
main_app: Optional[QuartTrio] = None
|
|
|
|
|
|
|
|
|
|
|
|
def grab_app_for_later(app: QuartTrio):
|
|
|
|
global main_app
|
|
|
|
main_app = app
|
|
|
|
|
|
|
|
|
2020-10-06 06:50:55 +02:00
|
|
|
deferred_async: List[Callable] = []
|
|
|
|
|
|
|
|
|
|
|
|
def record_async(func: Callable) -> Callable:
|
|
|
|
def recorder(state):
|
|
|
|
deferred_async.append(func)
|
|
|
|
|
|
|
|
return recorder
|
|
|
|
|
|
|
|
|
|
|
|
def run_deferred_async(nursery):
|
|
|
|
for func in deferred_async:
|
|
|
|
nursery.start_soon(func)
|
|
|
|
|
|
|
|
|
2020-10-06 05:39:54 +02:00
|
|
|
async def send_push_promise(a, b) -> None:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2020-10-06 06:50:55 +02:00
|
|
|
invoice_listeners: List[trio.MemorySendChannel] = []
|
2020-10-06 05:39:54 +02:00
|
|
|
|
|
|
|
|
2020-10-06 06:50:55 +02:00
|
|
|
def register_invoice_listener(send_chan: trio.MemorySendChannel):
|
2020-10-06 05:39:54 +02:00
|
|
|
"""
|
|
|
|
A method intended for extensions to call when they want to be notified about
|
|
|
|
new invoice payments incoming.
|
|
|
|
"""
|
2020-10-06 06:50:55 +02:00
|
|
|
invoice_listeners.append(send_chan)
|
2020-10-06 05:39:54 +02:00
|
|
|
|
|
|
|
|
|
|
|
async def webhook_handler():
|
|
|
|
handler = getattr(WALLET, "webhook_listener", None)
|
|
|
|
if handler:
|
|
|
|
return await handler()
|
|
|
|
return "", HTTPStatus.NO_CONTENT
|
|
|
|
|
|
|
|
|
2020-10-22 20:36:37 +02:00
|
|
|
internal_invoice_paid, internal_invoice_received = trio.open_memory_channel(0)
|
|
|
|
|
|
|
|
|
|
|
|
async def internal_invoice_listener():
|
2020-11-21 22:04:39 +01:00
|
|
|
async with trio.open_nursery() as nursery:
|
|
|
|
async for checking_id in internal_invoice_received:
|
|
|
|
nursery.start_soon(invoice_callback_dispatcher, checking_id)
|
2020-10-22 20:36:37 +02:00
|
|
|
|
|
|
|
|
2020-10-06 05:39:54 +02:00
|
|
|
async def invoice_listener():
|
2020-11-21 22:04:39 +01:00
|
|
|
async with trio.open_nursery() as nursery:
|
|
|
|
async for checking_id in WALLET.paid_invoices_stream():
|
|
|
|
nursery.start_soon(invoice_callback_dispatcher, checking_id)
|
2020-10-06 05:39:54 +02:00
|
|
|
|
|
|
|
|
|
|
|
async def invoice_callback_dispatcher(checking_id: str):
|
2020-11-21 22:04:39 +01:00
|
|
|
payment = await get_standalone_payment(checking_id)
|
2020-10-06 05:39:54 +02:00
|
|
|
if payment and payment.is_in:
|
2020-11-21 22:04:39 +01:00
|
|
|
await payment.set_pending(False)
|
2020-10-06 06:50:55 +02:00
|
|
|
for send_chan in invoice_listeners:
|
|
|
|
await send_chan.send(payment)
|