263 lines
9.2 KiB
Python
263 lines
9.2 KiB
Python
from __future__ import annotations
|
|
|
|
from fastapi import APIRouter, Body, Depends, HTTPException, Query, status
|
|
from sqlmodel import Session
|
|
|
|
from app.core.auth import AuthContext, get_auth_context
|
|
from app.db.session import get_session
|
|
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.integrations.openclaw_gateway_protocol import (
|
|
GATEWAY_EVENTS,
|
|
GATEWAY_METHODS,
|
|
PROTOCOL_VERSION,
|
|
)
|
|
from app.models.boards import Board
|
|
from app.models.gateways import Gateway
|
|
|
|
router = APIRouter(prefix="/gateways", tags=["gateways"])
|
|
|
|
|
|
def _resolve_gateway(
|
|
session: Session,
|
|
board_id: str | None,
|
|
gateway_url: str | None,
|
|
gateway_token: str | None,
|
|
gateway_main_session_key: str | None,
|
|
) -> tuple[Board | None, GatewayClientConfig, str | None]:
|
|
if gateway_url:
|
|
return (
|
|
None,
|
|
GatewayClientConfig(url=gateway_url, token=gateway_token),
|
|
gateway_main_session_key,
|
|
)
|
|
if not board_id:
|
|
raise HTTPException(
|
|
status_code=status.HTTP_422_UNPROCESSABLE_ENTITY,
|
|
detail="board_id or gateway_url is required",
|
|
)
|
|
board = session.get(Board, board_id)
|
|
if board is None:
|
|
raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Board not found")
|
|
if not board.gateway_id:
|
|
raise HTTPException(
|
|
status_code=status.HTTP_422_UNPROCESSABLE_ENTITY,
|
|
detail="Board gateway_id is required",
|
|
)
|
|
gateway = session.get(Gateway, board.gateway_id)
|
|
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",
|
|
)
|
|
return (
|
|
board,
|
|
GatewayClientConfig(url=gateway.url, token=gateway.token),
|
|
gateway.main_session_key,
|
|
)
|
|
|
|
|
|
def _require_gateway(
|
|
session: Session, board_id: str | None
|
|
) -> tuple[Board, GatewayClientConfig, str | None]:
|
|
board, config, main_session = _resolve_gateway(session, board_id, None, None, None)
|
|
if board is None:
|
|
raise HTTPException(
|
|
status_code=status.HTTP_422_UNPROCESSABLE_ENTITY,
|
|
detail="board_id is required",
|
|
)
|
|
return board, config, main_session
|
|
|
|
|
|
@router.get("/status")
|
|
async def gateways_status(
|
|
board_id: str | None = Query(default=None),
|
|
gateway_url: str | None = Query(default=None),
|
|
gateway_token: str | None = Query(default=None),
|
|
gateway_main_session_key: str | None = Query(default=None),
|
|
session: Session = Depends(get_session),
|
|
auth: AuthContext = Depends(get_auth_context),
|
|
) -> dict[str, object]:
|
|
board, config, main_session = _resolve_gateway(
|
|
session,
|
|
board_id,
|
|
gateway_url,
|
|
gateway_token,
|
|
gateway_main_session_key,
|
|
)
|
|
try:
|
|
sessions = await openclaw_call("sessions.list", config=config)
|
|
if isinstance(sessions, dict):
|
|
sessions_list = list(sessions.get("sessions") or [])
|
|
else:
|
|
sessions_list = list(sessions or [])
|
|
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="Main Agent")
|
|
if isinstance(ensured, dict):
|
|
main_session_entry = ensured.get("entry") or ensured
|
|
except OpenClawGatewayError as exc:
|
|
main_session_error = str(exc)
|
|
return {
|
|
"connected": True,
|
|
"gateway_url": config.url,
|
|
"sessions_count": len(sessions_list),
|
|
"sessions": sessions_list,
|
|
"main_session_key": main_session,
|
|
"main_session": main_session_entry,
|
|
"main_session_error": main_session_error,
|
|
}
|
|
except OpenClawGatewayError as exc:
|
|
return {
|
|
"connected": False,
|
|
"gateway_url": config.url,
|
|
"error": str(exc),
|
|
}
|
|
|
|
|
|
@router.get("/sessions")
|
|
async def list_gateway_sessions(
|
|
board_id: str | None = Query(default=None),
|
|
session: Session = Depends(get_session),
|
|
auth: AuthContext = Depends(get_auth_context),
|
|
) -> dict[str, object]:
|
|
board, config, main_session = _resolve_gateway(
|
|
session,
|
|
board_id,
|
|
None,
|
|
None,
|
|
None,
|
|
)
|
|
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 = list(sessions.get("sessions") or [])
|
|
else:
|
|
sessions_list = list(sessions or [])
|
|
|
|
main_session_entry: object | None = None
|
|
if main_session:
|
|
try:
|
|
ensured = await ensure_session(main_session, config=config, label="Main Agent")
|
|
if isinstance(ensured, dict):
|
|
main_session_entry = ensured.get("entry") or ensured
|
|
except OpenClawGatewayError:
|
|
main_session_entry = None
|
|
|
|
return {
|
|
"sessions": sessions_list,
|
|
"main_session_key": main_session,
|
|
"main_session": main_session_entry,
|
|
}
|
|
|
|
|
|
@router.get("/sessions/{session_id}")
|
|
async def get_gateway_session(
|
|
session_id: str,
|
|
board_id: str | None = Query(default=None),
|
|
session: Session = Depends(get_session),
|
|
auth: AuthContext = Depends(get_auth_context),
|
|
) -> dict[str, object]:
|
|
board, config, main_session = _resolve_gateway(
|
|
session,
|
|
board_id,
|
|
None,
|
|
None,
|
|
None,
|
|
)
|
|
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 = list(sessions.get("sessions") or [])
|
|
else:
|
|
sessions_list = list(sessions or [])
|
|
if main_session and not any(session.get("key") == main_session for session in sessions_list):
|
|
try:
|
|
await ensure_session(main_session, config=config, label="Main Agent")
|
|
refreshed = await openclaw_call("sessions.list", config=config)
|
|
if isinstance(refreshed, dict):
|
|
sessions_list = list(refreshed.get("sessions") or [])
|
|
else:
|
|
sessions_list = list(refreshed or [])
|
|
except OpenClawGatewayError:
|
|
pass
|
|
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="Main 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 {"session": session_entry}
|
|
|
|
|
|
@router.get("/sessions/{session_id}/history")
|
|
async def get_session_history(
|
|
session_id: str,
|
|
board_id: str | None = Query(default=None),
|
|
session: Session = Depends(get_session),
|
|
auth: AuthContext = Depends(get_auth_context),
|
|
) -> dict[str, object]:
|
|
_, config, _ = _require_gateway(session, board_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 {"history": history["messages"]}
|
|
return {"history": list(history or [])}
|
|
|
|
|
|
@router.post("/sessions/{session_id}/message")
|
|
async def send_gateway_session_message(
|
|
session_id: str,
|
|
payload: dict = Body(...),
|
|
board_id: str | None = Query(default=None),
|
|
session: Session = Depends(get_session),
|
|
auth: AuthContext = Depends(get_auth_context),
|
|
) -> dict[str, bool]:
|
|
content = payload.get("content")
|
|
if not content:
|
|
raise HTTPException(
|
|
status_code=status.HTTP_422_UNPROCESSABLE_ENTITY, detail="content is required"
|
|
)
|
|
board, config, main_session = _require_gateway(session, board_id)
|
|
try:
|
|
if main_session and session_id == main_session:
|
|
await ensure_session(main_session, config=config, label="Main Agent")
|
|
await send_message(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
|
|
return {"ok": True}
|
|
|
|
|
|
@router.get("/commands")
|
|
async def gateway_commands(
|
|
auth: AuthContext = Depends(get_auth_context),
|
|
) -> dict[str, object]:
|
|
return {
|
|
"protocol_version": PROTOCOL_VERSION,
|
|
"methods": GATEWAY_METHODS,
|
|
"events": GATEWAY_EVENTS,
|
|
}
|