- 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.
25 lines
1.3 KiB
Python
25 lines
1.3 KiB
Python
# core/handlers/settings.py
|
|
from __future__ import annotations
|
|
|
|
from core.protocol import IncomingCommand, OutgoingMessage, OutgoingUI, UIButton
|
|
|
|
|
|
async def handle_settings(event: IncomingCommand, auth_mgr, platform, chat_mgr, settings_mgr) -> list:
|
|
return [OutgoingUI(
|
|
chat_id=event.chat_id,
|
|
text="⚙️ Настройки",
|
|
buttons=[
|
|
UIButton(label="🔗 Коннекторы", action="settings_connectors", style="secondary"),
|
|
UIButton(label="🧩 Скиллы", action="settings_skills", style="secondary"),
|
|
UIButton(label="🧠 Личность", action="settings_soul", style="secondary"),
|
|
UIButton(label="🔒 Безопасность", action="settings_safety", style="secondary"),
|
|
UIButton(label="💳 Подписка", action="settings_plan", style="secondary"),
|
|
],
|
|
)]
|
|
|
|
|
|
async def handle_settings_skills(event: IncomingCommand, auth_mgr, platform, chat_mgr, settings_mgr) -> list:
|
|
s = await settings_mgr.get(event.user_id)
|
|
lines = [("✅" if on else "❌") + f" {name}" for name, on in s.skills.items()]
|
|
text = "🧩 Скиллы\n\n" + ("\n".join(lines) or "Нет доступных скиллов")
|
|
return [OutgoingMessage(chat_id=event.chat_id, text=text)]
|