Browse Source

Improved command handling.

pull/2/head 1.0.10
Richard Neumann 4 years ago
parent
commit
019caa2042
  1. 15
      rcon/gui.py

15
rcon/gui.py

@ -5,14 +5,14 @@ from logging import basicConfig, getLogger
from os import getenv, name from os import getenv, name
from pathlib import Path from pathlib import Path
from socket import timeout from socket import timeout
from typing import NamedTuple from typing import Iterable, NamedTuple
from gi import require_version from gi import require_version
require_version('Gtk', '3.0') require_version('Gtk', '3.0')
# pylint: disable=C0413 # pylint: disable=C0413
from gi.repository import Gtk from gi.repository import Gtk
from rcon.config import LOG_FORMAT, LOGGER from rcon.config import LOG_FORMAT
from rcon.exceptions import RequestIdMismatch, WrongPassword from rcon.exceptions import RequestIdMismatch, WrongPassword
from rcon.proto import Client from rcon.proto import Client
@ -38,7 +38,7 @@ class RCONParams(NamedTuple):
host: str host: str
port: int port: int
passwd: str passwd: str
command: str command: Iterable[str]
class GUI(Gtk.Window): # pylint: disable=R0902 class GUI(Gtk.Window): # pylint: disable=R0902
@ -163,9 +163,6 @@ class GUI(Gtk.Window): # pylint: disable=R0902
if not (port := self.port.get_text().strip()): if not (port := self.port.get_text().strip()):
raise ValueError('No port specified.') raise ValueError('No port specified.')
if not (command := self.command.get_text().strip()):
raise ValueError('No command entered.')
try: try:
port = int(port) port = int(port)
except ValueError: except ValueError:
@ -174,6 +171,10 @@ class GUI(Gtk.Window): # pylint: disable=R0902
if not 0 <= port <= 65535: if not 0 <= port <= 65535:
raise ValueError('Invalid port specified.') raise ValueError('Invalid port specified.')
if not (command := self.command.get_text().strip()):
raise ValueError('No command entered.')
command = tuple(filter(None, command.split()))
return RCONParams(host, port, self.passwd.get_text(), command) return RCONParams(host, port, self.passwd.get_text(), command)
def run_rcon(self) -> str: def run_rcon(self) -> str:
@ -181,7 +182,7 @@ class GUI(Gtk.Window): # pylint: disable=R0902
params = self.get_rcon_params() params = self.get_rcon_params()
with Client(params.host, params.port, passwd=params.passwd) as client: with Client(params.host, params.port, passwd=params.passwd) as client:
return client.run(params.command) return client.run(*params.command)
def on_button_clicked(self, _): def on_button_clicked(self, _):
"""Runs the client.""" """Runs the client."""

Loading…
Cancel
Save