ForcePilot/backend/package/yuxi/channel/extensions/line/delivery.py
Kris 7fd658af57 feat(channel): 添加 LINE 渠道扩展
新增 LINE 渠道扩展,支持在 Yuxi 平台中集成 LINE 即时通讯渠道。

包含以下功能模块:
- bot: LINE Bot 客户端封装
- config: 渠道配置管理
- gateway: SSE/WebSocket 网关接入
- webhook: Webhook 事件处理
- outbound: 外发消息管理
- streaming: 流式消息处理
- pairing: 用户配对与绑定
- security: 安全校验
- signature: 请求签名验证
- token_manager: Token 管理
- dedupe: 消息去重
- monitor: 渠道状态监控
- status: 会话状态管理
- session: 会话管理
- flex_templates: Flex 模板消息
- card_command: 卡片指令处理
- template_messages: 模板消息
- rich_menu: 富菜单管理
- actions: 动作处理
- directives: 指令处理
- delivery: 消息送达确认
- loading: 加载动画
- media: 媒体资源处理
- types: 类型定义
2026-05-21 11:16:16 +08:00

46 lines
1.3 KiB
Python

from __future__ import annotations
import logging
from yuxi.channel.extensions.line.bot import LineBotClient
logger = logging.getLogger(__name__)
MAX_REPLY_MESSAGES = 5
MAX_PUSH_MESSAGES_PER_BATCH = 5
class LineDeliveryManager:
async def deliver_messages(
self,
to: str,
messages: list[dict],
reply_token: str | None,
token: str,
) -> bool:
bot = LineBotClient(channel_access_token=token)
if reply_token:
try:
reply_batch = messages[:MAX_REPLY_MESSAGES]
ok = await bot.reply_message(reply_token, reply_batch)
if ok:
remaining = messages[MAX_REPLY_MESSAGES:]
if remaining:
for batch in _batch_list(remaining, MAX_PUSH_MESSAGES_PER_BATCH):
await bot.push_message(to, batch)
return True
except Exception:
logger.exception("LINE reply_message failed, falling back to push")
for batch in _batch_list(messages, MAX_PUSH_MESSAGES_PER_BATCH):
ok = await bot.push_message(to, batch)
if not ok:
return False
return True
def _batch_list(items: list, batch_size: int) -> list[list]:
return [items[i: i + batch_size] for i in range(0, len(items), batch_size)]