mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 18:15:28 +03:00
61 lines
2.3 KiB
Python
61 lines
2.3 KiB
Python
from .params.flag.entity import Flag
|
|
from .params.flag.flags_group.entity import FlagsGroup
|
|
from .exceptions import (InvalidCommandInstanceException,
|
|
InvalidDescriptionInstanceException,
|
|
InvalidFlagsInstanceException)
|
|
from .params.flag.input_flag.entity import InputFlag
|
|
|
|
|
|
class Command:
|
|
def __init__(self, command: str,
|
|
description: str | None = None,
|
|
flags: Flag | FlagsGroup | None = None):
|
|
self._command = command
|
|
self._description = description
|
|
self._flags: FlagsGroup | None = flags if isinstance(flags, FlagsGroup) else FlagsGroup([flags]) if isinstance(flags, Flag) else flags
|
|
|
|
self._input_flags: InputFlag | FlagsGroup | None = None
|
|
|
|
def get_string_entity(self):
|
|
return self._command
|
|
|
|
def get_description(self):
|
|
if not self._description:
|
|
description = f'description for "{self._command}" command'
|
|
return description
|
|
else:
|
|
return self._description
|
|
|
|
def get_flags(self):
|
|
return self._flags
|
|
|
|
def set_command(self, command: str):
|
|
self._command = command
|
|
|
|
def validate_commands_params(self):
|
|
if not isinstance(self._command, str):
|
|
raise InvalidCommandInstanceException(self._command)
|
|
if not isinstance(self._description, str):
|
|
raise InvalidDescriptionInstanceException()
|
|
if not any([(isinstance(self._flags, Flag), isinstance(self._flags, FlagsGroup)), not self._flags]):
|
|
raise InvalidFlagsInstanceException
|
|
|
|
def validate_input_flag(self, flag: InputFlag):
|
|
registered_flags: FlagsGroup | Flag | None = self._flags
|
|
if registered_flags:
|
|
if isinstance(registered_flags, Flag):
|
|
if registered_flags.get_string_entity() == flag.get_string_entity():
|
|
is_valid = registered_flags.validate_input_flag_value(flag.get_value())
|
|
if is_valid:
|
|
return True
|
|
else:
|
|
for registered_flag in registered_flags:
|
|
if registered_flag.get_string_entity() == flag.get_string_entity():
|
|
is_valid = registered_flag.validate_input_flag_value(flag.get_value())
|
|
if is_valid:
|
|
return True
|
|
return False
|
|
|
|
|
|
|