|
|
@ -1,7 +1,6 @@ |
|
|
|
"""An interactive console.""" |
|
|
|
|
|
|
|
from getpass import getpass |
|
|
|
from typing import Union |
|
|
|
|
|
|
|
from rcon.config import Config |
|
|
|
from rcon.exceptions import RequestIdMismatch, WrongPassword |
|
|
@ -12,119 +11,102 @@ __all__ = ['rconcmd'] |
|
|
|
|
|
|
|
|
|
|
|
EXIT_COMMANDS = {'exit', 'quit'} |
|
|
|
MSG_QUERY_LATER = '\nOkay, I will ask again later.' |
|
|
|
MSG_ABORTED = '\nAborted...' |
|
|
|
MSG_LOGIN_ABORTED = '\nLogin aborted. Bye.' |
|
|
|
MSG_EXIT = 'Bye.' |
|
|
|
MSG_EXIT = '\nBye.' |
|
|
|
MSG_SESSION_TIMEOUT = 'Session timed out. Please login again.' |
|
|
|
MSG_EXIT_USAGE = 'Usage: {} [<exit_code>].' |
|
|
|
PROMPT = 'RCON> ' |
|
|
|
|
|
|
|
|
|
|
|
def read(prompt: str, typ: type = None) -> type: |
|
|
|
"""Reads input and converts it to the respective type.""" |
|
|
|
def read_host() -> str: |
|
|
|
"""Reads the host.""" |
|
|
|
|
|
|
|
while True: |
|
|
|
raw = input(prompt) |
|
|
|
|
|
|
|
if typ is not None: |
|
|
|
try: |
|
|
|
return typ(raw) |
|
|
|
except (TypeError, ValueError): |
|
|
|
print(f'Invalid {typ}: {raw}') |
|
|
|
return input('Host: ') |
|
|
|
except KeyboardInterrupt: |
|
|
|
continue |
|
|
|
|
|
|
|
return raw |
|
|
|
|
|
|
|
def read_port() -> int: |
|
|
|
"""Reads the port.""" |
|
|
|
|
|
|
|
def read_or_none(prompt: str, typ: type = None) -> type: |
|
|
|
"""Reads the input and returns None on EOFError.""" |
|
|
|
while True: |
|
|
|
try: |
|
|
|
port = input('Port: ') |
|
|
|
except KeyboardInterrupt: |
|
|
|
continue |
|
|
|
|
|
|
|
try: |
|
|
|
return read(prompt, typ=typ) |
|
|
|
except EOFError: |
|
|
|
print(MSG_QUERY_LATER) |
|
|
|
return None |
|
|
|
port = int(port) |
|
|
|
except KeyboardInterrupt: |
|
|
|
print(f'Invalid integer: {port}') |
|
|
|
continue |
|
|
|
|
|
|
|
if 0 <= port <= 65535: |
|
|
|
return port |
|
|
|
|
|
|
|
def login(client: Client, passwd: str) -> str: |
|
|
|
"""Performs a login.""" |
|
|
|
print(f'Invalid port: {port}') |
|
|
|
continue |
|
|
|
|
|
|
|
if passwd is None: |
|
|
|
passwd = getpass('Password: ') |
|
|
|
|
|
|
|
logged_in = False |
|
|
|
def read_passwd() -> str: |
|
|
|
"""Reads the password.""" |
|
|
|
|
|
|
|
while not logged_in: |
|
|
|
while True: |
|
|
|
try: |
|
|
|
logged_in = client.login(passwd) |
|
|
|
except WrongPassword: |
|
|
|
print('Invalid password.') |
|
|
|
passwd = getpass('Password: ') |
|
|
|
|
|
|
|
return passwd |
|
|
|
return getpass('Password: ') |
|
|
|
except KeyboardInterrupt: |
|
|
|
continue |
|
|
|
|
|
|
|
|
|
|
|
def get_config(host: str, port: int, passwd: str) -> Config: |
|
|
|
"""Reads the necessary arguments.""" |
|
|
|
|
|
|
|
while any(item is None for item in (host, port, passwd)): |
|
|
|
if host is None: |
|
|
|
host = read_or_none('Host: ') |
|
|
|
host = read_host() |
|
|
|
|
|
|
|
if port is None: |
|
|
|
port = read_or_none('Port: ', typ=int) |
|
|
|
port = read_port() |
|
|
|
|
|
|
|
if passwd is None: |
|
|
|
passwd = getpass('Password: ') |
|
|
|
passwd = read_passwd() |
|
|
|
|
|
|
|
return Config(host, port, passwd) |
|
|
|
|
|
|
|
|
|
|
|
def exit(exit_code: Union[int, str] = 0) -> int: # pylint: disable=W0622 |
|
|
|
"""Exits the interactive shell via exit command.""" |
|
|
|
|
|
|
|
print(MSG_EXIT) |
|
|
|
return int(exit_code) |
|
|
|
def login(client: Client, passwd: str) -> str: |
|
|
|
"""Performs a login.""" |
|
|
|
|
|
|
|
while True: |
|
|
|
try: |
|
|
|
client.login(passwd) |
|
|
|
except WrongPassword: |
|
|
|
print('Invalid password.') |
|
|
|
passwd = read_passwd() |
|
|
|
continue |
|
|
|
|
|
|
|
def rconcmd(host: str, port: int, passwd: str, *, prompt: str = PROMPT) -> int: |
|
|
|
"""Initializes the console.""" |
|
|
|
return passwd |
|
|
|
|
|
|
|
try: |
|
|
|
config = get_config(host, port, passwd) |
|
|
|
except KeyboardInterrupt: |
|
|
|
print(MSG_ABORTED) |
|
|
|
return 1 |
|
|
|
|
|
|
|
with Client(config.host, config.port) as client: |
|
|
|
try: |
|
|
|
passwd = login(client, config.passwd) |
|
|
|
except (EOFError, KeyboardInterrupt): |
|
|
|
print(MSG_LOGIN_ABORTED) |
|
|
|
return 1 |
|
|
|
def process_input(client: Client, passwd: str, prompt: str) -> bool: |
|
|
|
"""Processes the CLI input.""" |
|
|
|
|
|
|
|
while True: |
|
|
|
try: |
|
|
|
command = input(prompt) |
|
|
|
except EOFError: |
|
|
|
print(f'\n{MSG_EXIT}') |
|
|
|
break |
|
|
|
except KeyboardInterrupt: |
|
|
|
print() |
|
|
|
continue |
|
|
|
return True |
|
|
|
except EOFError: |
|
|
|
print(MSG_EXIT) |
|
|
|
return False |
|
|
|
|
|
|
|
try: |
|
|
|
command, *args = command.split() |
|
|
|
except ValueError: |
|
|
|
continue |
|
|
|
return True |
|
|
|
|
|
|
|
if command in EXIT_COMMANDS: |
|
|
|
try: |
|
|
|
return exit(*args) # pylint: disable=R1722 |
|
|
|
except (TypeError, ValueError): |
|
|
|
print(MSG_EXIT_USAGE.format(command)) |
|
|
|
continue |
|
|
|
return False |
|
|
|
|
|
|
|
try: |
|
|
|
result = client.run(command, *args) |
|
|
@ -133,10 +115,29 @@ def rconcmd(host: str, port: int, passwd: str, *, prompt: str = PROMPT) -> int: |
|
|
|
|
|
|
|
try: |
|
|
|
passwd = login(client, passwd) |
|
|
|
except (EOFError, KeyboardInterrupt): |
|
|
|
except EOFError: |
|
|
|
print(MSG_LOGIN_ABORTED) |
|
|
|
return 2 |
|
|
|
return False |
|
|
|
|
|
|
|
print(result) |
|
|
|
return True |
|
|
|
|
|
|
|
|
|
|
|
def rconcmd(host: str, port: int, passwd: str, *, prompt: str = PROMPT): |
|
|
|
"""Initializes the console.""" |
|
|
|
|
|
|
|
try: |
|
|
|
host, port, passwd = get_config(host, port, passwd) |
|
|
|
except EOFError: |
|
|
|
print(MSG_EXIT) |
|
|
|
return |
|
|
|
|
|
|
|
with Client(host, port) as client: |
|
|
|
try: |
|
|
|
passwd = login(client, passwd) |
|
|
|
except EOFError: |
|
|
|
print(MSG_LOGIN_ABORTED) |
|
|
|
return |
|
|
|
|
|
|
|
return 0 |
|
|
|
while process_input(client, passwd, prompt): |
|
|
|
pass |
|
|
|