"""An interactive console.""" from getpass import getpass from typing import Type from rcon.client import BaseClient from rcon.config import Config from rcon.exceptions import EmptyResponse, SessionTimeout, WrongPassword __all__ = ["PROMPT", "rconcmd"] EXIT_COMMANDS = {"exit", "quit"} MSG_LOGIN_ABORTED = "\nLogin aborted. Bye." MSG_EXIT = "\nBye." MSG_SERVER_GONE = "Server has gone away." MSG_SESSION_TIMEOUT = "Session timed out. Please login again." PROMPT = "RCON {host}:{port}> " VALID_PORTS = range(0, 65536) def read_host() -> str: """Read the host.""" while True: try: return input("Host: ") except KeyboardInterrupt: print() continue def read_port() -> int: """Read the port.""" while True: try: port = input("Port: ") except KeyboardInterrupt: print() continue try: port = int(port) except ValueError: print(f"Invalid integer: {port}") continue if port in VALID_PORTS: return port print(f"Invalid port: {port}") def read_passwd() -> str: """Read the password.""" while True: try: return getpass("Password: ") except KeyboardInterrupt: print() def get_config(host: str, port: int, passwd: str) -> Config: """Read the necessary arguments.""" if host is None: host = read_host() if port is None: port = read_port() if passwd is None: passwd = read_passwd() return Config(host, port, passwd) def login(client: BaseClient, passwd: str) -> str: """Perform a login.""" while True: try: client.login(passwd) except WrongPassword: print("Wrong password.") passwd = read_passwd() continue return passwd def process_input(client: BaseClient, passwd: str, prompt: str) -> bool: """Process the CLI input.""" try: command = input(prompt) except KeyboardInterrupt: print() return True except EOFError: print(MSG_EXIT) return False try: command, *args = command.split() except ValueError: return True if command in EXIT_COMMANDS: return False try: result = client.run(command, *args) except EmptyResponse: print(MSG_SERVER_GONE) return False except SessionTimeout: print(MSG_SESSION_TIMEOUT) try: login(client, passwd) except EOFError: print(MSG_LOGIN_ABORTED) return False return True if result: print(result) return True def rconcmd( client_cls: Type[BaseClient], host: str, port: int, passwd: str, *, timeout: float | None = None, prompt: str = PROMPT, ): """Initialize the console.""" try: host, port, passwd = get_config(host, port, passwd) except EOFError: print(MSG_EXIT) return prompt = prompt.format(host=host, port=port) with client_cls(host, port, timeout=timeout) as client: try: passwd = login(client, passwd) except EOFError: print(MSG_LOGIN_ABORTED) return while True: if not process_input(client, passwd, prompt): break