|
|
@ -3,6 +3,7 @@ |
|
|
|
from argparse import ArgumentParser, Namespace |
|
|
|
from logging import INFO, basicConfig, getLogger |
|
|
|
from pathlib import Path |
|
|
|
from readline import read_history_file, write_history_file |
|
|
|
from socket import timeout |
|
|
|
from sys import exit # pylint: disable=W0622 |
|
|
|
|
|
|
@ -21,6 +22,7 @@ ERRORS = ( |
|
|
|
(RequestIdMismatch, 'Unexpected request ID mismatch.', 5) |
|
|
|
) |
|
|
|
LOGGER = getLogger('rconshell') |
|
|
|
HIST_FILE = Path.home().joinpath('.rconshell_history') |
|
|
|
|
|
|
|
|
|
|
|
def get_args() -> Namespace: |
|
|
@ -40,6 +42,7 @@ def main(): |
|
|
|
|
|
|
|
args = get_args() |
|
|
|
basicConfig(level=INFO, format=LOG_FORMAT) |
|
|
|
read_history_file(HIST_FILE) |
|
|
|
|
|
|
|
if args.server: |
|
|
|
host, port, passwd = get_credentials(args) |
|
|
@ -49,4 +52,5 @@ def main(): |
|
|
|
with ErrorHandler(ERRORS, LOGGER): |
|
|
|
exit_code = rconcmd(host, port, passwd, prompt=args.prompt) |
|
|
|
|
|
|
|
write_history_file(HIST_FILE) |
|
|
|
exit(exit_code) |
|
|
|