Spaces:
Sleeping
Sleeping
File size: 5,905 Bytes
2415446 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 | """Command handlers for messaging platform commands (/stop, /stats, /clear).
Commands depend on MessagingCommandContext instead of the concrete workflow.
"""
from loguru import logger
from .command_context import MessagingCommandContext
from .models import IncomingMessage
async def _send_stop_feedback(
handler: MessagingCommandContext,
incoming: IncomingMessage,
suffix: str,
) -> None:
"""Send stop feedback only when no existing status can represent the result."""
msg_id = await handler.outbound.queue_send_message(
incoming.chat_id,
handler.format_status("⏹", "Stopped.", suffix),
fire_and_forget=False,
message_thread_id=incoming.message_thread_id,
)
handler.record_outgoing_message(
incoming.platform, incoming.chat_id, msg_id, "command"
)
async def handle_stop_command(
handler: MessagingCommandContext, incoming: IncomingMessage
) -> None:
"""Handle /stop command from messaging platform."""
# Reply-scoped stop: reply "/stop" to stop only that task.
if incoming.is_reply() and incoming.reply_to_message_id:
outcome = await handler.stop_reply(
incoming.scope,
incoming.reply_to_message_id,
)
if outcome.cancelled_count == 0:
await _send_stop_feedback(
handler,
incoming,
"Nothing to stop for that message.",
)
return
if outcome.requires_confirmation(incoming.scope):
noun = "request" if outcome.cancelled_count == 1 else "requests"
await _send_stop_feedback(
handler,
incoming,
f"Cancelled {outcome.cancelled_count} {noun}.",
)
return
# Global stop: legacy behavior (stop everything)
outcome = await handler.stop_all_tasks()
if outcome.cancelled_count == 0:
await _send_stop_feedback(handler, incoming, "Nothing to stop.")
elif outcome.requires_confirmation(incoming.scope):
noun = "request" if outcome.cancelled_count == 1 else "requests"
await _send_stop_feedback(
handler,
incoming,
f"Cancelled {outcome.cancelled_count} pending or active {noun}.",
)
async def handle_stats_command(
handler: MessagingCommandContext, incoming: IncomingMessage
) -> None:
"""Handle /stats command."""
stats = handler.cli_manager.get_stats()
tree_count = handler.get_tree_count()
ctx = handler.get_render_ctx()
msg_id = await handler.outbound.queue_send_message(
incoming.chat_id,
"📊 "
+ ctx.bold("Stats")
+ "\n"
+ ctx.escape_text(f"• Active CLI: {stats['active_sessions']}")
+ "\n"
+ ctx.escape_text(f"• Message Trees: {tree_count}"),
fire_and_forget=False,
message_thread_id=incoming.message_thread_id,
)
handler.record_outgoing_message(
incoming.platform, incoming.chat_id, msg_id, "command"
)
async def _delete_message_ids(
handler: MessagingCommandContext, chat_id: str, msg_ids: set[str]
) -> None:
"""Best-effort delete messages by ID. Sorts numeric IDs descending."""
if not msg_ids:
return
def _as_int(s: str) -> int | None:
try:
return int(str(s))
except Exception:
return None
numeric: list[tuple[int, str]] = []
non_numeric: list[str] = []
for mid in msg_ids:
n = _as_int(mid)
if n is None:
non_numeric.append(mid)
else:
numeric.append((n, mid))
numeric.sort(reverse=True)
non_numeric.sort(reverse=True)
ordered = [mid for _, mid in numeric] + non_numeric
failed = 0
try:
await handler.outbound.queue_delete_messages(
chat_id,
ordered,
fire_and_forget=False,
)
except Exception as e:
failed = len(ordered)
logger.debug("Message delete failed for chat {}: {}", chat_id, type(e).__name__)
if ordered:
logger.info(
"Clear delete attempted={} failed={}",
len(ordered),
failed,
)
async def handle_clear_command(
handler: MessagingCommandContext, incoming: IncomingMessage
) -> None:
"""
Handle /clear command.
Reply-scoped: delete the selected message and its literal reply subtree.
Standalone: reset and delete the invoking chat's managed conversation.
"""
if incoming.is_reply() and incoming.reply_to_message_id:
result = await handler.clear_reply(
incoming.scope,
incoming.reply_to_message_id,
)
if result is None:
msg_id = await handler.outbound.queue_send_message(
incoming.chat_id,
handler.format_status(
"🗑", "Cleared.", "Nothing to clear for that message."
),
fire_and_forget=False,
message_thread_id=incoming.message_thread_id,
)
handler.record_outgoing_message(
incoming.platform, incoming.chat_id, msg_id, "command"
)
return
delete_message_ids = set(result.delete_message_ids)
if incoming.message_id is not None:
delete_message_ids.add(str(incoming.message_id))
await _delete_message_ids(handler, incoming.chat_id, delete_message_ids)
handler.forget_tracked_message_ids(
incoming.platform,
incoming.chat_id,
delete_message_ids,
)
return
msg_ids = set(await handler.clear_chat(incoming.platform, incoming.chat_id))
# Also delete the command message itself.
if incoming.message_id is not None:
msg_ids.add(str(incoming.message_id))
await _delete_message_ids(handler, incoming.chat_id, msg_ids)
|