bazarr/bazarr/event_handler.py

32 lines
841 B
Python
Raw Normal View History

# coding=utf-8
2020-05-12 12:25:03 +00:00
from app import socketio
def event_stream(type, action="update", payload=None):
2020-05-12 12:25:03 +00:00
"""
:param type: The type of element.
:type type: str
:param action: The action type of element from update and delete.
2020-05-12 12:25:03 +00:00
:type action: str
:param payload: The payload to send, can be anything
2020-05-12 12:25:03 +00:00
"""
try:
payload = int(payload)
except (ValueError, TypeError):
pass
socketio.emit("data", {"type": type, "action": action, "payload": payload})
def show_message(msg):
event_stream(type="message", payload=msg)
def show_progress(id, header, name, value, count):
event_stream(type="progress", payload={"id": id, "header": header, "name": name, "value": value, "count": count})
def hide_progress(id):
2021-05-11 02:54:33 +00:00
event_stream(type="progress", action="delete", payload=id)