satspay initial converstion

This commit is contained in:
Tiago vasconcelos
2021-10-14 11:45:56 +01:00
parent ec89244d7f
commit e939666107
6 changed files with 130 additions and 115 deletions
+21 -14
View File
@@ -1,22 +1,29 @@
from quart import g, abort, render_template, jsonify
from fastapi.param_functions import Depends
from starlette.exceptions import HTTPException
from starlette.responses import HTMLResponse
from lnbits.core.models import User
from lnbits.core.crud import get_wallet
from lnbits.decorators import check_user_exists
from http import HTTPStatus
from lnbits.decorators import check_user_exists, validate_uuids
from fastapi.templating import Jinja2Templates
from . import satspay_ext
from . import satspay_ext, satspay_renderer
from .crud import get_charge
templates = Jinja2Templates(directory="templates")
@satspay_ext.route("/")
@validate_uuids(["usr"], required=True)
@check_user_exists()
async def index():
return await render_template("satspay/index.html", user=g.user)
@satspay_ext.get("/", response_class=HTMLResponse)
async def index(request: Request, user: User = Depends(check_user_exists)):
return satspay_renderer().TemplateResponse("satspay/index.html", {"request": request,"user": user.dict()})
@satspay_ext.route("/<charge_id>")
async def display(charge_id):
charge = await get_charge(charge_id) or abort(
HTTPStatus.NOT_FOUND, "Charge link does not exist."
)
return await render_template("satspay/display.html", charge=charge)
@satspay_ext.get("/{charge_id}", response_class=HTMLResponse)
async def display(request: Request, charge_id):
charge = await get_charge(charge_id)
if not charge:
raise HTTPException(
status_code=HTTPStatus.NOT_FOUND,
detail="Charge link does not exist."
)
return satspay_renderer().TemplateResponse("satspay/display.html", {"request": request, "charge": charge})