Files
Cyrene/backend/platform-bridge/internal/bridge/unified.go
T
AskaEth 3ad728406e fix: 消息日志增强 + 历史消息抑制 + SSE实时追踪 + 群聊上下文优化
- 日志:收/发消息均显示群名称,管理员显示真实QQ昵称而非"开拓者"
- 历史消息:服务重启后NapCat回放的历史消息不再触发回复,静默注入上下文
- 消息时间戳:转发给AI时附带【消息时间: HH:MM:SS (XmXs前)】标记
- ♪ 分割符:QQ消息支持♪作为句子断点
- AI-Core SSE端点:全链路追踪实时推送,ethend不再5秒轮询
- 群聊上下文:AI-Core明确被告知消息来自群聊,以实际发送者为主语

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-31 11:49:36 +08:00

85 lines
3.6 KiB
Go

package bridge
import "time"
// UnifiedMessage is the internal message format all platforms convert to.
type UnifiedMessage struct {
SenderID string `json:"sender_id"`
SenderName string `json:"sender_name"`
Platform string `json:"platform"`
ChannelID string `json:"channel_id"`
ChannelType string `json:"channel_type"` // "direct", "group", "channel"
Content string `json:"content"`
ContentType string `json:"content_type"` // "text", "image", "voice", "file", "mixed"
Attachments []Attachment `json:"attachments,omitempty"`
MessageID string `json:"message_id,omitempty"`
ReplyTo string `json:"reply_to,omitempty"`
Mentions []string `json:"mentions,omitempty"`
RawData interface{} `json:"raw_data,omitempty"`
Timestamp time.Time `json:"timestamp"`
// Routing metadata.
RouteType string `json:"route_type,omitempty"` // "normal", "silent", "admin_mention"
OriginalSenderUID string `json:"original_sender_uid,omitempty"` // preserved before identity mapping
OriginalSenderName string `json:"original_sender_name,omitempty"` // preserved before identity mapping
GroupName string `json:"group_name,omitempty"` // resolved group name for group chats
OriginalRawMessage interface{} `json:"-"` // preserved for SendMessage wiring
BotUID string `json:"-"` // bot's own platform UID, set by router
}
// Attachment represents a file/image/voice attachment.
type Attachment struct {
Type string `json:"type"` // "image", "voice", "file", "video"
URL string `json:"url,omitempty"`
FileName string `json:"file_name,omitempty"`
MimeType string `json:"mime_type,omitempty"`
Size int64 `json:"size,omitempty"`
}
// UnifiedResponse is AI-Core's response converted to unified format.
type UnifiedResponse struct {
Messages []ResponseMessage `json:"messages"`
ReplyTo string `json:"reply_to,omitempty"`
Platform string `json:"platform"`
PlatformHints PlatformHints `json:"platform_hints,omitempty"`
}
// ResponseMessage is a single message in a response.
type ResponseMessage struct {
DisplayType string `json:"display_type"` // "chat", "action", "thinking", "system_info", "tool_progress"
Content string `json:"content"`
FormatMode string `json:"format_mode"` // "plain", "markdown", "html"
}
// PlatformHints tells the adapter how to deliver the response.
type PlatformHints struct {
TypingIndicator bool `json:"typing_indicator"` // show "typing..." before sending
BurstMode bool `json:"burst_mode"` // send multiple messages rapidly
ReplyAsThread bool `json:"reply_as_thread"` // reply in a thread
}
// PlatformCapabilities declares what a platform supports.
type PlatformCapabilities struct {
MaxMessageLength int `json:"max_message_length"`
SupportsMarkdown bool `json:"supports_markdown"`
SupportsImage bool `json:"supports_image"`
SupportsVoice bool `json:"supports_voice"`
SupportsEmoji bool `json:"supports_emoji"`
SupportsReaction bool `json:"supports_reaction"`
SupportsTypingHint bool `json:"supports_typing_hint"`
RecommendBurstMax int `json:"recommend_burst_max"`
}
// PlatformMessage is the platform-specific message format returned by an adapter.
type PlatformMessage struct {
Content string `json:"content"`
FormatMode string `json:"format_mode,omitempty"`
ReplyTo string `json:"reply_to,omitempty"`
Metadata map[string]string `json:"metadata,omitempty"`
RawBody interface{} `json:"raw_body,omitempty"`
}