feat: add onboarding and session management services for gateway integration
This commit is contained in:
404
backend/app/services/openclaw/admin_service.py
Normal file
404
backend/app/services/openclaw/admin_service.py
Normal file
@@ -0,0 +1,404 @@
|
||||
"""Gateway admin lifecycle service."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import logging
|
||||
from abc import ABC, abstractmethod
|
||||
from typing import TYPE_CHECKING
|
||||
from uuid import UUID
|
||||
|
||||
from fastapi import HTTPException, status
|
||||
from sqlmodel import col
|
||||
|
||||
from app.core.agent_tokens import generate_agent_token, hash_agent_token
|
||||
from app.core.auth import AuthContext
|
||||
from app.core.time import utcnow
|
||||
from app.db import crud
|
||||
from app.integrations.openclaw_gateway import GatewayConfig as GatewayClientConfig
|
||||
from app.integrations.openclaw_gateway import (
|
||||
OpenClawGatewayError,
|
||||
ensure_session,
|
||||
openclaw_call,
|
||||
send_message,
|
||||
)
|
||||
from app.models.activity_events import ActivityEvent
|
||||
from app.models.agents import Agent
|
||||
from app.models.approvals import Approval
|
||||
from app.models.gateways import Gateway
|
||||
from app.models.tasks import Task
|
||||
from app.schemas.gateways import GatewayTemplatesSyncResult
|
||||
from app.services.openclaw.constants import DEFAULT_HEARTBEAT_CONFIG
|
||||
from app.services.openclaw.provisioning import (
|
||||
GatewayTemplateSyncOptions,
|
||||
MainAgentProvisionRequest,
|
||||
ProvisionOptions,
|
||||
provision_main_agent,
|
||||
sync_gateway_templates,
|
||||
)
|
||||
from app.services.openclaw.session_service import GatewayTemplateSyncQuery
|
||||
from app.services.openclaw.shared import GatewayAgentIdentity
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from sqlmodel.ext.asyncio.session import AsyncSession
|
||||
|
||||
from app.models.users import User
|
||||
|
||||
|
||||
class AbstractGatewayMainAgentManager(ABC):
|
||||
"""Abstract manager for gateway-main agent naming/profile behavior."""
|
||||
|
||||
@abstractmethod
|
||||
def build_main_agent_name(self, gateway: Gateway) -> str:
|
||||
raise NotImplementedError
|
||||
|
||||
@abstractmethod
|
||||
def build_identity_profile(self) -> dict[str, str]:
|
||||
raise NotImplementedError
|
||||
|
||||
|
||||
class DefaultGatewayMainAgentManager(AbstractGatewayMainAgentManager):
|
||||
"""Default naming/profile strategy for gateway-main agents."""
|
||||
|
||||
def build_main_agent_name(self, gateway: Gateway) -> str:
|
||||
return f"{gateway.name} Gateway Agent"
|
||||
|
||||
def build_identity_profile(self) -> dict[str, str]:
|
||||
return {
|
||||
"role": "Gateway Agent",
|
||||
"communication_style": "direct, concise, practical",
|
||||
"emoji": ":compass:",
|
||||
}
|
||||
|
||||
|
||||
class GatewayAdminLifecycleService:
|
||||
"""Write-side gateway lifecycle service (CRUD, main agent, template sync)."""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
session: AsyncSession,
|
||||
*,
|
||||
main_agent_manager: AbstractGatewayMainAgentManager | None = None,
|
||||
) -> None:
|
||||
self._session = session
|
||||
self._logger = logging.getLogger(__name__)
|
||||
self._main_agent_manager = main_agent_manager or DefaultGatewayMainAgentManager()
|
||||
|
||||
@property
|
||||
def session(self) -> AsyncSession:
|
||||
return self._session
|
||||
|
||||
@session.setter
|
||||
def session(self, value: AsyncSession) -> None:
|
||||
self._session = value
|
||||
|
||||
@property
|
||||
def logger(self) -> logging.Logger:
|
||||
return self._logger
|
||||
|
||||
@logger.setter
|
||||
def logger(self, value: logging.Logger) -> None:
|
||||
self._logger = value
|
||||
|
||||
@property
|
||||
def main_agent_manager(self) -> AbstractGatewayMainAgentManager:
|
||||
return self._main_agent_manager
|
||||
|
||||
@main_agent_manager.setter
|
||||
def main_agent_manager(self, value: AbstractGatewayMainAgentManager) -> None:
|
||||
self._main_agent_manager = value
|
||||
|
||||
async def require_gateway(
|
||||
self,
|
||||
*,
|
||||
gateway_id: UUID,
|
||||
organization_id: UUID,
|
||||
) -> Gateway:
|
||||
gateway = (
|
||||
await Gateway.objects.by_id(gateway_id)
|
||||
.filter(col(Gateway.organization_id) == organization_id)
|
||||
.first(self.session)
|
||||
)
|
||||
if gateway is None:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_404_NOT_FOUND,
|
||||
detail="Gateway not found",
|
||||
)
|
||||
return gateway
|
||||
|
||||
async def find_main_agent(self, gateway: Gateway) -> Agent | None:
|
||||
return (
|
||||
await Agent.objects.filter_by(gateway_id=gateway.id)
|
||||
.filter(col(Agent.board_id).is_(None))
|
||||
.first(self.session)
|
||||
)
|
||||
|
||||
@staticmethod
|
||||
def extract_agent_id_from_entry(item: object) -> str | None:
|
||||
if isinstance(item, str):
|
||||
value = item.strip()
|
||||
return value or None
|
||||
if not isinstance(item, dict):
|
||||
return None
|
||||
for key in ("id", "agentId", "agent_id"):
|
||||
raw = item.get(key)
|
||||
if isinstance(raw, str) and raw.strip():
|
||||
return raw.strip()
|
||||
return None
|
||||
|
||||
@staticmethod
|
||||
def extract_agents_list(payload: object) -> list[object]:
|
||||
if isinstance(payload, list):
|
||||
return [item for item in payload]
|
||||
if not isinstance(payload, dict):
|
||||
return []
|
||||
agents = payload.get("agents") or []
|
||||
if not isinstance(agents, list):
|
||||
return []
|
||||
return [item for item in agents]
|
||||
|
||||
async def upsert_main_agent_record(self, gateway: Gateway) -> tuple[Agent, bool]:
|
||||
changed = False
|
||||
session_key = GatewayAgentIdentity.session_key(gateway)
|
||||
agent = await self.find_main_agent(gateway)
|
||||
main_agent_name = self.main_agent_manager.build_main_agent_name(gateway)
|
||||
identity_profile = self.main_agent_manager.build_identity_profile()
|
||||
if agent is None:
|
||||
agent = Agent(
|
||||
name=main_agent_name,
|
||||
status="provisioning",
|
||||
board_id=None,
|
||||
gateway_id=gateway.id,
|
||||
is_board_lead=False,
|
||||
openclaw_session_id=session_key,
|
||||
heartbeat_config=DEFAULT_HEARTBEAT_CONFIG.copy(),
|
||||
identity_profile=identity_profile,
|
||||
)
|
||||
self.session.add(agent)
|
||||
changed = True
|
||||
if agent.board_id is not None:
|
||||
agent.board_id = None
|
||||
changed = True
|
||||
if agent.gateway_id != gateway.id:
|
||||
agent.gateway_id = gateway.id
|
||||
changed = True
|
||||
if agent.is_board_lead:
|
||||
agent.is_board_lead = False
|
||||
changed = True
|
||||
if agent.name != main_agent_name:
|
||||
agent.name = main_agent_name
|
||||
changed = True
|
||||
if agent.openclaw_session_id != session_key:
|
||||
agent.openclaw_session_id = session_key
|
||||
changed = True
|
||||
if agent.heartbeat_config is None:
|
||||
agent.heartbeat_config = DEFAULT_HEARTBEAT_CONFIG.copy()
|
||||
changed = True
|
||||
if agent.identity_profile is None:
|
||||
agent.identity_profile = identity_profile
|
||||
changed = True
|
||||
if not agent.status:
|
||||
agent.status = "provisioning"
|
||||
changed = True
|
||||
if changed:
|
||||
agent.updated_at = utcnow()
|
||||
self.session.add(agent)
|
||||
return agent, changed
|
||||
|
||||
async def gateway_has_main_agent_entry(self, gateway: Gateway) -> bool:
|
||||
if not gateway.url:
|
||||
return False
|
||||
config = GatewayClientConfig(url=gateway.url, token=gateway.token)
|
||||
target_id = GatewayAgentIdentity.openclaw_agent_id(gateway)
|
||||
try:
|
||||
payload = await openclaw_call("agents.list", config=config)
|
||||
except OpenClawGatewayError:
|
||||
return True
|
||||
for item in self.extract_agents_list(payload):
|
||||
if self.extract_agent_id_from_entry(item) == target_id:
|
||||
return True
|
||||
return False
|
||||
|
||||
async def provision_main_agent_record(
|
||||
self,
|
||||
gateway: Gateway,
|
||||
agent: Agent,
|
||||
*,
|
||||
user: User | None,
|
||||
action: str,
|
||||
notify: bool,
|
||||
) -> Agent:
|
||||
session_key = GatewayAgentIdentity.session_key(gateway)
|
||||
raw_token = generate_agent_token()
|
||||
agent.agent_token_hash = hash_agent_token(raw_token)
|
||||
agent.provision_requested_at = utcnow()
|
||||
agent.provision_action = action
|
||||
agent.updated_at = utcnow()
|
||||
if agent.heartbeat_config is None:
|
||||
agent.heartbeat_config = DEFAULT_HEARTBEAT_CONFIG.copy()
|
||||
self.session.add(agent)
|
||||
await self.session.commit()
|
||||
await self.session.refresh(agent)
|
||||
if not gateway.url:
|
||||
return agent
|
||||
try:
|
||||
await provision_main_agent(
|
||||
agent,
|
||||
MainAgentProvisionRequest(
|
||||
gateway=gateway,
|
||||
auth_token=raw_token,
|
||||
user=user,
|
||||
session_key=session_key,
|
||||
options=ProvisionOptions(action=action),
|
||||
),
|
||||
)
|
||||
await ensure_session(
|
||||
session_key,
|
||||
config=GatewayClientConfig(url=gateway.url, token=gateway.token),
|
||||
label=agent.name,
|
||||
)
|
||||
if notify:
|
||||
await send_message(
|
||||
(
|
||||
f"Hello {agent.name}. Your gateway provisioning was updated.\n\n"
|
||||
"Please re-read AGENTS.md, USER.md, HEARTBEAT.md, and TOOLS.md. "
|
||||
"If BOOTSTRAP.md exists, run it once then delete it. "
|
||||
"Begin heartbeats after startup."
|
||||
),
|
||||
session_key=session_key,
|
||||
config=GatewayClientConfig(url=gateway.url, token=gateway.token),
|
||||
deliver=True,
|
||||
)
|
||||
self.logger.info(
|
||||
"gateway.main_agent.provision_success gateway_id=%s agent_id=%s action=%s",
|
||||
gateway.id,
|
||||
agent.id,
|
||||
action,
|
||||
)
|
||||
except OpenClawGatewayError as exc:
|
||||
self.logger.warning(
|
||||
"gateway.main_agent.provision_failed_gateway gateway_id=%s agent_id=%s error=%s",
|
||||
gateway.id,
|
||||
agent.id,
|
||||
str(exc),
|
||||
)
|
||||
except (OSError, RuntimeError, ValueError) as exc:
|
||||
self.logger.error(
|
||||
"gateway.main_agent.provision_failed gateway_id=%s agent_id=%s error=%s",
|
||||
gateway.id,
|
||||
agent.id,
|
||||
str(exc),
|
||||
)
|
||||
except Exception as exc: # pragma: no cover - defensive fallback
|
||||
self.logger.critical(
|
||||
"gateway.main_agent.provision_failed_unexpected gateway_id=%s agent_id=%s "
|
||||
"error_type=%s error=%s",
|
||||
gateway.id,
|
||||
agent.id,
|
||||
exc.__class__.__name__,
|
||||
str(exc),
|
||||
)
|
||||
return agent
|
||||
|
||||
async def ensure_main_agent(
|
||||
self,
|
||||
gateway: Gateway,
|
||||
auth: AuthContext,
|
||||
*,
|
||||
action: str = "provision",
|
||||
) -> Agent:
|
||||
self.logger.log(
|
||||
5,
|
||||
"gateway.main_agent.ensure.start gateway_id=%s action=%s",
|
||||
gateway.id,
|
||||
action,
|
||||
)
|
||||
agent, _ = await self.upsert_main_agent_record(gateway)
|
||||
return await self.provision_main_agent_record(
|
||||
gateway,
|
||||
agent,
|
||||
user=auth.user,
|
||||
action=action,
|
||||
notify=True,
|
||||
)
|
||||
|
||||
async def ensure_gateway_agents_exist(self, gateways: list[Gateway]) -> None:
|
||||
for gateway in gateways:
|
||||
agent, gateway_changed = await self.upsert_main_agent_record(gateway)
|
||||
has_gateway_entry = await self.gateway_has_main_agent_entry(gateway)
|
||||
needs_provision = (
|
||||
gateway_changed or not bool(agent.agent_token_hash) or not has_gateway_entry
|
||||
)
|
||||
if needs_provision:
|
||||
await self.provision_main_agent_record(
|
||||
gateway,
|
||||
agent,
|
||||
user=None,
|
||||
action="provision",
|
||||
notify=False,
|
||||
)
|
||||
|
||||
async def clear_agent_foreign_keys(self, *, agent_id: UUID) -> None:
|
||||
now = utcnow()
|
||||
await crud.update_where(
|
||||
self.session,
|
||||
Task,
|
||||
col(Task.assigned_agent_id) == agent_id,
|
||||
col(Task.status) == "in_progress",
|
||||
assigned_agent_id=None,
|
||||
status="inbox",
|
||||
in_progress_at=None,
|
||||
updated_at=now,
|
||||
commit=False,
|
||||
)
|
||||
await crud.update_where(
|
||||
self.session,
|
||||
Task,
|
||||
col(Task.assigned_agent_id) == agent_id,
|
||||
col(Task.status) != "in_progress",
|
||||
assigned_agent_id=None,
|
||||
updated_at=now,
|
||||
commit=False,
|
||||
)
|
||||
await crud.update_where(
|
||||
self.session,
|
||||
ActivityEvent,
|
||||
col(ActivityEvent.agent_id) == agent_id,
|
||||
agent_id=None,
|
||||
commit=False,
|
||||
)
|
||||
await crud.update_where(
|
||||
self.session,
|
||||
Approval,
|
||||
col(Approval.agent_id) == agent_id,
|
||||
agent_id=None,
|
||||
commit=False,
|
||||
)
|
||||
|
||||
async def sync_templates(
|
||||
self,
|
||||
gateway: Gateway,
|
||||
*,
|
||||
query: GatewayTemplateSyncQuery,
|
||||
auth: AuthContext,
|
||||
) -> GatewayTemplatesSyncResult:
|
||||
self.logger.log(
|
||||
5,
|
||||
"gateway.templates.sync.start gateway_id=%s include_main=%s",
|
||||
gateway.id,
|
||||
query.include_main,
|
||||
)
|
||||
await self.ensure_gateway_agents_exist([gateway])
|
||||
result = await sync_gateway_templates(
|
||||
self.session,
|
||||
gateway,
|
||||
GatewayTemplateSyncOptions(
|
||||
user=auth.user,
|
||||
include_main=query.include_main,
|
||||
reset_sessions=query.reset_sessions,
|
||||
rotate_tokens=query.rotate_tokens,
|
||||
force_bootstrap=query.force_bootstrap,
|
||||
board_id=query.board_id,
|
||||
),
|
||||
)
|
||||
self.logger.info("gateway.templates.sync.success gateway_id=%s", gateway.id)
|
||||
return result
|
||||
1406
backend/app/services/openclaw/agent_service.py
Normal file
1406
backend/app/services/openclaw/agent_service.py
Normal file
File diff suppressed because it is too large
Load Diff
747
backend/app/services/openclaw/coordination_service.py
Normal file
747
backend/app/services/openclaw/coordination_service.py
Normal file
@@ -0,0 +1,747 @@
|
||||
"""Gateway-main and lead coordination services."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import logging
|
||||
from abc import ABC
|
||||
from collections.abc import Awaitable, Callable
|
||||
from typing import TYPE_CHECKING, TypeVar
|
||||
from uuid import UUID
|
||||
|
||||
from fastapi import HTTPException, status
|
||||
from sqlmodel import col, select
|
||||
|
||||
from app.core.config import settings
|
||||
from app.core.time import utcnow
|
||||
from app.integrations.openclaw_gateway import GatewayConfig as GatewayClientConfig
|
||||
from app.integrations.openclaw_gateway import OpenClawGatewayError, openclaw_call
|
||||
from app.models.agents import Agent
|
||||
from app.models.boards import Board
|
||||
from app.models.gateways import Gateway
|
||||
from app.schemas.gateway_coordination import (
|
||||
GatewayLeadBroadcastBoardResult,
|
||||
GatewayLeadBroadcastRequest,
|
||||
GatewayLeadBroadcastResponse,
|
||||
GatewayLeadMessageRequest,
|
||||
GatewayLeadMessageResponse,
|
||||
GatewayMainAskUserRequest,
|
||||
GatewayMainAskUserResponse,
|
||||
)
|
||||
from app.services.activity_log import record_activity
|
||||
from app.services.openclaw.exceptions import (
|
||||
GatewayOperation,
|
||||
map_gateway_error_message,
|
||||
map_gateway_error_to_http_exception,
|
||||
)
|
||||
from app.services.openclaw.provisioning import (
|
||||
LeadAgentOptions,
|
||||
LeadAgentRequest,
|
||||
_agent_key,
|
||||
_with_coordination_gateway_retry,
|
||||
ensure_board_lead_agent,
|
||||
)
|
||||
from app.services.openclaw.shared import (
|
||||
GatewayAgentIdentity,
|
||||
require_gateway_config_for_board,
|
||||
resolve_trace_id,
|
||||
send_gateway_agent_message,
|
||||
)
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from sqlmodel.ext.asyncio.session import AsyncSession
|
||||
|
||||
|
||||
_T = TypeVar("_T")
|
||||
|
||||
|
||||
class AbstractGatewayMessagingService(ABC):
|
||||
"""Shared gateway messaging primitives with retry semantics."""
|
||||
|
||||
def __init__(self, session: AsyncSession) -> None:
|
||||
self._session = session
|
||||
self._logger = logging.getLogger(__name__)
|
||||
|
||||
@property
|
||||
def session(self) -> AsyncSession:
|
||||
return self._session
|
||||
|
||||
@session.setter
|
||||
def session(self, value: AsyncSession) -> None:
|
||||
self._session = value
|
||||
|
||||
@property
|
||||
def logger(self) -> logging.Logger:
|
||||
return self._logger
|
||||
|
||||
@logger.setter
|
||||
def logger(self, value: logging.Logger) -> None:
|
||||
self._logger = value
|
||||
|
||||
@staticmethod
|
||||
async def _with_gateway_retry(fn: Callable[[], Awaitable[_T]]) -> _T:
|
||||
return await _with_coordination_gateway_retry(fn)
|
||||
|
||||
async def _dispatch_gateway_message(
|
||||
self,
|
||||
*,
|
||||
session_key: str,
|
||||
config: GatewayClientConfig,
|
||||
agent_name: str,
|
||||
message: str,
|
||||
deliver: bool,
|
||||
) -> None:
|
||||
async def _do_send() -> bool:
|
||||
await send_gateway_agent_message(
|
||||
session_key=session_key,
|
||||
config=config,
|
||||
agent_name=agent_name,
|
||||
message=message,
|
||||
deliver=deliver,
|
||||
)
|
||||
return True
|
||||
|
||||
await self._with_gateway_retry(_do_send)
|
||||
|
||||
|
||||
class GatewayCoordinationService(AbstractGatewayMessagingService):
|
||||
"""Gateway-main and lead coordination workflows used by agent-facing routes."""
|
||||
|
||||
@staticmethod
|
||||
def _build_gateway_lead_message(
|
||||
*,
|
||||
board: Board,
|
||||
actor_agent_name: str,
|
||||
kind: str,
|
||||
content: str,
|
||||
correlation_id: str | None,
|
||||
reply_tags: list[str] | None,
|
||||
reply_source: str | None,
|
||||
) -> str:
|
||||
base_url = settings.base_url or "http://localhost:8000"
|
||||
header = "GATEWAY MAIN QUESTION" if kind == "question" else "GATEWAY MAIN HANDOFF"
|
||||
correlation = correlation_id.strip() if correlation_id else ""
|
||||
correlation_line = f"Correlation ID: {correlation}\n" if correlation else ""
|
||||
tags_json = json.dumps(reply_tags or ["gateway_main", "lead_reply"])
|
||||
source = reply_source or "lead_to_gateway_main"
|
||||
return (
|
||||
f"{header}\n"
|
||||
f"Board: {board.name}\n"
|
||||
f"Board ID: {board.id}\n"
|
||||
f"From agent: {actor_agent_name}\n"
|
||||
f"{correlation_line}\n"
|
||||
f"{content.strip()}\n\n"
|
||||
"Reply to the gateway agent by writing a NON-chat memory item on this board:\n"
|
||||
f"POST {base_url}/api/v1/agent/boards/{board.id}/memory\n"
|
||||
f'Body: {{"content":"...","tags":{tags_json},"source":"{source}"}}\n'
|
||||
"Do NOT reply in OpenClaw chat."
|
||||
)
|
||||
|
||||
async def require_gateway_main_actor(
|
||||
self,
|
||||
actor_agent: Agent,
|
||||
) -> tuple[Gateway, GatewayClientConfig]:
|
||||
detail = "Only the dedicated gateway agent may call this endpoint."
|
||||
if actor_agent.board_id is not None:
|
||||
raise HTTPException(status_code=status.HTTP_403_FORBIDDEN, detail=detail)
|
||||
gateway = await Gateway.objects.by_id(actor_agent.gateway_id).first(self.session)
|
||||
if gateway is None:
|
||||
raise HTTPException(status_code=status.HTTP_403_FORBIDDEN, detail=detail)
|
||||
if actor_agent.openclaw_session_id != GatewayAgentIdentity.session_key(gateway):
|
||||
raise HTTPException(status_code=status.HTTP_403_FORBIDDEN, detail=detail)
|
||||
if not gateway.url:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_422_UNPROCESSABLE_ENTITY,
|
||||
detail="Gateway url is required",
|
||||
)
|
||||
return gateway, GatewayClientConfig(url=gateway.url, token=gateway.token)
|
||||
|
||||
async def require_gateway_board(
|
||||
self,
|
||||
*,
|
||||
gateway: Gateway,
|
||||
board_id: UUID | str,
|
||||
) -> Board:
|
||||
board = await Board.objects.by_id(board_id).first(self.session)
|
||||
if board is None:
|
||||
raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Board not found")
|
||||
if board.gateway_id != gateway.id:
|
||||
raise HTTPException(status_code=status.HTTP_403_FORBIDDEN)
|
||||
return board
|
||||
|
||||
async def _board_agent_or_404(
|
||||
self,
|
||||
*,
|
||||
board: Board,
|
||||
agent_id: str,
|
||||
) -> Agent:
|
||||
target = await Agent.objects.by_id(agent_id).first(self.session)
|
||||
if target is None or (target.board_id and target.board_id != board.id):
|
||||
raise HTTPException(status_code=status.HTTP_404_NOT_FOUND)
|
||||
return target
|
||||
|
||||
@staticmethod
|
||||
def _gateway_file_content(payload: object) -> str | None:
|
||||
if isinstance(payload, str):
|
||||
return payload
|
||||
if isinstance(payload, dict):
|
||||
content = payload.get("content")
|
||||
if isinstance(content, str):
|
||||
return content
|
||||
file_obj = payload.get("file")
|
||||
if isinstance(file_obj, dict):
|
||||
nested = file_obj.get("content")
|
||||
if isinstance(nested, str):
|
||||
return nested
|
||||
return None
|
||||
|
||||
async def nudge_board_agent(
|
||||
self,
|
||||
*,
|
||||
board: Board,
|
||||
actor_agent: Agent,
|
||||
target_agent_id: str,
|
||||
message: str,
|
||||
correlation_id: str | None = None,
|
||||
) -> None:
|
||||
trace_id = resolve_trace_id(correlation_id, prefix="coord.nudge")
|
||||
self.logger.log(
|
||||
5,
|
||||
"gateway.coordination.nudge.start trace_id=%s board_id=%s actor_agent_id=%s "
|
||||
"target_agent_id=%s",
|
||||
trace_id,
|
||||
board.id,
|
||||
actor_agent.id,
|
||||
target_agent_id,
|
||||
)
|
||||
target = await self._board_agent_or_404(board=board, agent_id=target_agent_id)
|
||||
if not target.openclaw_session_id:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_422_UNPROCESSABLE_ENTITY,
|
||||
detail="Target agent has no session key",
|
||||
)
|
||||
_gateway, config = await require_gateway_config_for_board(self.session, board)
|
||||
try:
|
||||
await self._dispatch_gateway_message(
|
||||
session_key=target.openclaw_session_id or "",
|
||||
config=config,
|
||||
agent_name=target.name,
|
||||
message=message,
|
||||
deliver=True,
|
||||
)
|
||||
except (OpenClawGatewayError, TimeoutError) as exc:
|
||||
record_activity(
|
||||
self.session,
|
||||
event_type="agent.nudge.failed",
|
||||
message=f"Nudge failed for {target.name}: {exc}",
|
||||
agent_id=actor_agent.id,
|
||||
)
|
||||
await self.session.commit()
|
||||
self.logger.error(
|
||||
"gateway.coordination.nudge.failed trace_id=%s board_id=%s actor_agent_id=%s "
|
||||
"target_agent_id=%s error=%s",
|
||||
trace_id,
|
||||
board.id,
|
||||
actor_agent.id,
|
||||
target_agent_id,
|
||||
str(exc),
|
||||
)
|
||||
raise map_gateway_error_to_http_exception(GatewayOperation.NUDGE_AGENT, exc) from exc
|
||||
except Exception as exc: # pragma: no cover - defensive guard
|
||||
self.logger.critical(
|
||||
"gateway.coordination.nudge.failed_unexpected trace_id=%s board_id=%s "
|
||||
"actor_agent_id=%s target_agent_id=%s error_type=%s error=%s",
|
||||
trace_id,
|
||||
board.id,
|
||||
actor_agent.id,
|
||||
target_agent_id,
|
||||
exc.__class__.__name__,
|
||||
str(exc),
|
||||
)
|
||||
raise
|
||||
record_activity(
|
||||
self.session,
|
||||
event_type="agent.nudge.sent",
|
||||
message=f"Nudge sent to {target.name}.",
|
||||
agent_id=actor_agent.id,
|
||||
)
|
||||
await self.session.commit()
|
||||
self.logger.info(
|
||||
"gateway.coordination.nudge.success trace_id=%s board_id=%s actor_agent_id=%s "
|
||||
"target_agent_id=%s",
|
||||
trace_id,
|
||||
board.id,
|
||||
actor_agent.id,
|
||||
target_agent_id,
|
||||
)
|
||||
|
||||
async def get_agent_soul(
|
||||
self,
|
||||
*,
|
||||
board: Board,
|
||||
target_agent_id: str,
|
||||
correlation_id: str | None = None,
|
||||
) -> str:
|
||||
trace_id = resolve_trace_id(correlation_id, prefix="coord.soul.read")
|
||||
self.logger.log(
|
||||
5,
|
||||
"gateway.coordination.soul_read.start trace_id=%s board_id=%s target_agent_id=%s",
|
||||
trace_id,
|
||||
board.id,
|
||||
target_agent_id,
|
||||
)
|
||||
target = await self._board_agent_or_404(board=board, agent_id=target_agent_id)
|
||||
_gateway, config = await require_gateway_config_for_board(self.session, board)
|
||||
try:
|
||||
|
||||
async def _do_get() -> object:
|
||||
return await openclaw_call(
|
||||
"agents.files.get",
|
||||
{"agentId": _agent_key(target), "name": "SOUL.md"},
|
||||
config=config,
|
||||
)
|
||||
|
||||
payload = await self._with_gateway_retry(_do_get)
|
||||
except (OpenClawGatewayError, TimeoutError) as exc:
|
||||
self.logger.error(
|
||||
"gateway.coordination.soul_read.failed trace_id=%s board_id=%s "
|
||||
"target_agent_id=%s error=%s",
|
||||
trace_id,
|
||||
board.id,
|
||||
target_agent_id,
|
||||
str(exc),
|
||||
)
|
||||
raise map_gateway_error_to_http_exception(GatewayOperation.SOUL_READ, exc) from exc
|
||||
except Exception as exc: # pragma: no cover - defensive guard
|
||||
self.logger.critical(
|
||||
"gateway.coordination.soul_read.failed_unexpected trace_id=%s board_id=%s "
|
||||
"target_agent_id=%s error_type=%s error=%s",
|
||||
trace_id,
|
||||
board.id,
|
||||
target_agent_id,
|
||||
exc.__class__.__name__,
|
||||
str(exc),
|
||||
)
|
||||
raise
|
||||
content = self._gateway_file_content(payload)
|
||||
if content is None:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_502_BAD_GATEWAY,
|
||||
detail="Invalid gateway response",
|
||||
)
|
||||
self.logger.info(
|
||||
"gateway.coordination.soul_read.success trace_id=%s board_id=%s target_agent_id=%s",
|
||||
trace_id,
|
||||
board.id,
|
||||
target_agent_id,
|
||||
)
|
||||
return content
|
||||
|
||||
async def update_agent_soul(
|
||||
self,
|
||||
*,
|
||||
board: Board,
|
||||
target_agent_id: str,
|
||||
content: str,
|
||||
reason: str | None,
|
||||
source_url: str | None,
|
||||
actor_agent_id: UUID,
|
||||
correlation_id: str | None = None,
|
||||
) -> None:
|
||||
trace_id = resolve_trace_id(correlation_id, prefix="coord.soul.write")
|
||||
self.logger.log(
|
||||
5,
|
||||
"gateway.coordination.soul_write.start trace_id=%s board_id=%s target_agent_id=%s "
|
||||
"actor_agent_id=%s",
|
||||
trace_id,
|
||||
board.id,
|
||||
target_agent_id,
|
||||
actor_agent_id,
|
||||
)
|
||||
target = await self._board_agent_or_404(board=board, agent_id=target_agent_id)
|
||||
normalized_content = content.strip()
|
||||
if not normalized_content:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_422_UNPROCESSABLE_ENTITY,
|
||||
detail="content is required",
|
||||
)
|
||||
|
||||
target.soul_template = normalized_content
|
||||
target.updated_at = utcnow()
|
||||
self.session.add(target)
|
||||
await self.session.commit()
|
||||
|
||||
_gateway, config = await require_gateway_config_for_board(self.session, board)
|
||||
try:
|
||||
|
||||
async def _do_set() -> object:
|
||||
return await openclaw_call(
|
||||
"agents.files.set",
|
||||
{
|
||||
"agentId": _agent_key(target),
|
||||
"name": "SOUL.md",
|
||||
"content": normalized_content,
|
||||
},
|
||||
config=config,
|
||||
)
|
||||
|
||||
await self._with_gateway_retry(_do_set)
|
||||
except (OpenClawGatewayError, TimeoutError) as exc:
|
||||
self.logger.error(
|
||||
"gateway.coordination.soul_write.failed trace_id=%s board_id=%s "
|
||||
"target_agent_id=%s actor_agent_id=%s error=%s",
|
||||
trace_id,
|
||||
board.id,
|
||||
target_agent_id,
|
||||
actor_agent_id,
|
||||
str(exc),
|
||||
)
|
||||
raise map_gateway_error_to_http_exception(GatewayOperation.SOUL_WRITE, exc) from exc
|
||||
except Exception as exc: # pragma: no cover - defensive guard
|
||||
self.logger.critical(
|
||||
"gateway.coordination.soul_write.failed_unexpected trace_id=%s board_id=%s "
|
||||
"target_agent_id=%s actor_agent_id=%s error_type=%s error=%s",
|
||||
trace_id,
|
||||
board.id,
|
||||
target_agent_id,
|
||||
actor_agent_id,
|
||||
exc.__class__.__name__,
|
||||
str(exc),
|
||||
)
|
||||
raise
|
||||
|
||||
reason_text = (reason or "").strip()
|
||||
source_url_text = (source_url or "").strip()
|
||||
note = f"SOUL.md updated for {target.name}."
|
||||
if reason_text:
|
||||
note = f"{note} Reason: {reason_text}"
|
||||
if source_url_text:
|
||||
note = f"{note} Source: {source_url_text}"
|
||||
record_activity(
|
||||
self.session,
|
||||
event_type="agent.soul.updated",
|
||||
message=note,
|
||||
agent_id=actor_agent_id,
|
||||
)
|
||||
await self.session.commit()
|
||||
self.logger.info(
|
||||
"gateway.coordination.soul_write.success trace_id=%s board_id=%s target_agent_id=%s "
|
||||
"actor_agent_id=%s",
|
||||
trace_id,
|
||||
board.id,
|
||||
target_agent_id,
|
||||
actor_agent_id,
|
||||
)
|
||||
|
||||
async def ask_user_via_gateway_main(
|
||||
self,
|
||||
*,
|
||||
board: Board,
|
||||
payload: GatewayMainAskUserRequest,
|
||||
actor_agent: Agent,
|
||||
) -> GatewayMainAskUserResponse:
|
||||
trace_id = resolve_trace_id(payload.correlation_id, prefix="coord.ask_user")
|
||||
self.logger.log(
|
||||
5,
|
||||
"gateway.coordination.ask_user.start trace_id=%s board_id=%s actor_agent_id=%s",
|
||||
trace_id,
|
||||
board.id,
|
||||
actor_agent.id,
|
||||
)
|
||||
gateway, config = await require_gateway_config_for_board(self.session, board)
|
||||
main_session_key = GatewayAgentIdentity.session_key(gateway)
|
||||
|
||||
correlation = payload.correlation_id.strip() if payload.correlation_id else ""
|
||||
correlation_line = f"Correlation ID: {correlation}\n" if correlation else ""
|
||||
preferred_channel = (payload.preferred_channel or "").strip()
|
||||
channel_line = f"Preferred channel: {preferred_channel}\n" if preferred_channel else ""
|
||||
tags = payload.reply_tags or ["gateway_main", "user_reply"]
|
||||
tags_json = json.dumps(tags)
|
||||
reply_source = payload.reply_source or "user_via_gateway_main"
|
||||
base_url = settings.base_url or "http://localhost:8000"
|
||||
message = (
|
||||
"LEAD REQUEST: ASK USER\n"
|
||||
f"Board: {board.name}\n"
|
||||
f"Board ID: {board.id}\n"
|
||||
f"From lead: {actor_agent.name}\n"
|
||||
f"{correlation_line}"
|
||||
f"{channel_line}\n"
|
||||
f"{payload.content.strip()}\n\n"
|
||||
"Please reach the user via your configured OpenClaw channel(s) "
|
||||
"(Slack/SMS/etc).\n"
|
||||
"If you cannot reach them there, post the question in Mission Control "
|
||||
"board chat as a fallback.\n\n"
|
||||
"When you receive the answer, reply in Mission Control by writing a "
|
||||
"NON-chat memory item on this board:\n"
|
||||
f"POST {base_url}/api/v1/agent/boards/{board.id}/memory\n"
|
||||
f'Body: {{"content":"<answer>","tags":{tags_json},"source":"{reply_source}"}}\n'
|
||||
"Do NOT reply in OpenClaw chat."
|
||||
)
|
||||
try:
|
||||
await self._dispatch_gateway_message(
|
||||
session_key=main_session_key,
|
||||
config=config,
|
||||
agent_name="Gateway Agent",
|
||||
message=message,
|
||||
deliver=True,
|
||||
)
|
||||
except (OpenClawGatewayError, TimeoutError) as exc:
|
||||
record_activity(
|
||||
self.session,
|
||||
event_type="gateway.lead.ask_user.failed",
|
||||
message=f"Lead user question failed for {board.name}: {exc}",
|
||||
agent_id=actor_agent.id,
|
||||
)
|
||||
await self.session.commit()
|
||||
self.logger.error(
|
||||
"gateway.coordination.ask_user.failed trace_id=%s board_id=%s actor_agent_id=%s "
|
||||
"error=%s",
|
||||
trace_id,
|
||||
board.id,
|
||||
actor_agent.id,
|
||||
str(exc),
|
||||
)
|
||||
raise map_gateway_error_to_http_exception(
|
||||
GatewayOperation.ASK_USER_DISPATCH,
|
||||
exc,
|
||||
) from exc
|
||||
except Exception as exc: # pragma: no cover - defensive guard
|
||||
self.logger.critical(
|
||||
"gateway.coordination.ask_user.failed_unexpected trace_id=%s board_id=%s "
|
||||
"actor_agent_id=%s error_type=%s error=%s",
|
||||
trace_id,
|
||||
board.id,
|
||||
actor_agent.id,
|
||||
exc.__class__.__name__,
|
||||
str(exc),
|
||||
)
|
||||
raise
|
||||
|
||||
record_activity(
|
||||
self.session,
|
||||
event_type="gateway.lead.ask_user.sent",
|
||||
message=f"Lead requested user info via gateway agent for board: {board.name}.",
|
||||
agent_id=actor_agent.id,
|
||||
)
|
||||
main_agent = await Agent.objects.filter_by(gateway_id=gateway.id, board_id=None).first(
|
||||
self.session,
|
||||
)
|
||||
await self.session.commit()
|
||||
self.logger.info(
|
||||
"gateway.coordination.ask_user.success trace_id=%s board_id=%s actor_agent_id=%s "
|
||||
"main_agent_id=%s",
|
||||
trace_id,
|
||||
board.id,
|
||||
actor_agent.id,
|
||||
main_agent.id if main_agent else None,
|
||||
)
|
||||
return GatewayMainAskUserResponse(
|
||||
board_id=board.id,
|
||||
main_agent_id=main_agent.id if main_agent else None,
|
||||
main_agent_name=main_agent.name if main_agent else None,
|
||||
)
|
||||
|
||||
async def _ensure_and_message_board_lead(
|
||||
self,
|
||||
*,
|
||||
gateway: Gateway,
|
||||
config: GatewayClientConfig,
|
||||
board: Board,
|
||||
message: str,
|
||||
) -> tuple[Agent, bool]:
|
||||
lead, lead_created = await ensure_board_lead_agent(
|
||||
self.session,
|
||||
request=LeadAgentRequest(
|
||||
board=board,
|
||||
gateway=gateway,
|
||||
config=config,
|
||||
user=None,
|
||||
options=LeadAgentOptions(action="provision"),
|
||||
),
|
||||
)
|
||||
if not lead.openclaw_session_id:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_422_UNPROCESSABLE_ENTITY,
|
||||
detail="Lead agent has no session key",
|
||||
)
|
||||
await self._dispatch_gateway_message(
|
||||
session_key=lead.openclaw_session_id or "",
|
||||
config=config,
|
||||
agent_name=lead.name,
|
||||
message=message,
|
||||
deliver=False,
|
||||
)
|
||||
return lead, lead_created
|
||||
|
||||
async def message_gateway_board_lead(
|
||||
self,
|
||||
*,
|
||||
actor_agent: Agent,
|
||||
board_id: UUID,
|
||||
payload: GatewayLeadMessageRequest,
|
||||
) -> GatewayLeadMessageResponse:
|
||||
trace_id = resolve_trace_id(payload.correlation_id, prefix="coord.lead_message")
|
||||
self.logger.log(
|
||||
5,
|
||||
"gateway.coordination.lead_message.start trace_id=%s board_id=%s actor_agent_id=%s",
|
||||
trace_id,
|
||||
board_id,
|
||||
actor_agent.id,
|
||||
)
|
||||
gateway, config = await self.require_gateway_main_actor(actor_agent)
|
||||
board = await self.require_gateway_board(gateway=gateway, board_id=board_id)
|
||||
message = self._build_gateway_lead_message(
|
||||
board=board,
|
||||
actor_agent_name=actor_agent.name,
|
||||
kind=payload.kind,
|
||||
content=payload.content,
|
||||
correlation_id=payload.correlation_id,
|
||||
reply_tags=payload.reply_tags,
|
||||
reply_source=payload.reply_source,
|
||||
)
|
||||
|
||||
try:
|
||||
lead, lead_created = await self._ensure_and_message_board_lead(
|
||||
gateway=gateway,
|
||||
config=config,
|
||||
board=board,
|
||||
message=message,
|
||||
)
|
||||
except (OpenClawGatewayError, TimeoutError) as exc:
|
||||
record_activity(
|
||||
self.session,
|
||||
event_type="gateway.main.lead_message.failed",
|
||||
message=f"Lead message failed for {board.name}: {exc}",
|
||||
agent_id=actor_agent.id,
|
||||
)
|
||||
await self.session.commit()
|
||||
self.logger.error(
|
||||
"gateway.coordination.lead_message.failed trace_id=%s board_id=%s "
|
||||
"actor_agent_id=%s error=%s",
|
||||
trace_id,
|
||||
board.id,
|
||||
actor_agent.id,
|
||||
str(exc),
|
||||
)
|
||||
raise map_gateway_error_to_http_exception(
|
||||
GatewayOperation.LEAD_MESSAGE_DISPATCH,
|
||||
exc,
|
||||
) from exc
|
||||
except Exception as exc: # pragma: no cover - defensive guard
|
||||
self.logger.critical(
|
||||
"gateway.coordination.lead_message.failed_unexpected trace_id=%s board_id=%s "
|
||||
"actor_agent_id=%s error_type=%s error=%s",
|
||||
trace_id,
|
||||
board.id,
|
||||
actor_agent.id,
|
||||
exc.__class__.__name__,
|
||||
str(exc),
|
||||
)
|
||||
raise
|
||||
|
||||
record_activity(
|
||||
self.session,
|
||||
event_type="gateway.main.lead_message.sent",
|
||||
message=f"Sent {payload.kind} to lead for board: {board.name}.",
|
||||
agent_id=actor_agent.id,
|
||||
)
|
||||
await self.session.commit()
|
||||
self.logger.info(
|
||||
"gateway.coordination.lead_message.success trace_id=%s board_id=%s "
|
||||
"actor_agent_id=%s lead_agent_id=%s",
|
||||
trace_id,
|
||||
board.id,
|
||||
actor_agent.id,
|
||||
lead.id,
|
||||
)
|
||||
return GatewayLeadMessageResponse(
|
||||
board_id=board.id,
|
||||
lead_agent_id=lead.id,
|
||||
lead_agent_name=lead.name,
|
||||
lead_created=lead_created,
|
||||
)
|
||||
|
||||
async def broadcast_gateway_lead_message(
|
||||
self,
|
||||
*,
|
||||
actor_agent: Agent,
|
||||
payload: GatewayLeadBroadcastRequest,
|
||||
) -> GatewayLeadBroadcastResponse:
|
||||
trace_id = resolve_trace_id(payload.correlation_id, prefix="coord.lead_broadcast")
|
||||
self.logger.log(
|
||||
5,
|
||||
"gateway.coordination.lead_broadcast.start trace_id=%s actor_agent_id=%s",
|
||||
trace_id,
|
||||
actor_agent.id,
|
||||
)
|
||||
gateway, config = await self.require_gateway_main_actor(actor_agent)
|
||||
statement = (
|
||||
select(Board)
|
||||
.where(col(Board.gateway_id) == gateway.id)
|
||||
.order_by(col(Board.created_at).desc())
|
||||
)
|
||||
if payload.board_ids:
|
||||
statement = statement.where(col(Board.id).in_(payload.board_ids))
|
||||
boards = list(await self.session.exec(statement))
|
||||
|
||||
results: list[GatewayLeadBroadcastBoardResult] = []
|
||||
sent = 0
|
||||
failed = 0
|
||||
|
||||
for board in boards:
|
||||
message = self._build_gateway_lead_message(
|
||||
board=board,
|
||||
actor_agent_name=actor_agent.name,
|
||||
kind=payload.kind,
|
||||
content=payload.content,
|
||||
correlation_id=payload.correlation_id,
|
||||
reply_tags=payload.reply_tags,
|
||||
reply_source=payload.reply_source,
|
||||
)
|
||||
try:
|
||||
lead, _lead_created = await self._ensure_and_message_board_lead(
|
||||
gateway=gateway,
|
||||
config=config,
|
||||
board=board,
|
||||
message=message,
|
||||
)
|
||||
board_result = GatewayLeadBroadcastBoardResult(
|
||||
board_id=board.id,
|
||||
lead_agent_id=lead.id,
|
||||
lead_agent_name=lead.name,
|
||||
ok=True,
|
||||
)
|
||||
sent += 1
|
||||
except (HTTPException, OpenClawGatewayError, TimeoutError, ValueError) as exc:
|
||||
board_result = GatewayLeadBroadcastBoardResult(
|
||||
board_id=board.id,
|
||||
ok=False,
|
||||
error=map_gateway_error_message(
|
||||
GatewayOperation.LEAD_BROADCAST_DISPATCH,
|
||||
exc,
|
||||
),
|
||||
)
|
||||
failed += 1
|
||||
results.append(board_result)
|
||||
|
||||
record_activity(
|
||||
self.session,
|
||||
event_type="gateway.main.lead_broadcast.sent",
|
||||
message=f"Broadcast {payload.kind} to {sent} board leads (failed: {failed}).",
|
||||
agent_id=actor_agent.id,
|
||||
)
|
||||
await self.session.commit()
|
||||
self.logger.info(
|
||||
"gateway.coordination.lead_broadcast.success trace_id=%s actor_agent_id=%s sent=%s "
|
||||
"failed=%s",
|
||||
trace_id,
|
||||
actor_agent.id,
|
||||
sent,
|
||||
failed,
|
||||
)
|
||||
return GatewayLeadBroadcastResponse(
|
||||
ok=True,
|
||||
sent=sent,
|
||||
failed=failed,
|
||||
results=results,
|
||||
)
|
||||
127
backend/app/services/openclaw/onboarding_service.py
Normal file
127
backend/app/services/openclaw/onboarding_service.py
Normal file
@@ -0,0 +1,127 @@
|
||||
"""Board onboarding gateway messaging service."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from app.integrations.openclaw_gateway import OpenClawGatewayError
|
||||
from app.models.board_onboarding import BoardOnboardingSession
|
||||
from app.models.boards import Board
|
||||
from app.services.openclaw.coordination_service import AbstractGatewayMessagingService
|
||||
from app.services.openclaw.exceptions import GatewayOperation, map_gateway_error_to_http_exception
|
||||
from app.services.openclaw.shared import (
|
||||
GatewayAgentIdentity,
|
||||
require_gateway_config_for_board,
|
||||
resolve_trace_id,
|
||||
)
|
||||
|
||||
|
||||
class BoardOnboardingMessagingService(AbstractGatewayMessagingService):
|
||||
"""Gateway message dispatch helpers for onboarding routes."""
|
||||
|
||||
async def dispatch_start_prompt(
|
||||
self,
|
||||
*,
|
||||
board: Board,
|
||||
prompt: str,
|
||||
correlation_id: str | None = None,
|
||||
) -> str:
|
||||
trace_id = resolve_trace_id(correlation_id, prefix="onboarding.start")
|
||||
self.logger.log(
|
||||
5,
|
||||
"gateway.onboarding.start_dispatch.start trace_id=%s board_id=%s",
|
||||
trace_id,
|
||||
board.id,
|
||||
)
|
||||
gateway, config = await require_gateway_config_for_board(self.session, board)
|
||||
session_key = GatewayAgentIdentity.session_key(gateway)
|
||||
try:
|
||||
await self._dispatch_gateway_message(
|
||||
session_key=session_key,
|
||||
config=config,
|
||||
agent_name="Gateway Agent",
|
||||
message=prompt,
|
||||
deliver=False,
|
||||
)
|
||||
except (OpenClawGatewayError, TimeoutError) as exc:
|
||||
self.logger.error(
|
||||
"gateway.onboarding.start_dispatch.failed trace_id=%s board_id=%s error=%s",
|
||||
trace_id,
|
||||
board.id,
|
||||
str(exc),
|
||||
)
|
||||
raise map_gateway_error_to_http_exception(
|
||||
GatewayOperation.ONBOARDING_START_DISPATCH,
|
||||
exc,
|
||||
) from exc
|
||||
except Exception as exc: # pragma: no cover - defensive guard
|
||||
self.logger.critical(
|
||||
"gateway.onboarding.start_dispatch.failed_unexpected trace_id=%s board_id=%s "
|
||||
"error_type=%s error=%s",
|
||||
trace_id,
|
||||
board.id,
|
||||
exc.__class__.__name__,
|
||||
str(exc),
|
||||
)
|
||||
raise
|
||||
self.logger.info(
|
||||
"gateway.onboarding.start_dispatch.success trace_id=%s board_id=%s session_key=%s",
|
||||
trace_id,
|
||||
board.id,
|
||||
session_key,
|
||||
)
|
||||
return session_key
|
||||
|
||||
async def dispatch_answer(
|
||||
self,
|
||||
*,
|
||||
board: Board,
|
||||
onboarding: BoardOnboardingSession,
|
||||
answer_text: str,
|
||||
correlation_id: str | None = None,
|
||||
) -> None:
|
||||
trace_id = resolve_trace_id(correlation_id, prefix="onboarding.answer")
|
||||
self.logger.log(
|
||||
5,
|
||||
"gateway.onboarding.answer_dispatch.start trace_id=%s board_id=%s onboarding_id=%s",
|
||||
trace_id,
|
||||
board.id,
|
||||
onboarding.id,
|
||||
)
|
||||
_gateway, config = await require_gateway_config_for_board(self.session, board)
|
||||
try:
|
||||
await self._dispatch_gateway_message(
|
||||
session_key=onboarding.session_key,
|
||||
config=config,
|
||||
agent_name="Gateway Agent",
|
||||
message=answer_text,
|
||||
deliver=False,
|
||||
)
|
||||
except (OpenClawGatewayError, TimeoutError) as exc:
|
||||
self.logger.error(
|
||||
"gateway.onboarding.answer_dispatch.failed trace_id=%s board_id=%s "
|
||||
"onboarding_id=%s error=%s",
|
||||
trace_id,
|
||||
board.id,
|
||||
onboarding.id,
|
||||
str(exc),
|
||||
)
|
||||
raise map_gateway_error_to_http_exception(
|
||||
GatewayOperation.ONBOARDING_ANSWER_DISPATCH,
|
||||
exc,
|
||||
) from exc
|
||||
except Exception as exc: # pragma: no cover - defensive guard
|
||||
self.logger.critical(
|
||||
"gateway.onboarding.answer_dispatch.failed_unexpected trace_id=%s board_id=%s "
|
||||
"onboarding_id=%s error_type=%s error=%s",
|
||||
trace_id,
|
||||
board.id,
|
||||
onboarding.id,
|
||||
exc.__class__.__name__,
|
||||
str(exc),
|
||||
)
|
||||
raise
|
||||
self.logger.info(
|
||||
"gateway.onboarding.answer_dispatch.success trace_id=%s board_id=%s onboarding_id=%s",
|
||||
trace_id,
|
||||
board.id,
|
||||
onboarding.id,
|
||||
)
|
||||
File diff suppressed because it is too large
Load Diff
367
backend/app/services/openclaw/session_service.py
Normal file
367
backend/app/services/openclaw/session_service.py
Normal file
@@ -0,0 +1,367 @@
|
||||
"""Gateway session query service."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import logging
|
||||
from collections.abc import Iterable
|
||||
from dataclasses import dataclass
|
||||
from typing import TYPE_CHECKING
|
||||
from uuid import UUID
|
||||
|
||||
from fastapi import HTTPException, status
|
||||
from sqlmodel import col
|
||||
|
||||
from app.integrations.openclaw_gateway import GatewayConfig as GatewayClientConfig
|
||||
from app.integrations.openclaw_gateway import (
|
||||
OpenClawGatewayError,
|
||||
ensure_session,
|
||||
get_chat_history,
|
||||
openclaw_call,
|
||||
send_message,
|
||||
)
|
||||
from app.models.agents import Agent
|
||||
from app.models.boards import Board
|
||||
from app.models.gateways import Gateway
|
||||
from app.schemas.gateway_api import (
|
||||
GatewayResolveQuery,
|
||||
GatewaySessionHistoryResponse,
|
||||
GatewaySessionMessageRequest,
|
||||
GatewaySessionResponse,
|
||||
GatewaySessionsResponse,
|
||||
GatewaysStatusResponse,
|
||||
)
|
||||
from app.services.organizations import require_board_access
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from sqlmodel.ext.asyncio.session import AsyncSession
|
||||
|
||||
from app.models.users import User
|
||||
|
||||
|
||||
@dataclass(frozen=True, slots=True)
|
||||
class GatewayTemplateSyncQuery:
|
||||
"""Sync options parsed from query args for gateway template operations."""
|
||||
|
||||
include_main: bool
|
||||
reset_sessions: bool
|
||||
rotate_tokens: bool
|
||||
force_bootstrap: bool
|
||||
board_id: UUID | None
|
||||
|
||||
|
||||
class GatewaySessionService:
|
||||
"""Read/query gateway runtime session state for user-facing APIs."""
|
||||
|
||||
def __init__(self, session: AsyncSession) -> None:
|
||||
self._session = session
|
||||
self._logger = logging.getLogger(__name__)
|
||||
|
||||
@property
|
||||
def session(self) -> AsyncSession:
|
||||
return self._session
|
||||
|
||||
@session.setter
|
||||
def session(self, value: AsyncSession) -> None:
|
||||
self._session = value
|
||||
|
||||
@property
|
||||
def logger(self) -> logging.Logger:
|
||||
return self._logger
|
||||
|
||||
@logger.setter
|
||||
def logger(self, value: logging.Logger) -> None:
|
||||
self._logger = value
|
||||
|
||||
@staticmethod
|
||||
def to_resolve_query(
|
||||
board_id: str | None,
|
||||
gateway_url: str | None,
|
||||
gateway_token: str | None,
|
||||
) -> GatewayResolveQuery:
|
||||
return GatewayResolveQuery(
|
||||
board_id=board_id,
|
||||
gateway_url=gateway_url,
|
||||
gateway_token=gateway_token,
|
||||
)
|
||||
|
||||
@staticmethod
|
||||
def as_object_list(value: object) -> list[object]:
|
||||
if value is None:
|
||||
return []
|
||||
if isinstance(value, list):
|
||||
return value
|
||||
if isinstance(value, (tuple, set)):
|
||||
return list(value)
|
||||
if isinstance(value, (str, bytes, dict)):
|
||||
return []
|
||||
if isinstance(value, Iterable):
|
||||
return list(value)
|
||||
return []
|
||||
|
||||
async def resolve_gateway(
|
||||
self,
|
||||
params: GatewayResolveQuery,
|
||||
*,
|
||||
user: User | None = None,
|
||||
) -> tuple[Board | None, GatewayClientConfig, str | None]:
|
||||
self.logger.log(
|
||||
5,
|
||||
"gateway.resolve.start board_id=%s gateway_url=%s",
|
||||
params.board_id,
|
||||
params.gateway_url,
|
||||
)
|
||||
if params.gateway_url:
|
||||
return (
|
||||
None,
|
||||
GatewayClientConfig(url=params.gateway_url, token=params.gateway_token),
|
||||
None,
|
||||
)
|
||||
if not params.board_id:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_422_UNPROCESSABLE_ENTITY,
|
||||
detail="board_id or gateway_url is required",
|
||||
)
|
||||
board = await Board.objects.by_id(params.board_id).first(self.session)
|
||||
if board is None:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_404_NOT_FOUND,
|
||||
detail="Board not found",
|
||||
)
|
||||
if user is not None:
|
||||
await require_board_access(self.session, user=user, board=board, write=False)
|
||||
if not board.gateway_id:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_422_UNPROCESSABLE_ENTITY,
|
||||
detail="Board gateway_id is required",
|
||||
)
|
||||
gateway = await Gateway.objects.by_id(board.gateway_id).first(self.session)
|
||||
if gateway is None:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_422_UNPROCESSABLE_ENTITY,
|
||||
detail="Board gateway_id is invalid",
|
||||
)
|
||||
if not gateway.url:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_422_UNPROCESSABLE_ENTITY,
|
||||
detail="Gateway url is required",
|
||||
)
|
||||
main_agent = (
|
||||
await Agent.objects.filter_by(gateway_id=gateway.id)
|
||||
.filter(col(Agent.board_id).is_(None))
|
||||
.first(self.session)
|
||||
)
|
||||
main_session = main_agent.openclaw_session_id if main_agent else None
|
||||
return (
|
||||
board,
|
||||
GatewayClientConfig(url=gateway.url, token=gateway.token),
|
||||
main_session,
|
||||
)
|
||||
|
||||
async def require_gateway(
|
||||
self,
|
||||
board_id: str | None,
|
||||
*,
|
||||
user: User | None = None,
|
||||
) -> tuple[Board, GatewayClientConfig, str | None]:
|
||||
params = GatewayResolveQuery(board_id=board_id)
|
||||
board, config, main_session = await self.resolve_gateway(params, user=user)
|
||||
if board is None:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_422_UNPROCESSABLE_ENTITY,
|
||||
detail="board_id is required",
|
||||
)
|
||||
return board, config, main_session
|
||||
|
||||
async def list_sessions(self, config: GatewayClientConfig) -> list[dict[str, object]]:
|
||||
sessions = await openclaw_call("sessions.list", config=config)
|
||||
if isinstance(sessions, dict):
|
||||
raw_items = self.as_object_list(sessions.get("sessions"))
|
||||
else:
|
||||
raw_items = self.as_object_list(sessions)
|
||||
return [item for item in raw_items if isinstance(item, dict)]
|
||||
|
||||
async def with_main_session(
|
||||
self,
|
||||
sessions_list: list[dict[str, object]],
|
||||
*,
|
||||
config: GatewayClientConfig,
|
||||
main_session: str | None,
|
||||
) -> list[dict[str, object]]:
|
||||
if not main_session or any(item.get("key") == main_session for item in sessions_list):
|
||||
return sessions_list
|
||||
try:
|
||||
await ensure_session(main_session, config=config, label="Gateway Agent")
|
||||
return await self.list_sessions(config)
|
||||
except OpenClawGatewayError:
|
||||
return sessions_list
|
||||
|
||||
@staticmethod
|
||||
def _require_same_org(board: Board | None, organization_id: UUID) -> None:
|
||||
if board is not None and board.organization_id != organization_id:
|
||||
raise HTTPException(status_code=status.HTTP_403_FORBIDDEN)
|
||||
|
||||
async def get_status(
|
||||
self,
|
||||
*,
|
||||
params: GatewayResolveQuery,
|
||||
organization_id: UUID,
|
||||
user: User | None,
|
||||
) -> GatewaysStatusResponse:
|
||||
board, config, main_session = await self.resolve_gateway(params, user=user)
|
||||
self._require_same_org(board, organization_id)
|
||||
try:
|
||||
sessions = await openclaw_call("sessions.list", config=config)
|
||||
if isinstance(sessions, dict):
|
||||
sessions_list = self.as_object_list(sessions.get("sessions"))
|
||||
else:
|
||||
sessions_list = self.as_object_list(sessions)
|
||||
main_session_entry: object | None = None
|
||||
main_session_error: str | None = None
|
||||
if main_session:
|
||||
try:
|
||||
ensured = await ensure_session(
|
||||
main_session,
|
||||
config=config,
|
||||
label="Gateway Agent",
|
||||
)
|
||||
if isinstance(ensured, dict):
|
||||
main_session_entry = ensured.get("entry") or ensured
|
||||
except OpenClawGatewayError as exc:
|
||||
main_session_error = str(exc)
|
||||
return GatewaysStatusResponse(
|
||||
connected=True,
|
||||
gateway_url=config.url,
|
||||
sessions_count=len(sessions_list),
|
||||
sessions=sessions_list,
|
||||
main_session=main_session_entry,
|
||||
main_session_error=main_session_error,
|
||||
)
|
||||
except OpenClawGatewayError as exc:
|
||||
return GatewaysStatusResponse(
|
||||
connected=False,
|
||||
gateway_url=config.url,
|
||||
error=str(exc),
|
||||
)
|
||||
|
||||
async def get_sessions(
|
||||
self,
|
||||
*,
|
||||
board_id: str | None,
|
||||
organization_id: UUID,
|
||||
user: User | None,
|
||||
) -> GatewaySessionsResponse:
|
||||
params = GatewayResolveQuery(board_id=board_id)
|
||||
board, config, main_session = await self.resolve_gateway(params, user=user)
|
||||
self._require_same_org(board, organization_id)
|
||||
try:
|
||||
sessions = await openclaw_call("sessions.list", config=config)
|
||||
except OpenClawGatewayError as exc:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_502_BAD_GATEWAY,
|
||||
detail=str(exc),
|
||||
) from exc
|
||||
if isinstance(sessions, dict):
|
||||
sessions_list = self.as_object_list(sessions.get("sessions"))
|
||||
else:
|
||||
sessions_list = self.as_object_list(sessions)
|
||||
|
||||
main_session_entry: object | None = None
|
||||
if main_session:
|
||||
try:
|
||||
ensured = await ensure_session(
|
||||
main_session,
|
||||
config=config,
|
||||
label="Gateway Agent",
|
||||
)
|
||||
if isinstance(ensured, dict):
|
||||
main_session_entry = ensured.get("entry") or ensured
|
||||
except OpenClawGatewayError:
|
||||
main_session_entry = None
|
||||
return GatewaySessionsResponse(sessions=sessions_list, main_session=main_session_entry)
|
||||
|
||||
async def get_session(
|
||||
self,
|
||||
*,
|
||||
session_id: str,
|
||||
board_id: str | None,
|
||||
organization_id: UUID,
|
||||
user: User | None,
|
||||
) -> GatewaySessionResponse:
|
||||
params = GatewayResolveQuery(board_id=board_id)
|
||||
board, config, main_session = await self.resolve_gateway(params, user=user)
|
||||
self._require_same_org(board, organization_id)
|
||||
try:
|
||||
sessions_list = await self.list_sessions(config)
|
||||
except OpenClawGatewayError as exc:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_502_BAD_GATEWAY,
|
||||
detail=str(exc),
|
||||
) from exc
|
||||
sessions_list = await self.with_main_session(
|
||||
sessions_list,
|
||||
config=config,
|
||||
main_session=main_session,
|
||||
)
|
||||
session_entry = next(
|
||||
(item for item in sessions_list if item.get("key") == session_id), None
|
||||
)
|
||||
if session_entry is None and main_session and session_id == main_session:
|
||||
try:
|
||||
ensured = await ensure_session(
|
||||
main_session,
|
||||
config=config,
|
||||
label="Gateway Agent",
|
||||
)
|
||||
if isinstance(ensured, dict):
|
||||
session_entry = ensured.get("entry") or ensured
|
||||
except OpenClawGatewayError:
|
||||
session_entry = None
|
||||
if session_entry is None:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_404_NOT_FOUND,
|
||||
detail="Session not found",
|
||||
)
|
||||
return GatewaySessionResponse(session=session_entry)
|
||||
|
||||
async def get_session_history(
|
||||
self,
|
||||
*,
|
||||
session_id: str,
|
||||
board_id: str | None,
|
||||
organization_id: UUID,
|
||||
user: User | None,
|
||||
) -> GatewaySessionHistoryResponse:
|
||||
board, config, _ = await self.require_gateway(board_id, user=user)
|
||||
self._require_same_org(board, organization_id)
|
||||
try:
|
||||
history = await get_chat_history(session_id, config=config)
|
||||
except OpenClawGatewayError as exc:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_502_BAD_GATEWAY,
|
||||
detail=str(exc),
|
||||
) from exc
|
||||
if isinstance(history, dict) and isinstance(history.get("messages"), list):
|
||||
return GatewaySessionHistoryResponse(history=history["messages"])
|
||||
return GatewaySessionHistoryResponse(history=self.as_object_list(history))
|
||||
|
||||
async def send_session_message(
|
||||
self,
|
||||
*,
|
||||
session_id: str,
|
||||
payload: GatewaySessionMessageRequest,
|
||||
board_id: str | None,
|
||||
user: User | None,
|
||||
) -> None:
|
||||
board, config, main_session = await self.require_gateway(board_id, user=user)
|
||||
if user is None:
|
||||
raise HTTPException(status_code=status.HTTP_401_UNAUTHORIZED)
|
||||
await require_board_access(self.session, user=user, board=board, write=True)
|
||||
try:
|
||||
if main_session and session_id == main_session:
|
||||
await ensure_session(main_session, config=config, label="Gateway Agent")
|
||||
await send_message(payload.content, session_key=session_id, config=config)
|
||||
except OpenClawGatewayError as exc:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_502_BAD_GATEWAY,
|
||||
detail=str(exc),
|
||||
) from exc
|
||||
Reference in New Issue
Block a user