mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2024-11-19 18:11:30 +01:00
d3fc52cd49
a big refactor that: - fixes some issues that might have happened (or not) with asynchronous reactions to payments; - paves the way to https://github.com/lnbits/lnbits/issues/121; - uses more async/await notation which just looks nice; and - makes it simple(r?) for one extension to modify stuff from other extensions.
33 lines
874 B
Python
33 lines
874 B
Python
from quart import g, abort, render_template
|
|
from http import HTTPStatus
|
|
|
|
from lnbits.decorators import check_user_exists, validate_uuids
|
|
|
|
from . import lnurlp_ext
|
|
from .crud import get_pay_link
|
|
|
|
|
|
@lnurlp_ext.route("/")
|
|
@validate_uuids(["usr"], required=True)
|
|
@check_user_exists()
|
|
async def index():
|
|
return await render_template("lnurlp/index.html", user=g.user)
|
|
|
|
|
|
@lnurlp_ext.route("/<link_id>")
|
|
async def display(link_id):
|
|
link = await get_pay_link(link_id)
|
|
if not link:
|
|
abort(HTTPStatus.NOT_FOUND, "Pay link does not exist.")
|
|
|
|
return await render_template("lnurlp/display.html", link=link)
|
|
|
|
|
|
@lnurlp_ext.route("/print/<link_id>")
|
|
async def print_qr(link_id):
|
|
link = await get_pay_link(link_id)
|
|
if not link:
|
|
abort(HTTPStatus.NOT_FOUND, "Pay link does not exist.")
|
|
|
|
return await render_template("lnurlp/print_qr.html", link=link)
|