Files
HSAP/platform/as_platform/integrations/feishu_notify.py
Chengfang Lu e72bc061c5 feat: HSAP platform v2 — modular navigation, quality review, audit log, world model simulation
Major changes:
- New frontend (platform/web/): Vite + React 18 + TypeScript + Tailwind
- 4-module navigation: 数据送标 / 模型管理 / 车队管理 / 系统管理
- Data catalog with charts (DMS/ADAS/Lane 3-tab view)
- Quality review workflow (标注质检): Good/Fine/Bad scoring with auto-advance
- Audit enhancements: batch operations, rejection categories, Feishu notifications
- Operation audit log (操作日志)
- World model simulation studio (仿真工坊)
- Dataset version management with snapshots and diff
- ADAS 7-class dataset integration (138K images organized + compressed)
- User management with Feishu integration and pagination
- CRUD/search/filter on all pages, card layout redesign
- PIL-optimized image overlay rendering
- Auto-snapshot on build, in_review workflow stage
- Removed embedded algorithm code (now in workspace)
2026-06-03 11:40:21 +08:00

69 lines
2.0 KiB
Python

"""飞书群消息通知(出站,内网可用)。"""
from __future__ import annotations
import json
from typing import Any
import httpx
from as_platform.auth.feishu import _get_tenant_access_token
from as_platform.config import FEISHU_APP_ID, FEISHU_APP_SECRET, FEISHU_LABELING_CHAT_ID
IM_MSG_URL = "https://open.feishu.cn/open-apis/im/v1/messages"
def is_notify_configured() -> bool:
return bool(FEISHU_APP_ID and FEISHU_APP_SECRET and FEISHU_LABELING_CHAT_ID)
def send_chat_text(text: str) -> dict[str, Any]:
if not is_notify_configured():
return {"ok": False, "message": "未配置 FEISHU_LABELING_CHAT_ID"}
with httpx.Client(timeout=30.0) as client:
token = _get_tenant_access_token(client)
resp = client.post(
IM_MSG_URL,
params={"receive_id_type": "chat_id"},
headers={"Authorization": f"Bearer {token}"},
json={
"receive_id": FEISHU_LABELING_CHAT_ID,
"msg_type": "text",
"content": json.dumps({"text": text}, ensure_ascii=False),
},
)
resp.raise_for_status()
data = resp.json()
if data.get("code") != 0:
return {"ok": False, "message": data.get("msg") or "send failed"}
return {"ok": True}
def send_chat_async(text: str) -> None:
"""异步发送飞书消息,不阻塞主流程。"""
import threading
threading.Thread(target=_send_safe, args=(text,), daemon=True, name="feishu-notify").start()
def _send_safe(text: str) -> None:
try:
send_chat_text(text)
except Exception:
pass # 通知失败不影响业务流程
def notify_batch_progress(
*,
delivery_id: str,
task: str,
batch_name: str,
progress: str,
link: str,
) -> dict[str, Any]:
text = (
f"[HSAP] 标注进度 {delivery_id or batch_name}\n"
f"任务: {task} / 批次: {batch_name}\n"
f"进度: {progress}\n"
f"链接: {link}"
)
return send_chat_text(text)