ForcePilot/backend/package/yuxi/channel/extensions/msteams/graph_upload.py
Kris 94444ced96 feat(channel): 添加 Microsoft Teams 渠道扩展
新增 Microsoft Teams 渠道扩展,支持在 Yuxi 平台中集成 Microsoft Teams 协作平台。

包含以下功能模块:
- sdk: Bot Framework SDK 封装
- config: 渠道配置管理
- gateway: SSE/WebSocket 网关接入
- webhook: Webhook 事件处理
- outbound: 外发消息管理
- streaming: 流式消息处理
- pairing: 用户配对与绑定
- security: 安全校验
- auth: JWT 认证
- jwks: JWKS 密钥管理
- dedupe: 消息去重
- monitor: 渠道状态监控
- status: 会话状态管理
- session: 会话管理
- state: 状态管理
- runtime: 运行时管理
- actions: 动作处理
- adaptive_card: 自适应卡片
- task_modules: 任务模块
- message_extension: 消息扩展
- proactive: Proactive Messaging
- graph: Microsoft Graph API 集成
- graph_teams: Teams 操作
- graph_members: 成员管理
- graph_messages: 消息获取
- graph_thread: 线程管理
- graph_users: 用户管理
- graph_upload: 文件上传
- files: 文件处理
- file_consent: 文件授权
- conversations: 会话存储
- mentions: @提及处理
- threading: 线程管理
- reactions: 表情反应
- polls: 投票功能
- meetings: 会议集成
- feedback: 反馈处理
- sso: 单点登录
- deep_links: 深层链接
- incoming_webhook: 入站 Webhook
- localization: 本地化
- user_agent: 用户代理
- sent_message_cache: 消息缓存
- types: 类型定义
2026-05-21 11:28:42 +08:00

157 lines
4.8 KiB
Python

from __future__ import annotations
import logging
from .graph import MSTeamsGraphClient
logger = logging.getLogger(__name__)
async def upload_to_onedrive(
graph_client: MSTeamsGraphClient,
file_content: bytes,
file_name: str,
*,
folder: str = "ForcePilot",
) -> dict | None:
upload_path = f"/me/drive/root:/{folder}/{file_name}:/content"
upload_url = f"/me/drive/root:/{folder}/{file_name}:/createUploadSession"
try:
session_data = await graph_client.fetch_json(
upload_url,
method="POST",
body={
"@microsoft.graph.conflictBehavior": "rename",
},
)
except Exception as e:
logger.warning("Failed to create OneDrive upload session for %s: %s", file_name, e)
return None
upload_url_dest = session_data.get("uploadUrl", "")
if not upload_url_dest:
try:
result = await graph_client.fetch_json(upload_path, method="PUT", body=file_content)
return await _create_share_link(graph_client, result.get("id", ""), file_name)
except Exception as e:
logger.warning("Failed to upload %s to OneDrive: %s", file_name, e)
return None
chunk_size = 327680
total_len = len(file_content)
offset = 0
while offset < total_len:
end = min(offset + chunk_size, total_len)
chunk = file_content[offset:end]
headers = {
"Content-Length": str(len(chunk)),
"Content-Range": f"bytes {offset}-{end - 1}/{total_len}",
}
try:
import httpx
token = await graph_client._get_token()
async with httpx.AsyncClient(timeout=60.0) as client:
resp = await client.put(
upload_url_dest,
content=chunk,
headers={"Authorization": f"Bearer {token}", **headers},
)
resp.raise_for_status()
if end == total_len:
result = resp.json()
return await _create_share_link(graph_client, result.get("id", ""), file_name)
except Exception as e:
logger.warning("Failed to upload chunk for %s: %s", file_name, e)
return None
offset = end
return None
async def upload_to_sharepoint(
graph_client: MSTeamsGraphClient,
file_content: bytes,
file_name: str,
site_id: str,
*,
folder: str = "General",
) -> dict | None:
path = f"/sites/{site_id}/drive/root:/{folder}/{file_name}:/content"
try:
await graph_client.fetch_json(path, method="PUT", body=file_content)
item_path = f"/sites/{site_id}/drive/root:/{folder}/{file_name}"
item_data = await graph_client.fetch_json(item_path)
return await _create_share_link(graph_client, item_data.get("id", ""), file_name, site_id=site_id)
except Exception as e:
logger.warning("Failed to upload %s to SharePoint: %s", file_name, e)
return None
async def _create_share_link(
graph_client: MSTeamsGraphClient,
item_id: str,
file_name: str,
site_id: str | None = None,
) -> dict | None:
if not item_id:
return None
if site_id:
share_path = f"/sites/{site_id}/drive/items/{item_id}/createLink"
else:
share_path = f"/me/drive/items/{item_id}/createLink"
try:
result = await graph_client.fetch_json(
share_path,
method="POST",
body={
"type": "view",
"scope": "organization",
},
)
web_url = result.get("link", {}).get("webUrl", "")
return {
"file_name": file_name,
"item_id": item_id,
"web_url": web_url,
"share_url": web_url,
}
except Exception as e:
logger.warning("Failed to create share link for %s: %s", file_name, e)
try:
item_path = f"/me/drive/items/{item_id}"
item = await graph_client.fetch_json(item_path)
web_url = item.get("webUrl", "")
return {
"file_name": file_name,
"item_id": item_id,
"web_url": web_url,
"share_url": web_url,
}
except Exception:
pass
return None
async def get_file_content(graph_client: MSTeamsGraphClient, item_id: str) -> bytes | None:
path = f"/me/drive/items/{item_id}/content"
try:
import httpx
token = await graph_client._get_token()
url = f"https://graph.microsoft.com/v1.0{path}"
async with httpx.AsyncClient(timeout=60.0) as client:
resp = await client.get(url, headers={"Authorization": f"Bearer {token}"})
resp.raise_for_status()
return resp.content
except Exception as e:
logger.warning("Failed to get file content for %s: %s", item_id, e)
return None