OpenSlides/openslides/utils/websocket.py

185 lines
6.1 KiB
Python
Raw Normal View History

2018-10-26 15:37:29 +02:00
from collections import defaultdict
from typing import Any, Dict, List, Optional
import jsonschema
from channels.generic.websocket import AsyncJsonWebsocketConsumer
from websockets.exceptions import ConnectionClosed
2018-10-26 15:37:29 +02:00
from .autoupdate import AutoupdateFormat
2018-10-26 15:37:29 +02:00
from .cache import element_cache
from .utils import split_element_id
class ProtocollAsyncJsonWebsocketConsumer(AsyncJsonWebsocketConsumer):
"""
Mixin for JSONWebsocketConsumers, that speaks the a special protocol.
"""
2019-01-06 16:22:33 +01:00
async def send_json(
self,
type: str,
content: Any,
id: Optional[str] = None,
in_response: Optional[str] = None,
silence_errors: Optional[bool] = True,
2019-01-06 16:22:33 +01:00
) -> None:
2018-10-26 15:37:29 +02:00
"""
Sends the data with the type.
2019-05-10 07:35:19 +02:00
If silence_errors is True (default), all ConnectionClosed
and runtime errors during sending will be ignored.
2018-10-26 15:37:29 +02:00
"""
2019-01-06 16:22:33 +01:00
out = {"type": type, "content": content}
2018-10-26 15:37:29 +02:00
if id:
2019-01-06 16:22:33 +01:00
out["id"] = id
2018-10-26 15:37:29 +02:00
if in_response:
2019-01-06 16:22:33 +01:00
out["in_response"] = in_response
try:
await super().send_json(out)
2019-05-10 07:35:19 +02:00
except (ConnectionClosed, RuntimeError) as e:
# The ConnectionClosed error is thrown by the websocket lib: websocket/protocol.py in ensure_open
# `websockets.exceptions.ConnectionClosed: WebSocket connection is closed: code = 1005
# (no status code [internal]), no reason` (Also with other codes)
# The RuntimeError is thrown by uvicorn: uvicorn/protocols/websockets/websockets_impl.py in asgi_send
# `RuntimeError: Unexpected ASGI message 'websocket.send', after sending 'websocket.close'`
if not silence_errors:
raise e
2018-10-26 15:37:29 +02:00
async def receive_json(self, content: Any) -> None:
"""
Receives the json data, parses it and calls receive_content.
"""
try:
jsonschema.validate(content, schema)
except jsonschema.ValidationError as err:
try:
2019-01-06 16:22:33 +01:00
in_response = content["id"]
2018-10-26 15:37:29 +02:00
except (TypeError, KeyError):
# content is not a dict (TypeError) or has not the key id (KeyError)
in_response = None
await self.send_json(
2019-01-06 16:22:33 +01:00
type="error", content=str(err), in_response=in_response
)
2018-10-26 15:37:29 +02:00
return
2019-01-06 16:22:33 +01:00
await websocket_client_messages[content["type"]].receive_content(
self, content["content"], id=content["id"]
)
2018-10-26 15:37:29 +02:00
schema: Dict[str, Any] = {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "OpenSlidesWebsocketProtocol",
"description": "The packages that OpenSlides sends between the server and the client.",
"type": "object",
"properties": {
"type": {
"description": "Defines what kind of packages is packed.",
"type": "string",
},
2019-01-06 16:22:33 +01:00
"content": {"description": "The content of the package."},
"id": {"description": "An identifier of the package.", "type": "string"},
2018-10-26 15:37:29 +02:00
"in_response": {
"description": "The id of another package that the other part sent before.",
"type": "string",
},
},
"required": ["type", "content", "id"],
"anyOf": [], # This will be filled in register_client_message()
}
class BaseWebsocketClientMessage:
schema: Dict[str, object] = {}
"""
Optional schema.
If schema is not set, any value in content is accepted.
"""
identifier: str = ""
"""
A unique identifier for the websocket message.
This is used as value in the 'type' property in the websocket message.
"""
content_required = True
"""
Desiedes, if the content property is required.
"""
2019-01-06 16:22:33 +01:00
async def receive_content(
self, consumer: "ProtocollAsyncJsonWebsocketConsumer", message: Any, id: str
) -> None:
raise NotImplementedError(
"WebsocketClientMessage needs the method receive_content()."
)
2018-10-26 15:37:29 +02:00
websocket_client_messages: Dict[str, BaseWebsocketClientMessage] = {}
"""
Saves all websocket client message object ordered by there identifier.
"""
2019-01-06 16:22:33 +01:00
def register_client_message(
websocket_client_message: BaseWebsocketClientMessage
) -> None:
2018-10-26 15:37:29 +02:00
"""
Registers one websocket client message class.
"""
2019-01-06 16:22:33 +01:00
if (
not websocket_client_message.identifier
or websocket_client_message.identifier in websocket_client_messages
):
2018-10-26 15:37:29 +02:00
raise NotImplementedError("WebsocketClientMessage needs a unique identifier.")
2019-01-06 16:22:33 +01:00
websocket_client_messages[
websocket_client_message.identifier
] = websocket_client_message
2018-10-26 15:37:29 +02:00
# Add the message schema to the schema
message_schema: Dict[str, Any] = {
2019-01-06 16:22:33 +01:00
"properties": {
"type": {"const": websocket_client_message.identifier},
"content": websocket_client_message.schema,
2018-10-26 15:37:29 +02:00
}
}
if websocket_client_message.content_required:
2019-01-06 16:22:33 +01:00
message_schema["required"] = ["content"]
2018-10-26 15:37:29 +02:00
2019-01-06 16:22:33 +01:00
schema["anyOf"].append(message_schema)
2018-10-26 15:37:29 +02:00
async def get_element_data(user_id: int, change_id: int = 0) -> AutoupdateFormat:
2018-10-26 15:37:29 +02:00
"""
Returns all element data since a change_id.
"""
current_change_id = await element_cache.get_current_change_id()
if change_id > current_change_id:
raise ValueError("Requested change_id is higher this highest change_id.")
try:
2019-01-06 16:22:33 +01:00
changed_elements, deleted_element_ids = await element_cache.get_restricted_data(
user_id, change_id, current_change_id
)
2018-10-26 15:37:29 +02:00
except RuntimeError:
# The change_id is lower the the lowerst change_id in redis. Return all data
changed_elements = await element_cache.get_all_restricted_data(user_id)
2018-10-26 15:37:29 +02:00
all_data = True
deleted_elements: Dict[str, List[int]] = {}
else:
all_data = False
deleted_elements = defaultdict(list)
for element_id in deleted_element_ids:
collection_string, id = split_element_id(element_id)
deleted_elements[collection_string].append(id)
return AutoupdateFormat(
changed=changed_elements,
deleted=deleted_elements,
from_change_id=change_id,
to_change_id=current_change_id,
2019-01-06 16:22:33 +01:00
all_data=all_data,
)