-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from pycob/websocket
Add Websocket Sample app
- Loading branch information
Showing
4 changed files
with
119 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# define the name of the virtual environment directory | ||
VENV := venv | ||
|
||
# default target, when make executed without arguments | ||
all: venv run | ||
|
||
$(VENV)/bin/activate: requirements.txt | ||
python3 -m venv $(VENV) | ||
./$(VENV)/bin/pip install -r requirements.txt | ||
|
||
# venv is a shortcut target | ||
venv: $(VENV)/bin/activate | ||
|
||
run: venv | ||
./$(VENV)/bin/python3 main.py | ||
|
||
deploy: venv | ||
./$(VENV)/bin/python3 -m pycob.deploy | ||
|
||
clean: | ||
rm -rf $(VENV) | ||
find . -type f -name '*.pyc' -delete | ||
|
||
.PHONY: all venv run clean deploy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
web: gunicorn --bind :$PORT --workers 1 --threads 8 --timeout 0 main:app |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
import pyvibe as pv | ||
from flask import Flask, render_template | ||
from flask_sock import Sock | ||
|
||
app = Flask(__name__) | ||
sock = Sock(app) | ||
|
||
class WebSocketReceiverComponent(pv.Component): | ||
def __init__(self, path_to_websocket: str): | ||
self.path_to_websocket = path_to_websocket | ||
|
||
def to_html(self): | ||
return """ | ||
<div id="log"></div> | ||
<script> | ||
var httpProtocol = 'http://'; | ||
var wsProtocol = 'ws://'; | ||
if (window.location.protocol === 'https:') { | ||
httpProtocol = 'http://'; | ||
wsProtocol = 'wss://'; | ||
} | ||
const log = (text, color) => { | ||
document.getElementById('log').innerHTML += `<span style="color: ${color}">${text}</span><br>`; | ||
}; | ||
const socket = new WebSocket(wsProtocol + location.host + '""" + self.path_to_websocket + """'); | ||
socket.addEventListener('message', ev => { | ||
document.getElementById('log').innerHTML += ev.data; | ||
}); | ||
</script> | ||
""" | ||
|
||
class WebSocketSenderComponent(pv.Component): | ||
def __init__(self, path_to_websocket: str): | ||
self.path_to_websocket = path_to_websocket | ||
|
||
def to_html(self): | ||
return """ | ||
<form class="max-w-full" style="width: 500px" onsubmit="event.preventDefault(); sendWebsocket(this)" action="?" method="GET"> | ||
<div class="mb-6"> | ||
<label for="text" class="block mb-2 text-sm font-medium text-gray-900 dark:text-white">Input</label> | ||
<input type="text" name="text" value="" class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500" placeholder="" required=""> | ||
</div> | ||
<button type="submit" class="text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm w-full sm:w-auto px-5 py-2.5 text-center dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800">Send</button> | ||
</form> | ||
<script> | ||
function sendWebsocket(form) { | ||
const textField = form.text; | ||
socket.send(textField.value); | ||
textField.value = ''; | ||
return false; | ||
} | ||
</script> | ||
""" | ||
|
||
@app.route('/') | ||
def index(): | ||
page = pv.Page('Websocket Test', description='WebSocket proof of concept using Flask-Sock and PyVibe') | ||
|
||
page.add_header("Websocket Test") | ||
|
||
with page.add_container(grid_columns=2) as container: | ||
with container.add_card() as card: | ||
card.add_header('Send') | ||
card.add_component(WebSocketSenderComponent('/echo')) | ||
|
||
with container.add_card() as card: | ||
card.add_header('Receive') | ||
card.add_component(WebSocketReceiverComponent('/echo')) | ||
|
||
page.add_header("Source Code") | ||
page.add_emgithub("https://github.com/pycob/pyvibe/blob/main/sample-apps/websockets/main.py") | ||
|
||
return page.to_html() | ||
|
||
from threading import Timer | ||
|
||
@sock.route('/echo') | ||
def echo(sock): | ||
while True: | ||
data = sock.receive() | ||
|
||
alert_component = pv.AlertComponent(data, 'Received') | ||
|
||
sock.send(alert_component.to_html()) | ||
|
||
if __name__ == '__main__': | ||
app.run(debug=True) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pyvibe | ||
pycob | ||
flask | ||
flask-sock | ||
gunicorn |