lnbits-legend/lnbits/extensions/copilot/views.py

61 lines
1.5 KiB
Python
Raw Normal View History

from quart import g, abort, render_template, jsonify, websocket
2021-04-12 20:31:39 +01:00
from http import HTTPStatus
2021-04-19 09:32:41 +01:00
import httpx
2021-04-12 20:31:39 +01:00
from lnbits.decorators import check_user_exists, validate_uuids
from . import copilot_ext
from .crud import get_copilot
from quart import g, abort, render_template, jsonify, websocket
from functools import wraps
2021-04-16 12:20:05 +01:00
import trio
import shortuuid
from . import copilot_ext
2021-04-16 12:20:05 +01:00
2021-04-12 20:31:39 +01:00
@copilot_ext.route("/")
@validate_uuids(["usr"], required=True)
@check_user_exists()
async def index():
return await render_template("copilot/index.html", user=g.user)
2021-04-20 14:33:41 +01:00
@copilot_ext.route("/cp/")
async def compose():
return await render_template("copilot/compose.html")
@copilot_ext.route("/pn/")
async def panel():
return await render_template("copilot/panel.html")
2021-04-20 00:37:51 +01:00
2021-04-20 08:50:53 +01:00
##################WEBSOCKET ROUTES########################
# socket_relay is a list where the control panel or
# lnurl endpoints can leave a message for the compose window
socket_relay = {}
@copilot_ext.websocket("/ws/panel/<copilot_id>")
async def ws_panel(copilot_id):
global socket_relay
while True:
data = await websocket.receive()
socket_relay[copilot_id] = shortuuid.uuid()[:5] + "-" + data + "-" + "none"
@copilot_ext.websocket("/ws/compose/<copilot_id>")
async def ws_compose(copilot_id):
global socket_relay
while True:
data = await websocket.receive()
await websocket.send(socket_relay[copilot_id])
2021-04-20 00:37:51 +01:00
async def updater(data, comment, copilot):
2021-04-20 08:50:53 +01:00
global socket_relay
socket_relay[copilot] = shortuuid.uuid()[:5] + "-" + data + "-" + comment