Spaces:
Paused
Paused
File size: 19,108 Bytes
12749d0 | 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 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 | import json
import os
import threading
import time
import uuid
from contextlib import asynccontextmanager, suppress
from aiogram import Bot
from aiogram.client.default import DefaultBotProperties
from aiogram.enums import ParseMode
from aiogram.types import Message as TgMessage, CallbackQuery
from agent import AgentContext, UserMessage
from helpers import plugins, files, projects
from helpers import message_queue as mq
from helpers.notification import NotificationManager, NotificationType, NotificationPriority
from helpers.persist_chat import save_tmp_chat
from helpers.print_style import PrintStyle
from helpers.errors import format_error
from initialize import initialize_agent
from plugins._telegram_integration.helpers import telegram_client as tc
from plugins._telegram_integration.helpers.bot_manager import get_bot
from plugins._telegram_integration.helpers.constants import (
PLUGIN_NAME,
DOWNLOAD_FOLDER,
STATE_FILE,
CTX_TG_BOT,
CTX_TG_BOT_CFG,
CTX_TG_CHAT_ID,
CTX_TG_USER_ID,
CTX_TG_USERNAME,
CTX_TG_TYPING_STOP,
CTX_TG_REPLY_TO,
CTX_TG_ATTACHMENTS,
CTX_TG_KEYBOARD,
)
# Chat mapping: (bot_name, tg_user_id) → AgentContext ID
_chat_map_lock = threading.Lock()
def _load_state() -> dict:
path = files.get_abs_path(STATE_FILE)
if os.path.isfile(path):
try:
return json.loads(files.read_file(path))
except Exception:
return {}
return {}
def _save_state(state: dict):
path = files.get_abs_path(STATE_FILE)
files.make_dirs(path)
files.write_file(path, json.dumps(state))
def _map_key(bot_name: str, user_id: int, chat_id: int) -> str:
return f"{bot_name}:{user_id}:{chat_id}"
def cleanup_old_attachments():
"""Remove downloaded attachment files older than per-bot max age. 0 = keep forever."""
config = plugins.get_plugin_config(PLUGIN_NAME) or {}
bots_cfg = config.get("bots") or []
total_removed = 0
upload_dir = files.get_abs_path(DOWNLOAD_FOLDER)
if not os.path.isdir(upload_dir):
return
for bot_cfg in bots_cfg:
bot_name = bot_cfg.get("name", "")
if not bot_name:
continue
max_age_hours = bot_cfg.get("attachment_max_age_hours", 0)
if not max_age_hours or max_age_hours <= 0:
continue
prefix = f"tg_{bot_name}_"
cutoff = time.time() - max_age_hours * 3600
for name in os.listdir(upload_dir):
if not name.startswith(prefix):
continue
path = os.path.join(upload_dir, name)
try:
if os.path.isfile(path) and os.path.getmtime(path) < cutoff:
os.remove(path)
total_removed += 1
except OSError:
pass
if total_removed:
PrintStyle.info(f"Telegram: cleaned up {total_removed} old attachment(s)")
# Access control
def _is_allowed(bot_cfg: dict, user_id: int, username: str | None) -> bool:
allowed = bot_cfg.get("allowed_users") or []
if not allowed:
return True # empty = allow all
for entry in allowed:
entry_str = str(entry).strip()
if entry_str.startswith("@"):
if username and f"@{username}" == entry_str:
return True
else:
try:
if int(entry_str) == user_id:
return True
except ValueError:
if username and entry_str.lower() == username.lower():
return True
return False
def _get_project(bot_cfg: dict, user_id: int) -> str:
user_projects = bot_cfg.get("user_projects") or {}
project = user_projects.get(str(user_id), "")
if not project:
project = bot_cfg.get("default_project", "")
return project
# Message handlers (registered with aiogram by bot_manager)
async def handle_start(message: TgMessage, bot_name: str, bot_cfg: dict):
"""Handle /start command."""
user = message.from_user
if not user:
return
if not _is_allowed(bot_cfg, user.id, user.username):
await message.reply("You are not authorized to use this bot.")
return
instance = get_bot(bot_name)
if not instance:
return
await _send_with_temp_bot(
instance.bot.token, message.chat.id,
f"\U0001f44b Hello {user.first_name}! I'm connected to Agent Zero.\n\n"
"Send me a message and I'll process it.\n"
"Use /clear to reset the conversation.",
parse_mode=None,
)
# Ensure a chat context exists
await _get_or_create_context(bot_name, bot_cfg, message)
async def handle_clear(message: TgMessage, bot_name: str, bot_cfg: dict):
"""Handle /clear command — reset user's chat context."""
user = message.from_user
if not user:
return
if not _is_allowed(bot_cfg, user.id, user.username):
return
key = _map_key(bot_name, user.id, message.chat.id)
with _chat_map_lock:
state = _load_state()
ctx_id = state.get("chats", {}).get(key)
if ctx_id:
ctx = AgentContext.get(ctx_id)
if ctx:
ctx.reset()
PrintStyle.info(f"Telegram ({bot_name}): cleared chat for user {user.id}")
instance = get_bot(bot_name)
if instance:
await _send_with_temp_bot(
instance.bot.token, message.chat.id,
"Chat cleared. Send a new message to start fresh.",
parse_mode=None,
)
# Send notification
if bot_cfg.get("notify_messages", False):
username_str = f"@{user.username}" if user.username else str(user.id)
NotificationManager.send_notification(
type=NotificationType.INFO,
priority=NotificationPriority.NORMAL,
title="Telegram: chat cleared",
message=f"{username_str} cleared their chat via /clear",
display_time=5,
group="telegram",
)
async def handle_message(message: TgMessage, bot_name: str, bot_cfg: dict):
"""Handle incoming user message."""
user = message.from_user
if not user:
return
if not _is_allowed(bot_cfg, user.id, user.username):
return
instance = get_bot(bot_name)
if not instance:
return
# Start persistent typing indicator (thread-based, works across event loops)
typing_stop = _start_typing(instance.bot.token, message.chat.id)
# Get or create agent context
context = await _get_or_create_context(bot_name, bot_cfg, message)
if not context:
typing_stop.set()
await _send_with_temp_bot(
instance.bot.token, message.chat.id,
"Failed to create chat session.",
parse_mode=None,
)
return
# Store stop event so send_telegram_reply can cancel typing
context.data[CTX_TG_TYPING_STOP] = typing_stop
# In group chats, if user replied to the bot's message, reply to the user's message
reply_to_id = None
if message.chat.type != "private" and instance.bot_info:
if (message.reply_to_message
and message.reply_to_message.from_user
and message.reply_to_message.from_user.id == instance.bot_info.id):
reply_to_id = message.message_id
context.data[CTX_TG_REPLY_TO] = reply_to_id
# Build user message text
text = _extract_message_content(message)
# Use temp bot for downloads (cross-event-loop safe)
async with _temp_bot(instance.bot.token) as dl_bot:
attachments = await _download_attachments(dl_bot, message, bot_name=bot_name)
# Build user message with prompt
agent = context.agent0
user_msg = agent.read_prompt(
"fw.telegram.user_message.md",
sender=_format_user(user),
body=text,
)
msg_id = str(uuid.uuid4())
mq.log_user_message(context, user_msg, attachments, message_id=msg_id, source=" (telegram)")
context.communicate(UserMessage(
message=user_msg,
attachments=attachments,
id=msg_id,
))
save_tmp_chat(context)
# Send notification
if bot_cfg.get("notify_messages", False):
username_str = f"@{user.username}" if user.username else str(user.id)
preview = (text[:80] + "...") if len(text) > 80 else text
NotificationManager.send_notification(
type=NotificationType.INFO,
priority=NotificationPriority.HIGH,
title="Telegram: new message",
message=f"From {username_str}: {preview}",
display_time=10,
group="telegram",
)
async def handle_callback_query(query: CallbackQuery, bot_name: str, bot_cfg: dict):
"""Handle inline keyboard button press."""
user = query.from_user
if not user or not query.message:
return
if not _is_allowed(bot_cfg, user.id, user.username):
await query.answer("Not authorized.")
return
await query.answer()
# Treat callback data as a user message
text = query.data or ""
if not text:
return
context = await _get_or_create_context_from_user(
bot_name, bot_cfg, user.id, user.username, query.message.chat.id,
)
if not context:
return
agent = context.agent0
user_msg = agent.read_prompt(
"fw.telegram.user_message.md",
sender=_format_user(user),
body=f"[Button pressed: {text}]",
)
msg_id = str(uuid.uuid4())
mq.log_user_message(context, user_msg, [], message_id=msg_id, source=" (telegram)")
context.communicate(UserMessage(message=user_msg, id=msg_id))
save_tmp_chat(context)
async def handle_new_members(message: TgMessage, bot_name: str, bot_cfg: dict):
"""Send welcome message when new members join a group."""
if not bot_cfg.get("welcome_enabled", False):
return
new_members = message.new_chat_members or []
if not new_members:
return
instance = get_bot(bot_name)
if not instance:
return
template = bot_cfg.get("welcome_message", "").strip()
if not template:
template = "Welcome, {name}!"
for member in new_members:
if member.is_bot:
continue
name = member.full_name or member.first_name or str(member.id)
text = template.replace("{name}", name)
await _send_with_temp_bot(instance.bot.token, message.chat.id, text, parse_mode=None)
# Context management
async def _get_or_create_context(
bot_name: str,
bot_cfg: dict,
message: TgMessage,
) -> AgentContext | None:
user = message.from_user
if not user:
return None
return await _get_or_create_context_from_user(
bot_name, bot_cfg, user.id, user.username, message.chat.id,
)
async def _get_or_create_context_from_user(
bot_name: str,
bot_cfg: dict,
user_id: int,
username: str | None,
chat_id: int,
) -> AgentContext | None:
key = _map_key(bot_name, user_id, chat_id)
with _chat_map_lock:
state = _load_state()
chats = state.setdefault("chats", {})
ctx_id = chats.get(key)
# Check if existing context is still alive
if ctx_id:
ctx = AgentContext.get(ctx_id)
if ctx:
return ctx
# Context was garbage collected, remove stale mapping
chats.pop(key, None)
# Create new context
try:
config = initialize_agent()
display_name = f"@{username}" if username else str(user_id)
ctx = AgentContext(config, name=f"Telegram: {display_name}")
ctx.data[CTX_TG_BOT] = bot_name
ctx.data[CTX_TG_BOT_CFG] = bot_cfg
ctx.data[CTX_TG_CHAT_ID] = chat_id
ctx.data[CTX_TG_USER_ID] = user_id
ctx.data[CTX_TG_USERNAME] = username or ""
project = _get_project(bot_cfg, user_id)
if project:
projects.activate_project(ctx.id, project)
# Inherit model override from an existing context in the same project
_inherit_model_override(ctx)
chats[key] = ctx.id
_save_state(state)
PrintStyle.success(
f"Telegram ({bot_name}): new chat {ctx.id} for user {display_name}"
)
return ctx
except Exception as e:
PrintStyle.error(f"Telegram: failed to create context: {format_error(e)}")
return None
# Message content extraction
def _extract_message_content(message: TgMessage) -> str:
parts = []
if message.text:
parts.append(message.text)
elif message.caption:
parts.append(message.caption)
if message.location:
loc = message.location
parts.append(f"[Location: {loc.latitude}, {loc.longitude}]")
if message.contact:
c = message.contact
parts.append(f"[Contact: {c.first_name} {c.last_name or ''} phone={c.phone_number}]")
if message.sticker:
parts.append(f"[Sticker: {message.sticker.emoji or ''}]")
# Simple attachment indicators
for attr, label in [("voice", "Voice message"), ("video_note", "Video note")]:
if getattr(message, attr, None):
parts.append(f"[{label} — see attachment]")
return "\n".join(parts) if parts else "[No text content]"
async def _download_attachments(bot, message: TgMessage, bot_name: str = "") -> list[str]:
"""Download photos, documents, audio, voice, video from message."""
paths: list[str] = []
tg_prefix = f"tg_{bot_name}_" if bot_name else "tg_"
# Host-local path for actual file I/O
download_dir = files.get_abs_path(DOWNLOAD_FOLDER)
os.makedirs(download_dir, exist_ok=True)
# Docker-style path for agent references
download_dir_ref = files.get_abs_path_dockerized(DOWNLOAD_FOLDER)
async def _dl(file_id: str, filename: str) -> str | None:
safe_name = f"{tg_prefix}{uuid.uuid4().hex[:8]}_{filename}"
dest = os.path.join(download_dir, safe_name)
result = await tc.download_file(bot, file_id, dest)
if result:
return os.path.join(download_dir_ref, safe_name)
return None
# Photo: get largest resolution
if message.photo:
photo = message.photo[-1]
path = await _dl(photo.file_id, f"photo_{photo.file_unique_id}.jpg")
if path:
paths.append(path)
# Other attachment types: (attr, default_prefix, default_ext)
_types = [
("document", "file", None),
("audio", "audio", ".mp3"),
("voice", "voice", ".ogg"),
("video", "video", ".mp4"),
("video_note", "videonote", ".mp4"),
]
for attr, prefix, ext in _types:
obj = getattr(message, attr, None)
if not obj:
continue
fname = getattr(obj, "file_name", None) or f"{prefix}_{obj.file_unique_id}{ext or ''}"
path = await _dl(obj.file_id, fname)
if path:
paths.append(path)
return paths
# Reply sending (called from process_chain_end extension)
async def send_telegram_reply(
context: AgentContext,
response_text: str,
attachments: list[str] | None = None,
keyboard: list[list[dict]] | None = None,
) -> str | None:
"""Send reply to Telegram user. Returns error string or None on success."""
bot_name = context.data.get(CTX_TG_BOT)
if not bot_name:
return "No Telegram bot configured on context"
instance = get_bot(bot_name)
if not instance:
return f"Bot '{bot_name}' not running"
chat_id = context.data.get(CTX_TG_CHAT_ID)
if not chat_id:
return "No chat_id on context"
reply_to = context.data.get(CTX_TG_REPLY_TO)
try:
async with _temp_bot(instance.bot.token, default=DefaultBotProperties(parse_mode=ParseMode.HTML)) as reply_bot:
if attachments:
for path in attachments:
local_path = files.fix_dev_path(path)
if tc.is_image_file(local_path):
await tc.send_photo(reply_bot, chat_id, local_path, reply_to_message_id=reply_to)
else:
await tc.send_file(reply_bot, chat_id, local_path, reply_to_message_id=reply_to)
if response_text:
html_text = tc.md_to_telegram_html(response_text)
if keyboard:
await tc.send_text_with_keyboard(reply_bot, chat_id, html_text, keyboard, reply_to_message_id=reply_to)
else:
await tc.send_text(reply_bot, chat_id, html_text, reply_to_message_id=reply_to)
return None
except Exception as e:
error = format_error(e)
PrintStyle.error(f"Telegram reply failed: {error}")
return error
# Helpers
@asynccontextmanager
async def _temp_bot(token: str, **kwargs):
"""Create a temporary Bot, yield it, and ensure the session is closed."""
bot = Bot(token=token, **kwargs)
try:
yield bot
finally:
with suppress(Exception):
await bot.session.close()
async def _send_with_temp_bot(token: str, chat_id: int, text: str, parse_mode: str | None = None):
"""Send text using a temporary Bot to avoid cross-event-loop session issues."""
async with _temp_bot(token) as bot:
await tc.send_text(bot, chat_id, text, parse_mode=parse_mode)
def _start_typing(token: str, chat_id: int) -> threading.Event:
"""Spawn a daemon thread that sends typing every 4s. Returns a stop Event."""
stop = threading.Event()
def _run():
import asyncio
async def _loop():
async with _temp_bot(token) as bot:
while not stop.is_set():
await tc.send_typing(bot, chat_id)
for _ in range(8):
if stop.is_set():
return
await asyncio.sleep(0.5)
try:
asyncio.run(_loop())
except Exception:
pass
threading.Thread(target=_run, daemon=True).start()
return stop
def _format_user(user) -> str:
name = user.first_name or ""
if user.last_name:
name += f" {user.last_name}"
if user.username:
name += f" (@{user.username})"
return name.strip() or str(user.id)
def _inherit_model_override(ctx: AgentContext):
"""Copy chat_model_override from the most recent sibling context in the same project."""
project = ctx.get_data("project")
if not project:
return
try:
from plugins._model_config.helpers.model_config import is_chat_override_allowed
if not is_chat_override_allowed(ctx.agent0):
return
except Exception:
return
source = max(
(c for c in AgentContext.all()
if c.id != ctx.id and c.get_data("project") == project and c.get_data("chat_model_override")),
key=lambda c: c.last_message,
default=None,
)
if source:
ctx.set_data("chat_model_override", source.get_data("chat_model_override"))
|