feat: Add command enable/disable configuration for various commands

- Implemented a configuration option for enabling or disabling commands across multiple command classes.
- Each command now checks its enabled state before execution, improving control over command availability.
- Updated the configuration loading mechanism to retrieve the enabled state from the config file for commands like Advert, AQI, Catfact, and others.
This commit is contained in:
agessaman
2026-01-10 09:33:15 -08:00
parent 7ee77c16c0
commit cc3fffeb54
25 changed files with 417 additions and 10 deletions
+22
View File
@@ -25,6 +25,28 @@ class HelpCommand(BaseCommand):
description = "Shows commands. Use 'help <command>' for details."
category = "basic"
def __init__(self, bot):
"""Initialize the help command.
Args:
bot: The bot instance.
"""
super().__init__(bot)
self.help_enabled = self.get_config_value('Help_Command', 'enabled', fallback=True, value_type='bool')
def can_execute(self, message: MeshMessage) -> bool:
"""Check if this command can be executed with the given message.
Args:
message: The message triggering the command.
Returns:
bool: True if command is enabled and checks pass, False otherwise.
"""
if not self.help_enabled:
return False
return super().can_execute(message)
def get_help_text(self) -> str:
"""Get help text for the help command.