import asyncio import json import logging import time from typing import Any import websockets from utils import User, Users, Votes logging.basicConfig(level=logging.DEBUG) PASSWORD_ADMIN: str = "password" PASSWORD_EMU: str = "password" VOTES: Votes = Votes() USERS: Users = Users() async def parse_message(user: User, msg: dict[str, str]): """Parse the `user`'s `msg`. Args: user (User): the sender of the message. msg (dict[str, str]): the data received (through the websocket). """ if "auth" in msg: data = msg["auth"] if USERS.emulator is None and data == PASSWORD_EMU: USERS.emulator = user logging.debug(f"emulator authenticated: {user}") elif USERS.admin is None and data == PASSWORD_ADMIN: USERS.admin = user logging.debug(f"admin authenticated: {user}") if "action" in msg: data = msg["action"] if data in VOTES: VOTES[data] += 1 user.last_message = time.time() user.has_voted = True else: logging.error(f"unsupported action: {data}") if "admin" in msg: data = msg["admin"] if USERS.emulator is not None and user == USERS.admin: if data == "save": await USERS.emulator.send('{"admin":"save"}') elif data == "load": await USERS.emulator.send('{"admin":"load"}') else: logging.error(f"unsupported admin action: {data}") else: logging.error(f"user is not admin: {user}") if "emu" in msg: data = msg["emu"] if user == USERS.emulator: if data == "get": await USERS.emulator.send(f'{{"action":"{VOTES.next_vote()}"}}') VOTES.clear() USERS.clear() else: logging.error(f"unsupported emulator action: {data}") else: logging.error(f"user is not emulator: {user}") async def handler(websocket: Any, path: str): """Handle the messages sent by a user. Args: websocket (Any): the websocket used by the user. path (str): the path used by the websocket. (?) """ try: # Register user user = User(websocket) USERS.register(user) # Manage received messages async for json_message in websocket: message: dict[str, str] = json.loads(json_message) await parse_message(user, message) finally: # Unregister user USERS.unregister(user) async def main(): """Start the websocket server.""" async with websockets.serve(handler, "localhost", 6789): await asyncio.Future() # run forever if __name__ == "__main__": asyncio.run(main())