This commit is contained in:
2025-02-09 02:37:44 +03:00
parent 213525915d
commit 8a3f742636
6 changed files with 184 additions and 58 deletions
+71 -22
View File
@@ -1,36 +1,38 @@
from typing import Callable, Any
from ..router.exceptions import (InvalidCommandInstanceException,
UnknownCommandHandlerHasAlreadyBeenCreatedException,
InvalidDescriptionInstanceException)
InvalidDescriptionInstanceException,
RepeatedCommandException)
class Router:
def __init__(self,
name: str,
title: str = 'Commands group title:',
name: str = 'subordinate',
ignore_command_register: bool = False):
self.ignore_command_register = ignore_command_register
self.title = title
self.name = name
self._processed_commands: list[dict[str, Callable[[], None] | str]] = []
self._command_entities: list[dict[str, Callable[[], None] | str]] = []
self.unknown_command_func: Callable[[str], None] | None = None
self._is_main_router: bool = False
def command(self, command: str, description: str) -> Callable[[Any], Any]:
if not isinstance(command, str):
raise InvalidCommandInstanceException()
if not isinstance(description, str):
raise InvalidDescriptionInstanceException()
else:
def command_decorator(func):
self._processed_commands.append({'func': func,
'command': command,
'description': description})
def wrapper(*args, **kwargs):
return func(*args, **kwargs)
return wrapper
return command_decorator
def command(self, command: str, description: str = None) -> Callable[[Any], Any]:
processed_description = Router._validate_description(command, description)
self._validate_command(command)
def command_decorator(func):
self._command_entities.append({'handler_func': func,
'command': command,
'description': processed_description})
def wrapper(*args, **kwargs):
return func(*args, **kwargs)
return wrapper
return command_decorator
def unknown_command(self, func):
@@ -45,27 +47,74 @@ class Router:
def input_command_handler(self, input_command):
for command_entity in self._processed_commands:
for command_entity in self._command_entities:
if input_command.lower() == command_entity['command'].lower():
if self.ignore_command_register:
return command_entity['func']()
return command_entity['handler_func']()
else:
if input_command == command_entity['command']:
return command_entity['func']()
return command_entity['handler_func']()
def unknown_command_handler(self, unknown_command):
self.unknown_command_func(unknown_command)
def _validate_command(self, command: str):
if not isinstance(command, str):
raise InvalidCommandInstanceException()
if command in self.get_all_commands():
raise RepeatedCommandException()
if self.ignore_command_register:
if command.lower() in [x.lower() for x in self.get_all_commands()]:
raise RepeatedCommandException()
@staticmethod
def _validate_description(command: str, description: str):
if not isinstance(description, str):
if description is None:
description = f'description for "{command}" command'
else:
raise InvalidDescriptionInstanceException()
return description
def set_router_as_main(self):
if self.name == 'subordinate':
self.name = 'main'
self._is_main_router = True
def get_registered_commands(self) -> list[dict[str, Callable[[], None] | str]]:
return self._processed_commands
def get_command_entities(self) -> list[dict[str, Callable[[], None] | str]]:
return self._command_entities
def get_name(self) -> str:
return self.name
def get_title(self) -> str:
return self.title
def get_router_info(self) -> dict:
return {
'title': self.title,
'name': self.name,
'ignore_command_register': self.ignore_command_register,
'attributes': {
'command_entities': self._command_entities,
'unknown_command_func': self.unknown_command_func,
'is_main_router': self._is_main_router
}
}
def get_all_commands(self) -> list[str]:
all_commands: list[str] = []
for command_entity in self._command_entities:
all_commands.append(command_entity['command'])
return all_commands
+5
View File
@@ -11,3 +11,8 @@ class InvalidDescriptionInstanceException(Exception):
class UnknownCommandHandlerHasAlreadyBeenCreatedException(Exception):
def __str__(self):
return "Only one unknown command handler can be declared"
class RepeatedCommandException(Exception):
def __str__(self):
return "Commands in handler cannot be repeated"