Browse Source

Re-added custom exceptions.

pull/2/head
Richard Neumann 4 years ago
parent
commit
104d2de642
  1. 3
      rcon/__init__.py
  2. 5
      rcon/asyncio.py
  3. 7
      rcon/console.py
  4. 10
      rcon/errorhandler.py
  5. 17
      rcon/exceptions.py
  6. 9
      rcon/gui.py
  7. 6
      rcon/proto.py

3
rcon/__init__.py

@ -1,7 +1,8 @@
"""RCON client library.""" """RCON client library."""
from rcon.asyncio import rcon from rcon.asyncio import rcon
from rcon.exceptions import RequestIdMismatch, WrongPassword
from rcon.proto import Client from rcon.proto import Client
__all__ = ['Client', 'rcon'] __all__ = ['RequestIdMismatch', 'WrongPassword', 'Client', 'rcon']

5
rcon/asyncio.py

@ -3,6 +3,7 @@
from asyncio import open_connection from asyncio import open_connection
from typing import IO from typing import IO
from rcon.exceptions import RequestIdMismatch, WrongPassword
from rcon.proto import Packet from rcon.proto import Packet
@ -26,12 +27,12 @@ async def rcon(command: str, *arguments: str, host: str, port: int,
response = await communicate(reader, writer, login) response = await communicate(reader, writer, login)
if response.id == -1: if response.id == -1:
raise RuntimeError('Wrong password.') raise WrongPassword()
request = Packet.make_command(command, *arguments) request = Packet.make_command(command, *arguments)
response = await communicate(reader, writer, request) response = await communicate(reader, writer, request)
if response.id != request.id: if response.id != request.id:
raise RuntimeError('Request ID mismatch.') raise RequestIdMismatch(request.id, response.id)
return response.payload return response.payload

7
rcon/console.py

@ -3,6 +3,7 @@
from getpass import getpass from getpass import getpass
from rcon.config import Config from rcon.config import Config
from rcon.exceptions import RequestIdMismatch, WrongPassword
from rcon.proto import Client from rcon.proto import Client
@ -80,8 +81,8 @@ def login(client: Client, passwd: str) -> str:
while True: while True:
try: try:
client.login(passwd) client.login(passwd)
except RuntimeError as error: except WrongPassword:
print(error) print('Wrong password.')
passwd = read_passwd() passwd = read_passwd()
continue continue
@ -110,7 +111,7 @@ def process_input(client: Client, passwd: str, prompt: str) -> bool:
try: try:
result = client.run(command, *args) result = client.run(command, *args)
except RuntimeError: except RequestIdMismatch:
print(MSG_SESSION_TIMEOUT) print(MSG_SESSION_TIMEOUT)
try: try:

10
rcon/errorhandler.py

@ -4,6 +4,8 @@ from logging import Logger
from socket import timeout from socket import timeout
from sys import exit # pylint: disable=W0622 from sys import exit # pylint: disable=W0622
from rcon.exceptions import RequestIdMismatch, WrongPassword
__all__ = ['ErrorHandler'] __all__ = ['ErrorHandler']
@ -30,6 +32,10 @@ class ErrorHandler:
self.logger.error('Connection timed out.') self.logger.error('Connection timed out.')
exit(4) exit(4)
if isinstance(value, RuntimeError): if isinstance(value, WrongPassword):
self.logger.error(str(value)) self.logger.error('Wrong password.')
exit(5)
if isinstance(value, RequestIdMismatch):
self.logger.error('Session timed out.')
exit(5) exit(5)

17
rcon/exceptions.py

@ -0,0 +1,17 @@
"""RCON exceptions."""
__all__ = ['RequestIdMismatch', 'WrongPassword']
class RequestIdMismatch(Exception):
"""Indicates a mismatch in request IDs."""
def __init__(self, sent: int, received: int):
"""Sets the sent and received IDs."""
super().__init__()
self.sent = sent
self.received = received
class WrongPassword(Exception):
"""Indicates a wrong password."""

9
rcon/gui.py

@ -14,6 +14,7 @@ require_version('Gtk', '3.0')
from gi.repository import Gtk from gi.repository import Gtk
from rcon.config import LOG_FORMAT from rcon.config import LOG_FORMAT
from rcon.exceptions import RequestIdMismatch, WrongPassword
from rcon.proto import Client from rcon.proto import Client
@ -207,8 +208,12 @@ class GUI(Gtk.Window): # pylint: disable=R0902
self.show_error('Connection refused.') self.show_error('Connection refused.')
except (TimeoutError, timeout): except (TimeoutError, timeout):
self.show_error('Connection timed out.') self.show_error('Connection timed out.')
except RuntimeError as error: except WrongPassword:
self.show_error(str(error)) self.show_error('Wrong password.')
except RequestIdMismatch as mismatch:
self.show_error(
'Request ID mismatch.\n'
f'Expected {mismatch.sent}, but got {mismatch.received}.')
else: else:
self.result_text = result self.result_text = result

6
rcon/proto.py

@ -7,6 +7,8 @@ from random import randint
from socket import SOCK_STREAM, socket from socket import SOCK_STREAM, socket
from typing import IO, NamedTuple, Optional from typing import IO, NamedTuple, Optional
from rcon.exceptions import RequestIdMismatch, WrongPassword
__all__ = [ __all__ = [
'LittleEndianSignedInt32', 'LittleEndianSignedInt32',
@ -200,7 +202,7 @@ class Client:
response = self.communicate(Packet.make_login(passwd)) response = self.communicate(Packet.make_login(passwd))
if response.id == -1: if response.id == -1:
raise RuntimeError('Wrong password.') raise WrongPassword()
return True return True
@ -213,6 +215,6 @@ class Client:
if self.passwd is not None and self.login(self.passwd): if self.passwd is not None and self.login(self.passwd):
return self.run(command, *arguments) return self.run(command, *arguments)
raise RuntimeError('Request ID mismatch.') raise RequestIdMismatch(request.id, response.id)
return response if raw else response.payload return response if raw else response.payload

Loading…
Cancel
Save