nopaque/app/events.py

88 lines
3.0 KiB
Python
Raw Normal View History

from flask import current_app, request
from flask_login import current_user
from . import db, socketio
from .decorators import socketio_admin_required, socketio_login_required
2019-11-06 12:22:18 +00:00
from .models import User
import json
import jsonpatch
2019-09-02 08:59:13 +00:00
'''
2019-11-07 09:44:02 +00:00
' A list containing session ids of connected Socket.IO sessions, to keep track
' of all connected sessions, which is used to determine the runtimes of
' associated background tasks.
'''
connected_sessions = []
@socketio.on('connect')
def connect():
'''
2019-11-07 09:44:02 +00:00
' The Socket.IO module creates a session id (sid) for each request.
' On connect the sid is saved in the connected sessions list.
'''
connected_sessions.append(request.sid)
@socketio.on('disconnect')
def disconnect():
'''
2019-11-07 09:44:02 +00:00
' On disconnect the session id gets removed from the connected sessions
' list.
'''
connected_sessions.remove(request.sid)
@socketio.on('user_data_stream_init')
@socketio_login_required
def user_data_stream_init():
socketio.start_background_task(user_data_stream,
2019-11-07 09:44:02 +00:00
current_app._get_current_object(),
current_user.id, request.sid)
@socketio.on('foreign_user_data_stream_init')
@socketio_login_required
@socketio_admin_required
def foreign_user_data_stream_init(user_id):
socketio.start_background_task(user_data_stream,
2019-09-18 09:33:06 +00:00
current_app._get_current_object(),
2019-11-07 09:44:02 +00:00
user_id, request.sid, True)
2019-09-18 09:33:06 +00:00
def user_data_stream(app, user_id, session_id, foreign=False):
2019-09-18 09:33:06 +00:00
'''
' Sends initial corpus and job lists to the client. Afterwards it checks
' every 3 seconds if changes to the initial values appeared. If changes are
' detected, a RFC 6902 compliant JSON patch gets send.
'
2020-01-28 09:08:09 +00:00
' NOTE: The initial values are send as a init events.
' The JSON patches are send as update events.
2019-09-18 09:33:06 +00:00
'''
if foreign:
init_event = 'foreign_user_data_stream_init'
update_event = 'foreign_user_data_stream_update'
else:
init_event = 'user_data_stream_init'
update_event = 'user_data_stream_update'
2019-09-18 09:33:06 +00:00
with app.app_context():
2019-11-07 09:44:02 +00:00
# Gather current values from database.
2019-11-15 12:09:12 +00:00
user = User.query.get(user_id)
user_dict = user.to_dict()
2020-04-30 10:56:59 +00:00
# Send initial values to the client.
socketio.emit(init_event, json.dumps(user_dict), room=session_id)
while session_id in connected_sessions:
2019-11-07 09:44:02 +00:00
# Get new values from the database
db.session.refresh(user)
new_user_dict = user.to_dict()
2019-11-07 09:44:02 +00:00
# Compute JSON patches.
user_patch = jsonpatch.JsonPatch.from_diff(user_dict,
new_user_dict)
2020-04-30 10:56:59 +00:00
# In case there are patches, send them to the client.
if user_patch:
socketio.emit(update_event, user_patch.to_string(),
2019-09-18 09:33:06 +00:00
room=session_id)
2019-11-07 09:44:02 +00:00
# Set new values as references for the next iteration.
user_dict = new_user_dict
2019-09-18 09:33:06 +00:00
socketio.sleep(3)