- platform/interface.py: PlatformClient Protocol + Pydantic models (User, MessageResponse, UserSettings) — no explicit session management, Master handles container lifecycle - platform/mock.py: MockPlatformClient with simulated latency, [MOCK] responses, is_new correctly True only on first creation - core/protocol.py: unified dataclasses for all events and responses (IncomingMessage/Command/Callback, OutgoingMessage/UI/Notification, AuthFlow, ChatContext, SettingsAction, etc.) - core/store.py: StateStore Protocol + InMemoryStore (tests) + SQLiteStore (prod) with JSON serialization - core/chat.py: ChatManager — chat metadata (C1/C2/C3), not container lifecycle (that's the platform's job) - core/auth.py: AuthManager — start_flow / confirm / is_authenticated - core/settings.py: SettingsManager — get/apply with store cache - core/handler.py: EventDispatcher — registry-based routing with keys (command name, action name, attachment type, "*" catch-all) - core/handlers/: register_all() + start/new/message/callback/settings handlers; voice slot falls back to stub text until voice_handler added - conftest.py: sys.path fix so local platform/ shadows stdlib platform - docs/api-contract.md: rewritten for Lambda Lab 3.0 container model 46 tests passing, 0 warnings.
38 lines
1.8 KiB
Python
38 lines
1.8 KiB
Python
# core/handlers/chat.py
|
|
from __future__ import annotations
|
|
|
|
from core.protocol import IncomingCommand, OutgoingMessage
|
|
|
|
|
|
async def handle_new_chat(event: IncomingCommand, auth_mgr, platform, chat_mgr, settings_mgr) -> list:
|
|
if not await auth_mgr.is_authenticated(event.user_id):
|
|
return [OutgoingMessage(chat_id=event.chat_id, text="Введите /start чтобы начать.")]
|
|
name = " ".join(event.args) if event.args else None
|
|
ctx = await chat_mgr.get_or_create(
|
|
user_id=event.user_id,
|
|
chat_id=event.chat_id,
|
|
platform=event.platform,
|
|
surface_ref=event.chat_id,
|
|
name=name,
|
|
)
|
|
return [OutgoingMessage(chat_id=event.chat_id, text=f"Создан чат: {ctx.display_name}")]
|
|
|
|
|
|
async def handle_rename(event: IncomingCommand, auth_mgr, platform, chat_mgr, settings_mgr) -> list:
|
|
if not event.args:
|
|
return [OutgoingMessage(chat_id=event.chat_id, text="Укажите название: /rename Название")]
|
|
ctx = await chat_mgr.rename(event.chat_id, " ".join(event.args))
|
|
return [OutgoingMessage(chat_id=event.chat_id, text=f"Переименован в: {ctx.display_name}")]
|
|
|
|
|
|
async def handle_archive(event: IncomingCommand, auth_mgr, platform, chat_mgr, settings_mgr) -> list:
|
|
await chat_mgr.archive(event.chat_id)
|
|
return [OutgoingMessage(chat_id=event.chat_id, text="Чат архивирован.")]
|
|
|
|
|
|
async def handle_list_chats(event: IncomingCommand, auth_mgr, platform, chat_mgr, settings_mgr) -> list:
|
|
chats = await chat_mgr.list_active(event.user_id)
|
|
if not chats:
|
|
return [OutgoingMessage(chat_id=event.chat_id, text="Нет активных чатов.")]
|
|
lines = [f"• {c.display_name} ({c.chat_id})" for c in chats]
|
|
return [OutgoingMessage(chat_id=event.chat_id, text="\n".join(lines))]
|