2021-10-18 12:34:45 +01:00
|
|
|
import asyncio
|
2021-11-25 18:52:16 +00:00
|
|
|
|
|
|
|
from fastapi import APIRouter
|
2021-10-18 12:34:45 +01:00
|
|
|
from fastapi.staticfiles import StaticFiles
|
2021-11-25 18:52:16 +00:00
|
|
|
|
2021-10-18 12:34:45 +01:00
|
|
|
from lnbits.db import Database
|
|
|
|
from lnbits.helpers import template_renderer
|
|
|
|
from lnbits.tasks import catch_everything_and_restart
|
|
|
|
|
|
|
|
db = Database("ext_splitpayments")
|
|
|
|
|
2021-10-18 13:02:28 +01:00
|
|
|
splitpayments_static_files = [
|
2021-10-18 12:34:45 +01:00
|
|
|
{
|
2021-10-18 13:02:28 +01:00
|
|
|
"path": "/splitpayments/static",
|
2021-10-18 12:34:45 +01:00
|
|
|
"app": StaticFiles(directory="lnbits/extensions/splitpayments/static"),
|
2021-10-18 13:02:28 +01:00
|
|
|
"name": "splitpayments_static",
|
2021-10-18 12:34:45 +01:00
|
|
|
}
|
|
|
|
]
|
|
|
|
splitpayments_ext: APIRouter = APIRouter(
|
|
|
|
prefix="/splitpayments", tags=["splitpayments"]
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def splitpayments_renderer():
|
|
|
|
return template_renderer(["lnbits/extensions/splitpayments/templates"])
|
|
|
|
|
2021-11-26 05:58:20 +00:00
|
|
|
|
2021-10-18 12:34:45 +01:00
|
|
|
from .tasks import wait_for_paid_invoices
|
2021-11-25 18:52:16 +00:00
|
|
|
from .views import * # noqa
|
|
|
|
from .views_api import * # noqa
|
2021-10-18 12:34:45 +01:00
|
|
|
|
|
|
|
|
|
|
|
def splitpayments_start():
|
|
|
|
loop = asyncio.get_event_loop()
|
|
|
|
loop.create_task(catch_everything_and_restart(wait_for_paid_invoices))
|