mirror of
https://github.com/agessaman/meshcore-bot.git
synced 2026-06-03 22:31:18 +00:00
23da88c37d
Move models.py, db_manager.py, db_migrations.py, and security_utils.py from modules/ to a new shared/ top-level package that can be imported by both the bot and the web viewer without coupling them. Update all imports across ~75 files (commands, service plugins, tests, web viewer, generate_website.py). No logic changes — pure file moves and import path updates. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
74 lines
2.3 KiB
Python
74 lines
2.3 KiB
Python
#!/usr/bin/env python3
|
|
"""
|
|
Status command
|
|
DM-only admin command that reports bot runtime status in a single response.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from datetime import datetime, timezone
|
|
from typing import Any
|
|
|
|
from shared.models import MeshMessage
|
|
from .base_command import BaseCommand
|
|
|
|
|
|
class StatusCommand(BaseCommand):
|
|
"""Report high-level runtime status for operators."""
|
|
|
|
name = "status"
|
|
keywords = ["status"]
|
|
description = "Show runtime status (DM only, admin only)"
|
|
requires_dm = True
|
|
cooldown_seconds = 2
|
|
category = "admin"
|
|
|
|
short_description = "Show runtime status for operators"
|
|
usage = "status"
|
|
examples = ["status", "!status"]
|
|
parameters: list[dict[str, str]] = []
|
|
|
|
def __init__(self, bot: Any):
|
|
super().__init__(bot)
|
|
self.status_enabled = self.get_config_value(
|
|
"Status_Command",
|
|
"enabled",
|
|
fallback=True,
|
|
value_type="bool",
|
|
)
|
|
|
|
def can_execute(self, message: MeshMessage, skip_channel_check: bool = False) -> bool:
|
|
if not self.status_enabled:
|
|
return False
|
|
if not self.requires_admin_access():
|
|
return False
|
|
return super().can_execute(message, skip_channel_check=skip_channel_check)
|
|
|
|
def requires_admin_access(self) -> bool:
|
|
return True
|
|
|
|
async def execute(self, message: MeshMessage) -> bool:
|
|
now = datetime.now(timezone.utc).strftime("%Y-%m-%d %H:%M:%S UTC")
|
|
connected = bool(getattr(self.bot, "connected", False))
|
|
radio_zombie = bool(getattr(self.bot, "is_radio_zombie", False))
|
|
radio_offline = bool(getattr(self.bot, "is_radio_offline", False))
|
|
|
|
web_running = False
|
|
integration = getattr(self.bot, "web_viewer_integration", None)
|
|
if integration is not None:
|
|
web_running = bool(getattr(integration, "running", False))
|
|
|
|
paused = not bool(getattr(self.bot, "channel_responses_enabled", True))
|
|
|
|
status_text = (
|
|
"Bot Status\n"
|
|
f"- time: {now}\n"
|
|
f"- connected: {connected}\n"
|
|
f"- radio_zombie: {radio_zombie}\n"
|
|
f"- radio_offline: {radio_offline}\n"
|
|
f"- channel_responses_paused: {paused}\n"
|
|
f"- web_viewer_running: {web_running}"
|
|
)
|
|
await self.send_response(message, status_text)
|
|
return True
|