mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-24 14:51:05 +01:00
Websocket test
This commit is contained in:
parent
2ac9e75dac
commit
f5487b2185
2 changed files with 8 additions and 12 deletions
|
@ -62,11 +62,7 @@
|
|||
|
||||
console.log('Starting connection to WebSocket Server')
|
||||
this.connection = new WebSocket(
|
||||
'wss://' +
|
||||
document.domain +
|
||||
':' +
|
||||
location.port +
|
||||
'/ws/{{ copilot.id }}'
|
||||
'ws://' + document.domain + ':' + location.port + '/ws/{{ copilot.id }}'
|
||||
)
|
||||
|
||||
this.connection.onmessage = function (event) {
|
||||
|
|
|
@ -6,6 +6,12 @@ from lnbits.decorators import check_user_exists, validate_uuids
|
|||
from . import copilot_ext
|
||||
from .crud import get_copilot
|
||||
|
||||
@copilot_ext.websocket('/ws')
|
||||
async def ws():
|
||||
while True:
|
||||
data = await websocket.receive()
|
||||
await websocket.send(f"echo {data}")
|
||||
|
||||
@copilot_ext.route("/")
|
||||
@validate_uuids(["usr"], required=True)
|
||||
@check_user_exists()
|
||||
|
@ -25,10 +31,4 @@ 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)
|
||||
|
||||
@copilot_ext.websocket('/ws/<copilot_id>')
|
||||
async def ws():
|
||||
while True:
|
||||
data = await websocket.receive()
|
||||
await websocket.send(f"echo {data}")
|
||||
return await render_template("copilot/panel.html", copilot=copilot)
|
Loading…
Add table
Reference in a new issue