Adding websockets for panel (trying at least)

This commit is contained in:
Ben Arc
2021-04-14 09:21:20 +01:00
parent 58517fba53
commit 2ac9e75dac
2 changed files with 29 additions and 4 deletions
+8 -3
View File
@@ -1,4 +1,4 @@
from quart import g, abort, render_template, jsonify
from quart import g, abort, render_template, jsonify, websocket
from http import HTTPStatus
from lnbits.decorators import check_user_exists, validate_uuids
@@ -6,7 +6,6 @@ from lnbits.decorators import check_user_exists, validate_uuids
from . import copilot_ext
from .crud import get_copilot
@copilot_ext.route("/")
@validate_uuids(["usr"], required=True)
@check_user_exists()
@@ -26,4 +25,10 @@ async def panel(copilot_id):
copilot = await get_copilot(copilot_id) or abort(
HTTPStatus.NOT_FOUND, "Copilot link does not exist."
)
return await render_template("copilot/panel.html", copilot=copilot)
return await render_template("copilot/panel.html", copilot=copilot)
@copilot_ext.websocket('/ws/<copilot_id>')
async def ws():
while True:
data = await websocket.receive()
await websocket.send(f"echo {data}")