| Total Complexity | 8 |
| Total Lines | 48 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | import json |
||
| 2 | |||
| 3 | import aiohttp |
||
| 4 | from aiohttp import web, web_ws |
||
| 5 | |||
| 6 | from .base import BaseJsonRpcServer |
||
| 7 | |||
| 8 | |||
| 9 | __all__ = ( |
||
| 10 | 'WsJsonRpcServer', |
||
| 11 | ) |
||
| 12 | |||
| 13 | |||
| 14 | class WsJsonRpcServer(BaseJsonRpcServer): |
||
| 15 | async def handle_http_request(self, http_request: web.Request) -> web.StreamResponse: |
||
| 16 | if http_request.method == 'GET' and http_request.headers.get('upgrade', '').lower() == 'websocket': |
||
| 17 | return await self.handle_websocket_request(http_request) |
||
| 18 | else: |
||
| 19 | return web.HTTPMethodNotAllowed(method=http_request.method, allowed_methods=('POST',)) |
||
| 20 | |||
| 21 | async def handle_websocket_request(self, http_request: web.Request) -> web_ws.WebSocketResponse: |
||
| 22 | http_request.msg_id = 0 |
||
| 23 | http_request.pending = {} |
||
| 24 | |||
| 25 | ws = web_ws.WebSocketResponse() |
||
| 26 | await ws.prepare(http_request) |
||
| 27 | http_request.ws = ws |
||
| 28 | |||
| 29 | while not ws.closed: |
||
| 30 | ws_msg = await ws.receive() |
||
| 31 | |||
| 32 | if ws_msg.type != aiohttp.WSMsgType.TEXT: |
||
| 33 | continue |
||
| 34 | |||
| 35 | await self._handle_ws_msg(http_request, ws_msg) |
||
| 36 | |||
| 37 | return ws |
||
| 38 | |||
| 39 | async def _handle_ws_msg(self, http_request: web.Request, ws_msg: web_ws.WSMessage) -> None: |
||
| 40 | input_data = json.loads(ws_msg.data) |
||
| 41 | output_data = await self._process_input_data(input_data, http_request=http_request) |
||
| 42 | |||
| 43 | if http_request.ws._writer.transport.is_closing(): |
||
| 44 | self.clients.remove(http_request) |
||
| 45 | await http_request.ws.close() |
||
| 46 | |||
| 47 | await http_request.ws.send_str(self.json_serialize(output_data)) |
||
| 48 |