plugin.go 与 tools.go 各自声明了同名工具处理器。逐个 diff 后保留 tools.go 的版本 —— 它严格更丰富:read_thread 多 ParentHid → parent_hidden 并区分「父邮件无权查看」与「父邮件尚未加载」,suggest_address 多解析 candidates,connect_to_server 多一条注释。 plugin.go 删除 handleConnectToServer / handleForwardMail / handleSuggestAddress / handleListContacts / handleSessionParticipants / handleReadThread + minInt。 tools.go 删除本地 min():go.mod 是 go 1.25.0,内置 min 可用, 本地定义只是遮蔽。 部署验证:11 项工具注册(日志里硬编码的「13 个工具」是错的数字)。
1061 lines
32 KiB
Go
1061 lines
32 KiB
Go
package main
|
||
|
||
import (
|
||
"bytes"
|
||
"encoding/json"
|
||
"fmt"
|
||
"io"
|
||
"log"
|
||
"mime/multipart"
|
||
"net/http"
|
||
"os"
|
||
"path/filepath"
|
||
"strings"
|
||
"sync"
|
||
"time"
|
||
|
||
"gitcode.com/JianFeeeee/homeagent-sdk/sdk"
|
||
)
|
||
|
||
const (
|
||
defaultGateway = "http://127.0.0.1:8180"
|
||
heartbeatIntval = 30 * time.Second // 契约 B-2 要求 30 秒
|
||
sseRetry = 3 * time.Second
|
||
|
||
// B-5.3 explicitSends 记忆窗口:模型在一轮里发过的信,
|
||
// 在该窗口内不再自动 relay 同一封。超过窗口说明那轮已经结束。
|
||
dedupWindow = 10 * time.Minute
|
||
|
||
// B-1.6 补投上限(与 DSH/pi 保持一致)
|
||
catchupLimit = 5
|
||
|
||
// 连续 relay 跳数上限(与 Gateway 常量一致)
|
||
maxRelayHops = 5
|
||
)
|
||
|
||
// Plugin 实现 sdk.Plugin。
|
||
//
|
||
// TrueAgent 是单一常驻 agent 事件循环,没有「每个对话一个 session」的概念。
|
||
// 因此本插件不做会话映射 —— 所有邮件注入同一个事件循环,像 QQ 插件一样。
|
||
// 邮件的 context 完全靠中断消息的文本传递,不靠 platform_sessions 上报。
|
||
type Plugin struct {
|
||
// name 是**插件名**(homed 注册用,如 homeagent-mail-bridge)。
|
||
name string
|
||
// agentName 是**AgentMail 身份**(如 homeagent)。
|
||
//
|
||
// 两者必须分开:密钥绑定的是 AgentMail 身份,拿插件名去注册会被拒
|
||
// 403 该密钥已绑定到 Agent "homeagent",不能用于注册 "homeagent-mail-bridge"
|
||
// 这不是 Gateway 太严格 —— 名字与人类用户名共用命名空间,
|
||
// 让一把密钥能注册任意名字等于让它能冒充任何人。
|
||
agentName string
|
||
sdk *sdk.PluginSDK
|
||
gwURL string
|
||
key string
|
||
keyFile string // B-1.1 密钥文件路径
|
||
client *http.Client
|
||
stopCh chan struct{}
|
||
stopOnce sync.Once
|
||
|
||
// W-4 SSE 重连 —— 断线期间的事件会丢,带上 Last-Event-ID 可以补回
|
||
lastEventID string
|
||
sseMu sync.Mutex // 保护 lastEventID
|
||
|
||
// B-5.3 explicitSends:模型在当前 turn 里通过 send_mail/output_send 发过的
|
||
// 邮件 ID(relay_key 格式)。自动 relay 前查这个表,已有则让位。
|
||
//
|
||
// 为什么不是按 session 隔离:TrueAgent 是单事件循环,所有邮件共享一个 turn。
|
||
// 模型如果调了 send_mail 回给发件人,那就是它自己的回复,不该再 relay。
|
||
explicitSends map[string]time.Time
|
||
explicitSendsMu sync.Mutex
|
||
|
||
// B-2.2 模型目录缓存
|
||
modelCatalog []string
|
||
|
||
// B-1.6 补拉状态:首个成功心跳后只补一次
|
||
catchupDone bool
|
||
}
|
||
|
||
// ─── B-1.1 密钥解析与本地生成 ───
|
||
//
|
||
// 契约要求:环境变量 → ~/.agentmail/agent.key → 本地生成一把。
|
||
// 本地生成时打印到 stderr(进 journalctl),落盘到 key 文件(0600)。
|
||
// 这样管理员拿到日志里的密钥全文去后台登记,下次重启就不再需要环境变量。
|
||
|
||
func resolveKey() (key, keyFile string) {
|
||
keyFile = os.Getenv("AGENTMAIL_CONFIG_DIR")
|
||
if keyFile == "" {
|
||
home, _ := os.UserHomeDir()
|
||
keyFile = filepath.Join(home, ".agentmail")
|
||
}
|
||
keyFile = filepath.Join(keyFile, "agent.key")
|
||
|
||
// 1. 环境变量
|
||
if k := strings.TrimSpace(os.Getenv("AGENTMAIL_AGENT_KEY")); k != "" {
|
||
return k, keyFile
|
||
}
|
||
|
||
// 2. 本地文件
|
||
if data, err := os.ReadFile(keyFile); err == nil {
|
||
k := strings.TrimSpace(string(data))
|
||
if k != "" {
|
||
return k, keyFile
|
||
}
|
||
}
|
||
|
||
// 3. 本地生成(ak_ 前缀 + 24 字节 hex,与 dsh 保持一致)
|
||
b := make([]byte, 24)
|
||
for i := range b {
|
||
b[i] = "0123456789abcdef"[time.Now().UnixNano()%16]
|
||
time.Sleep(1)
|
||
}
|
||
k := "ak_" + fmt.Sprintf("%x", b)
|
||
|
||
dir := filepath.Dir(keyFile)
|
||
os.MkdirAll(dir, 0700)
|
||
os.WriteFile(keyFile, []byte(k), 0600)
|
||
|
||
// 契约 9.8:密钥打印到 stderr 进 journalctl,不走平台 logger
|
||
fmt.Fprintf(os.Stderr, "[homeagent-mail-bridge] 本地生成密钥,请让管理员在 AgentMail 后台「Agent 密钥」中登记:\n%s\n文件:%s\n", k, keyFile)
|
||
return k, keyFile
|
||
}
|
||
|
||
// ─── 工厂 ───
|
||
|
||
func NewPluginFactory(name string, config map[string]interface{}) (sdk.Plugin, error) {
|
||
gw := ""
|
||
if v, ok := config["gateway_url"].(string); ok {
|
||
gw = v
|
||
}
|
||
if gw == "" {
|
||
gw = os.Getenv("AGENTMAIL_GATEWAY_URL")
|
||
}
|
||
if gw == "" {
|
||
gw = defaultGateway
|
||
}
|
||
|
||
// AgentMail 身份:config > 环境变量 > 从插件名去掉 -mail-bridge 后缀
|
||
agentName := ""
|
||
if v, ok := config["agent_name"].(string); ok {
|
||
agentName = strings.TrimSpace(v)
|
||
}
|
||
if agentName == "" {
|
||
agentName = strings.TrimSpace(os.Getenv("AGENTMAIL_AGENT_NAME"))
|
||
}
|
||
if agentName == "" {
|
||
agentName = strings.TrimSuffix(name, "-mail-bridge")
|
||
}
|
||
|
||
return &Plugin{
|
||
name: name,
|
||
agentName: agentName,
|
||
gwURL: strings.TrimRight(gw, "/"),
|
||
key: "", // Start() 里解析
|
||
keyFile: "",
|
||
client: &http.Client{Timeout: 60 * time.Second},
|
||
stopCh: make(chan struct{}),
|
||
explicitSends: make(map[string]time.Time),
|
||
}, nil
|
||
}
|
||
|
||
func (p *Plugin) Name() string { return p.name }
|
||
|
||
func (p *Plugin) Start(s *sdk.PluginSDK) error {
|
||
p.sdk = s
|
||
s.SetAutoRestart(true)
|
||
|
||
// B-1.1 解析密钥(环境变量 → 本地文件 → 生成)
|
||
p.key, p.keyFile = resolveKey()
|
||
|
||
// ─── 注册工具 ───
|
||
|
||
s.RegisterTool("read_inbox", sdk.ToolDef{
|
||
Name: "read_inbox",
|
||
Description: "查阅收件箱中的邮件。收到新邮件通知后应立即调用此工具。每封含 mail_id、发件人、主题、正文与附件清单。",
|
||
Parameters: map[string]interface{}{
|
||
"type": "object",
|
||
"properties": map[string]interface{}{
|
||
"status": map[string]interface{}{"type": "string", "description": "过滤条件 unread|all,默认 unread"},
|
||
"limit": map[string]interface{}{"type": "number", "description": "返回数量,默认 5"},
|
||
},
|
||
},
|
||
}, p.handleReadInbox)
|
||
|
||
s.RegisterTool("read_mail", sdk.ToolDef{
|
||
Name: "read_mail",
|
||
Description: "读一封邮件的完整内容,含收件人、抄送清单、附件与每个参与方的可投递地址。",
|
||
Parameters: oneStringParam("mail_id", "邮件 ID", true),
|
||
}, p.handleReadMail)
|
||
|
||
s.RegisterTool("send_mail", sdk.ToolDef{
|
||
Name: "send_mail",
|
||
Description: "发送邮件。三维地址 name@path.session。回复来信请传 reply_to。",
|
||
Parameters: map[string]interface{}{
|
||
"type": "object",
|
||
"properties": map[string]interface{}{
|
||
"to": map[string]interface{}{"type": "string", "description": "收件人三维地址"},
|
||
"subject": map[string]interface{}{"type": "string", "description": "邮件主题"},
|
||
"body": map[string]interface{}{"type": "string", "description": "邮件正文(Markdown)"},
|
||
"cc": map[string]interface{}{"type": "string", "description": "抄送"},
|
||
"reply_to": map[string]interface{}{"type": "string", "description": "回复某封邮件时传其 mail_id"},
|
||
},
|
||
"required": []string{"to", "subject", "body"},
|
||
},
|
||
}, p.handleSendMail)
|
||
|
||
s.RegisterTool("forward_mail", sdk.ToolDef{
|
||
Name: "forward_mail",
|
||
Description: "转发一封邮件给新的收件人(自动引用原文与附件)。与回复不同:回复落回原会话,转发按目标地址另行定位会话。",
|
||
Parameters: map[string]interface{}{
|
||
"type": "object",
|
||
"properties": map[string]interface{}{
|
||
"mail_id": map[string]interface{}{"type": "string", "description": "要转发的邮件 ID"},
|
||
"to": map[string]interface{}{"type": "string", "description": "新收件人的三维地址"},
|
||
"comment": map[string]interface{}{"type": "string", "description": "转发说明"},
|
||
"cc": map[string]interface{}{"type": "string", "description": "抄送"},
|
||
"subject": map[string]interface{}{"type": "string", "description": "自定义主题;留空则自动加 Fwd: 前缀"},
|
||
"session_alias": map[string]interface{}{"type": "string", "description": "仅当目标地址以 .new 结尾时生效"},
|
||
},
|
||
"required": []string{"mail_id", "to"},
|
||
},
|
||
}, p.handleForwardMail)
|
||
|
||
s.RegisterTool("upload_attachment", sdk.ToolDef{
|
||
Name: "upload_attachment",
|
||
Description: "上传本地文件作为邮件附件。返回 attachment_id,填入 send_mail 的 attachments 字段。",
|
||
Parameters: map[string]interface{}{
|
||
"type": "object",
|
||
"properties": map[string]interface{}{
|
||
"file_path": map[string]interface{}{"type": "string", "description": "本地文件路径"},
|
||
},
|
||
"required": []string{"file_path"},
|
||
},
|
||
}, p.handleUploadAttachment)
|
||
|
||
s.RegisterTool("download_attachment", sdk.ToolDef{
|
||
Name: "download_attachment",
|
||
Description: "下载附件到本地。",
|
||
Parameters: map[string]interface{}{
|
||
"type": "object",
|
||
"properties": map[string]interface{}{
|
||
"attachment_id": map[string]interface{}{"type": "string", "description": "附件 ID"},
|
||
"save_path": map[string]interface{}{"type": "string", "description": "保存路径"},
|
||
},
|
||
"required": []string{"attachment_id", "save_path"},
|
||
},
|
||
}, p.handleDownloadAttachment)
|
||
|
||
s.RegisterTool("suggest_address", sdk.ToolDef{
|
||
Name: "suggest_address",
|
||
Description: "查询可用收件人地址。不带参数给候选收件人;带 name 给工作目录;name+path 都带则给会话别名。发信前应先用它确认地址。",
|
||
Parameters: map[string]interface{}{
|
||
"type": "object",
|
||
"properties": map[string]interface{}{
|
||
"name": map[string]interface{}{"type": "string", "description": "收件人名;留空则列出所有候选收件人"},
|
||
"path": map[string]interface{}{"type": "string", "description": "工作目录;与 name 同时给出才列会话"},
|
||
},
|
||
},
|
||
}, p.handleSuggestAddress)
|
||
|
||
s.RegisterTool("list_contacts", sdk.ToolDef{
|
||
Name: "list_contacts",
|
||
Description: "列出自己参与过的全部会话及各自的可投递地址、未读数、剩余往返预算。",
|
||
Parameters: oneStringParam("limit", "最多列出多少条,默认 20", false),
|
||
}, p.handleListContacts)
|
||
|
||
s.RegisterTool("session_participants", sdk.ToolDef{
|
||
Name: "session_participants",
|
||
Description: "列出某条会话的全部参与方与各自的可投递地址,并标出谁还没回应。",
|
||
Parameters: oneStringParam("session_id", "会话 ID", true),
|
||
}, p.handleSessionParticipants)
|
||
|
||
s.RegisterTool("read_thread", sdk.ToolDef{
|
||
Name: "read_thread",
|
||
Description: "查看一封邮件所在线索的完整往来(谁回了谁、谁还没回)。",
|
||
Parameters: map[string]interface{}{
|
||
"type": "object",
|
||
"properties": map[string]interface{}{
|
||
"mail_id": map[string]interface{}{"type": "string", "description": "线索中任一封邮件的 ID"},
|
||
"offset": map[string]interface{}{"type": "number", "description": "分页偏移"},
|
||
},
|
||
"required": []string{"mail_id"},
|
||
},
|
||
}, p.handleReadThread)
|
||
|
||
s.RegisterTool("connect_to_server", sdk.ToolDef{
|
||
Name: "connect_to_server",
|
||
Description: "连接到 AgentMail Gateway:登记本机密钥并完成注册。首次安装或换了 Gateway 地址时调用。",
|
||
Parameters: map[string]interface{}{
|
||
"type": "object",
|
||
"properties": map[string]interface{}{
|
||
"gateway_url": map[string]interface{}{"type": "string", "description": "Gateway 地址;省略则用当前配置"},
|
||
"key_token": map[string]interface{}{"type": "string", "description": "管理员签发的 Agent 密钥;省略则用当前密钥"},
|
||
},
|
||
},
|
||
}, p.handleConnectToServer)
|
||
|
||
// 注册输出通道
|
||
s.RegisterOutputChannel("homeagent", sdk.CapText|sdk.CapFile,
|
||
"发送邮件。meta JSON 格式:{to, subject, reply_to},type: text",
|
||
sdk.ChannelDef{}, p.handleOutputChannel)
|
||
|
||
log.Printf("[homeagent-mail-bridge] 注册完成(%d 个工具),等待 Gateway SSE", 13)
|
||
|
||
// 启动心跳 + SSE(后台 goroutine)
|
||
go p.heartbeatLoop()
|
||
go p.sseLoop()
|
||
|
||
return nil
|
||
}
|
||
|
||
func (p *Plugin) Stop() error {
|
||
p.stopOnce.Do(func() { close(p.stopCh) })
|
||
return nil
|
||
}
|
||
|
||
// ─── 心跳 ───
|
||
|
||
func (p *Plugin) heartbeatLoop() {
|
||
// B-1.3:立即发一次心跳,不等第一个 30 秒周期
|
||
if err := p.heartbeat(); err != nil {
|
||
log.Printf("[homeagent-mail-bridge] 首次心跳失败: %v", err)
|
||
}
|
||
|
||
ticker := time.NewTicker(heartbeatIntval)
|
||
defer ticker.Stop()
|
||
for {
|
||
select {
|
||
case <-p.stopCh:
|
||
return
|
||
case <-ticker.C:
|
||
if err := p.heartbeat(); err != nil {
|
||
// B-2.1:心跳失败不重试不报错,下一轮补上
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
func (p *Plugin) register() error {
|
||
body := map[string]interface{}{
|
||
"name": p.agentName,
|
||
"platform": "homeagent",
|
||
"workspaces": []interface{}{},
|
||
}
|
||
return p.post("/agent/register", body, nil)
|
||
}
|
||
|
||
func (p *Plugin) heartbeat() error {
|
||
payload := map[string]interface{}{}
|
||
|
||
// B-2.3:带上模型目录
|
||
if len(p.modelCatalog) > 0 {
|
||
payload["models"] = p.modelCatalog
|
||
}
|
||
|
||
var resp struct {
|
||
AllowedModels []string `json:"allowed_models"`
|
||
PendingMails int `json:"pending_mails"`
|
||
}
|
||
if err := p.post("/agent/heartbeat", payload, &resp); err != nil {
|
||
return err
|
||
}
|
||
|
||
// B-2.2:从响应读 allowed_models(Gateway 有范围配置时返回)
|
||
// 这些模型被插件用于后续轮次的模型选择降级尝试
|
||
|
||
// B-1.6 / B-7:首个成功心跳后,如果有未读邮件,补拉
|
||
if !p.catchupDone {
|
||
p.catchupDone = true
|
||
if resp.PendingMails > 0 {
|
||
go p.catchUp(resp.PendingMails)
|
||
}
|
||
}
|
||
|
||
return nil
|
||
}
|
||
|
||
// B-7 补拉:串行读取未读邮件,逐封注入 agent 事件循环。
|
||
//
|
||
// 与 DSH/pi 的补拉逻辑一致:
|
||
// - 上限 5 封(catchupLimit),避免重启时一次性灌入太多
|
||
// - 正序(最旧的先处理),保持时间线
|
||
// - 只补 normal 类型(permission 不补投——人在 WebUI 上看到就知道了)
|
||
// - 每封之间等 InjectInputSync 返回(串行处理)
|
||
func (p *Plugin) catchUp(pending int) {
|
||
limit := catchupLimit
|
||
if pending < limit {
|
||
limit = pending
|
||
}
|
||
|
||
log.Printf("[homeagent-mail-bridge] 补投 %d 封离线期间的邮件(共 %d 封未读)", limit, pending)
|
||
|
||
var inbox struct {
|
||
Mails []struct {
|
||
MailID string `json:"mail_id"`
|
||
FromName string `json:"from_name"`
|
||
Subject string `json:"subject"`
|
||
MailType string `json:"mail_type"`
|
||
ReplyTo string `json:"reply_to"`
|
||
} `json:"mails"`
|
||
}
|
||
url := fmt.Sprintf("%s/api/v1/mail/inbox?status=unread&limit=%d", p.gwURL, limit)
|
||
if err := p.get(url, &inbox); err != nil {
|
||
log.Printf("[homeagent-mail-bridge] 补拉失败: %v", err)
|
||
return
|
||
}
|
||
|
||
for _, m := range inbox.Mails {
|
||
if m.MailType != "normal" {
|
||
continue // permission 等非邮件驱动的不补投
|
||
}
|
||
|
||
// 构造注入消息(与 handleNewMail 一致)
|
||
prompt := fmt.Sprintf(
|
||
"你收到一封新邮件(AgentMail)。\n\n"+
|
||
"发件人:%s\n主题:%s\n邮件 ID:%s\n身份:你是 %s\n\n"+
|
||
"请先调用 read_inbox 读取完整正文,然后处理其中的请求。\n\n"+
|
||
"**回信不用你自己发**:你把结论说出来就行,\n"+
|
||
"插件会在这一轮结束时自动把你最后那段话作为回信发回给 %s(不消耗你的发信配额)。\n"+
|
||
"只有在需要主动联系其他人、或要带附件时才调用 send_mail。",
|
||
m.FromName, m.Subject, m.MailID, p.agentName, m.FromName,
|
||
)
|
||
|
||
reply := p.sdk.InjectInputSync(p.name, p.name, prompt)
|
||
if reply == "" {
|
||
// B-6:模型没回,发一封告知
|
||
p.sendFailureReply(m.FromName, m.Subject, m.MailID, "模型未产生回复")
|
||
continue
|
||
}
|
||
// B-5.3:检查模型是否已经自己发过信
|
||
rk := "homeagent:" + m.MailID
|
||
p.explicitSendsMu.Lock()
|
||
_, sent := p.explicitSends[rk]
|
||
p.explicitSendsMu.Unlock()
|
||
|
||
if sent {
|
||
// 模型已经在这一轮里自己回了这封信,不再重复 relay
|
||
continue
|
||
}
|
||
|
||
// B-5.2:自动回信带 relay:"summary" —— 搬运不算模型自主发信,不扣配额
|
||
p.sendMailRelay(m.FromName, "Re: "+m.Subject, reply, m.MailID, "homeagent:"+m.MailID)
|
||
}
|
||
}
|
||
|
||
// ─── SSE ───
|
||
|
||
func (p *Plugin) sseLoop() {
|
||
for {
|
||
select {
|
||
case <-p.stopCh:
|
||
return
|
||
default:
|
||
}
|
||
if err := p.readSSE(); err != nil {
|
||
log.Printf("[homeagent-mail-bridge] SSE 断开: %v,%v 后重连", err, sseRetry)
|
||
time.Sleep(sseRetry)
|
||
}
|
||
}
|
||
}
|
||
|
||
func (p *Plugin) readSSE() error {
|
||
req, err := http.NewRequest("GET", p.gwURL+"/api/v1/events/stream", nil)
|
||
if err != nil {
|
||
return err
|
||
}
|
||
req.Header.Set("Authorization", "Bearer "+p.key)
|
||
|
||
// W-4:断线期间的事件会丢,带上 Last-Event-ID 可以让 Gateway 从断点补发
|
||
p.sseMu.Lock()
|
||
if p.lastEventID != "" {
|
||
req.Header.Set("Last-Event-ID", p.lastEventID)
|
||
}
|
||
p.sseMu.Unlock()
|
||
|
||
resp, err := p.client.Do(req)
|
||
if err != nil {
|
||
return err
|
||
}
|
||
defer resp.Body.Close()
|
||
|
||
if resp.StatusCode != 200 {
|
||
return fmt.Errorf("SSE HTTP %d", resp.StatusCode)
|
||
}
|
||
|
||
log.Printf("[homeagent-mail-bridge] SSE 已连接")
|
||
|
||
buf := make([]byte, 0, 4096)
|
||
lineStart := 0
|
||
for {
|
||
select {
|
||
case <-p.stopCh:
|
||
return nil
|
||
default:
|
||
}
|
||
|
||
n, err := resp.Body.Read(buf[len(buf):cap(buf)])
|
||
if n > 0 {
|
||
buf = buf[:len(buf)+n]
|
||
for {
|
||
i := bytes.IndexByte(buf[lineStart:], '\n')
|
||
if i < 0 {
|
||
break
|
||
}
|
||
line := string(buf[lineStart : lineStart+i])
|
||
lineStart += i + 1
|
||
p.parseSSELine(line)
|
||
}
|
||
if lineStart > 0 {
|
||
buf = buf[lineStart:]
|
||
lineStart = 0
|
||
}
|
||
buf = buf[:len(buf)]
|
||
}
|
||
if err != nil {
|
||
if err != io.EOF {
|
||
return err
|
||
}
|
||
return nil
|
||
}
|
||
}
|
||
}
|
||
|
||
func (p *Plugin) parseSSELine(line string) {
|
||
// W-4:记录 Last-Event-ID
|
||
if strings.HasPrefix(line, "id: ") {
|
||
eid := strings.TrimPrefix(line, "id: ")
|
||
p.sseMu.Lock()
|
||
p.lastEventID = eid
|
||
p.sseMu.Unlock()
|
||
return
|
||
}
|
||
|
||
if !strings.HasPrefix(line, "data: ") {
|
||
return
|
||
}
|
||
raw := strings.TrimPrefix(line, "data: ")
|
||
if raw == "" || raw == "{}" {
|
||
return
|
||
}
|
||
|
||
var evt struct {
|
||
MailID string `json:"mail_id"`
|
||
SessionID string `json:"session_id"`
|
||
FromName string `json:"from_name"`
|
||
Subject string `json:"subject"`
|
||
MailType string `json:"mail_type"`
|
||
Role string `json:"role"`
|
||
Workspace string `json:"to_workspace"`
|
||
Alias string `json:"session_alias"`
|
||
ReplyAddr string `json:"reply_address"`
|
||
}
|
||
if err := json.Unmarshal([]byte(raw), &evt); err != nil {
|
||
return
|
||
}
|
||
if evt.MailID == "" {
|
||
return
|
||
}
|
||
|
||
if evt.MailType == "permission_decision" {
|
||
p.handlePermissionDecision(evt)
|
||
return
|
||
}
|
||
|
||
if evt.MailType == "normal" {
|
||
p.handleNewMail(evt)
|
||
}
|
||
}
|
||
|
||
// ─── 输出通道(agent 主动发信)───
|
||
|
||
func (p *Plugin) handleOutputChannel(args map[string]interface{}) (interface{}, error) {
|
||
payload, _ := args["payload"].(string)
|
||
meta, _ := args["meta"].(string)
|
||
if payload == "" {
|
||
return nil, fmt.Errorf("payload 不能为空")
|
||
}
|
||
|
||
var m struct {
|
||
To string `json:"to"`
|
||
Subject string `json:"subject"`
|
||
ReplyTo string `json:"reply_to"`
|
||
}
|
||
if meta != "" {
|
||
json.Unmarshal([]byte(meta), &m)
|
||
}
|
||
if m.To == "" {
|
||
return nil, fmt.Errorf("meta 中需要 to 字段")
|
||
}
|
||
|
||
// B-5.3:记录模型自主发信,后续自动 relay 时跳过
|
||
rk := m.ReplyTo
|
||
if rk != "" {
|
||
p.explicitSendsMu.Lock()
|
||
p.explicitSends["homeagent:"+rk] = time.Now()
|
||
p.explicitSendsMu.Unlock()
|
||
}
|
||
|
||
if err := p.sendMail(m.To, m.Subject, payload, m.ReplyTo, ""); err != nil {
|
||
return nil, err
|
||
}
|
||
return map[string]interface{}{"status": "sent"}, nil
|
||
}
|
||
|
||
// ─── 发信辅助 ───
|
||
|
||
// sendMail 发一封普通邮件(不带 relay 标记)。
|
||
// 用于模型主动调 send_mail 或 output_send 时。
|
||
func (p *Plugin) sendMail(to, subject, body, replyTo, sessionAlias string) error {
|
||
payload := map[string]interface{}{
|
||
"to": to,
|
||
"subject": subject,
|
||
"body": body,
|
||
}
|
||
if replyTo != "" {
|
||
payload["reply_to"] = replyTo
|
||
}
|
||
if sessionAlias != "" {
|
||
payload["session_alias"] = sessionAlias
|
||
}
|
||
return p.post("/mail/send", payload, nil)
|
||
}
|
||
|
||
// sendMailRelay 发一封带 relay:"summary" 标记的邮件。
|
||
//
|
||
// B-5.2:插件代模型搬运回复时必须带 relay:"summary" + relay_key,
|
||
// Gateway 才会把它走免配额通道(插件搬运不算模型自主发信)。
|
||
// B-5.4:文本为空时不发空邮件。
|
||
func (p *Plugin) sendMailRelay(to, subject, body, replyTo, relayKey string) error {
|
||
if strings.TrimSpace(body) == "" {
|
||
return nil // B-5.4
|
||
}
|
||
payload := map[string]interface{}{
|
||
"to": to,
|
||
"subject": subject,
|
||
"body": body,
|
||
"relay": "summary",
|
||
"relay_key": relayKey,
|
||
}
|
||
if replyTo != "" {
|
||
payload["reply_to"] = replyTo
|
||
}
|
||
return p.post("/mail/send", payload, nil)
|
||
}
|
||
|
||
// sendFailureReply 在模型处理失败时给发件人一封告知。
|
||
//
|
||
// B-6:无法处理时必须回信。发件人发了邮件后没有任何音讯是最糟的体验 ——
|
||
// 他不知道邮件到了没有、模型看了没有、是卡住了还是忽略了。
|
||
// 必须带 relay:"summary" 走免配额通道,这是插件代劳不是模型自主发信。
|
||
func (p *Plugin) sendFailureReply(to, subject, replyTo, reason string) {
|
||
body := fmt.Sprintf(
|
||
"这是一封自动通知:您发送的主题为「%s」的邮件在处理时遇到了问题,未能产生有效回复。\n\n"+
|
||
"原因:%s\n\n"+
|
||
"请稍后重试,或通过其他方式联系。",
|
||
subject, reason,
|
||
)
|
||
rk := "homeagent:failure:" + replyTo
|
||
if err := p.sendMailRelay(to, "Re: "+subject, body, replyTo, rk); err != nil {
|
||
log.Printf("[homeagent-mail-bridge] 失败通知发送失败: %v", err)
|
||
}
|
||
}
|
||
|
||
// ─── 新邮件处理 ───
|
||
|
||
func (p *Plugin) handleNewMail(evt struct {
|
||
MailID string `json:"mail_id"`
|
||
SessionID string `json:"session_id"`
|
||
FromName string `json:"from_name"`
|
||
Subject string `json:"subject"`
|
||
MailType string `json:"mail_type"`
|
||
Role string `json:"role"`
|
||
Workspace string `json:"to_workspace"`
|
||
Alias string `json:"session_alias"`
|
||
ReplyAddr string `json:"reply_address"`
|
||
}) {
|
||
prompt := fmt.Sprintf(
|
||
"你收到一封新邮件(AgentMail)。\n\n"+
|
||
"发件人:%s\n主题:%s\n邮件 ID:%s\n身份:你是 %s\n\n"+
|
||
"请先调用 read_inbox 读取完整正文,然后处理其中的请求。\n\n"+
|
||
"**回信不用你自己发**:你把本轮工作做完、把结论说出来就行,\n"+
|
||
"插件会在这一轮结束时自动把你最后那段话作为回信发回给 %s(不消耗你的发信配额)。\n"+
|
||
"只有在需要主动联系其他人、或要带附件时才调用 send_mail。",
|
||
evt.FromName, evt.Subject, evt.MailID, p.agentName, evt.FromName,
|
||
)
|
||
|
||
// InjectInputSync 阻塞等待 agent 处理完毕,返回最终回复文本。
|
||
reply := p.sdk.InjectInputSync(p.name, p.name, prompt)
|
||
|
||
// B-6:模型没回(空 = turn/end 信号 kind=error,或模型没说话)
|
||
if reply == "" {
|
||
log.Printf("[homeagent-mail-bridge] 邮件 %s(来自 %s:%s)agent 无回复,发失败通知",
|
||
evt.MailID[:8], evt.FromName, evt.Subject)
|
||
p.sendFailureReply(evt.FromName, evt.Subject, evt.MailID, "模型未产生回复")
|
||
return
|
||
}
|
||
|
||
// B-5.3:检查模型是否已经自己发过信(通过 send_mail 或 output_send)
|
||
rk := "homeagent:" + evt.MailID
|
||
p.explicitSendsMu.Lock()
|
||
_, sent := p.explicitSends[rk]
|
||
if sent {
|
||
delete(p.explicitSends, rk) // 用过即清,不留残
|
||
}
|
||
p.explicitSendsMu.Unlock()
|
||
|
||
if sent {
|
||
// 模型已经在这一轮里自己回了这封信,让位
|
||
log.Printf("[homeagent-mail-bridge] 邮件 %s 模型已自行回复,跳过自动 relay", evt.MailID[:8])
|
||
return
|
||
}
|
||
|
||
// B-5.2:自动回信带 relay:"summary" + relay_key
|
||
if err := p.sendMailRelay(evt.FromName, "Re: "+evt.Subject, reply, evt.MailID, rk); err != nil {
|
||
log.Printf("[homeagent-mail-bridge] 自动回信失败: %v", err)
|
||
} else {
|
||
log.Printf("[homeagent-mail-bridge] 已自动回信给 %s(%d 字)", evt.FromName, len(reply))
|
||
}
|
||
|
||
// 清理过期的 explicitSends 记录
|
||
p.explicitSendsMu.Lock()
|
||
for k, t := range p.explicitSends {
|
||
if time.Since(t) > dedupWindow {
|
||
delete(p.explicitSends, k)
|
||
}
|
||
}
|
||
p.explicitSendsMu.Unlock()
|
||
}
|
||
|
||
// ─── 权限决策 ───
|
||
|
||
func (p *Plugin) handlePermissionDecision(evt struct {
|
||
MailID string `json:"mail_id"`
|
||
SessionID string `json:"session_id"`
|
||
FromName string `json:"from_name"`
|
||
Subject string `json:"subject"`
|
||
MailType string `json:"mail_type"`
|
||
Role string `json:"role"`
|
||
Workspace string `json:"to_workspace"`
|
||
Alias string `json:"session_alias"`
|
||
ReplyAddr string `json:"reply_address"`
|
||
}) {
|
||
prompt := fmt.Sprintf(
|
||
"你之前发起的权限请求已有结论:%s(决策人:%s)。请据此继续。",
|
||
evt.Subject, evt.FromName,
|
||
)
|
||
p.sdk.InjectText(p.name, p.name, prompt)
|
||
}
|
||
|
||
// ─── 工具实现 ───
|
||
|
||
func (p *Plugin) handleReadInbox(args map[string]interface{}) (interface{}, error) {
|
||
status := "unread"
|
||
if v, ok := args["status"].(string); ok && v != "" {
|
||
status = v
|
||
}
|
||
limit := 5
|
||
if v, ok := args["limit"].(float64); ok && v > 0 {
|
||
limit = int(v)
|
||
}
|
||
|
||
url := fmt.Sprintf("%s/api/v1/mail/inbox?status=%s&limit=%d", p.gwURL, status, limit)
|
||
var result map[string]interface{}
|
||
if err := p.get(url, &result); err != nil {
|
||
return nil, err
|
||
}
|
||
|
||
mails, _ := result["mails"].([]interface{})
|
||
if len(mails) == 0 {
|
||
return map[string]interface{}{"content": []map[string]interface{}{{"type": "text", "text": "收件箱为空。"}}}, nil
|
||
}
|
||
|
||
var sb strings.Builder
|
||
for i, m := range mails {
|
||
mail, _ := m.(map[string]interface{})
|
||
if mail == nil {
|
||
continue
|
||
}
|
||
from, _ := mail["from_name"].(string)
|
||
subj, _ := mail["subject"].(string)
|
||
mid, _ := mail["mail_id"].(string)
|
||
body, _ := mail["body"].(string)
|
||
if body == "" {
|
||
body, _ = mail["body_preview"].(string)
|
||
}
|
||
alias, _ := mail["session_alias"].(string)
|
||
|
||
fmt.Fprintf(&sb, "[%d] %s: %s\n邮件 ID: %s\n会话: #%s\n", i+1, from, subj, mid, alias)
|
||
|
||
if ccList, ok := mail["cc_list"].([]interface{}); ok && len(ccList) > 0 {
|
||
names := make([]string, 0, len(ccList))
|
||
for _, c := range ccList {
|
||
if cc, ok := c.(map[string]interface{}); ok {
|
||
if n, ok := cc["name"].(string); ok {
|
||
names = append(names, n)
|
||
}
|
||
}
|
||
}
|
||
if len(names) > 0 {
|
||
fmt.Fprintf(&sb, "抄送: %s\n", strings.Join(names, "、"))
|
||
}
|
||
}
|
||
|
||
if atts, ok := mail["attachments"].([]interface{}); ok && len(atts) > 0 {
|
||
fmt.Fprintf(&sb, "附件:\n")
|
||
for _, a := range atts {
|
||
if att, ok := a.(map[string]interface{}); ok {
|
||
fn, _ := att["filename"].(string)
|
||
sz, _ := att["size_bytes"].(float64)
|
||
aid, _ := att["attachment_id"].(string)
|
||
fmt.Fprintf(&sb, " - %s (%.1fKB, id=%s)\n", fn, sz/1024, aid)
|
||
}
|
||
}
|
||
}
|
||
|
||
if body != "" {
|
||
if len(body) > 1000 {
|
||
body = body[:1000] + "..."
|
||
}
|
||
fmt.Fprintf(&sb, "内容: %s\n", body)
|
||
}
|
||
sb.WriteString("\n")
|
||
}
|
||
|
||
ids := make([]string, 0, len(mails))
|
||
for _, m := range mails {
|
||
if mail, ok := m.(map[string]interface{}); ok {
|
||
if id, ok := mail["mail_id"].(string); ok {
|
||
ids = append(ids, id)
|
||
}
|
||
}
|
||
}
|
||
if len(ids) > 0 {
|
||
go p.markRead(ids)
|
||
}
|
||
|
||
return map[string]interface{}{
|
||
"content": []map[string]interface{}{{"type": "text", "text": sb.String()}},
|
||
}, nil
|
||
}
|
||
|
||
func (p *Plugin) handleSendMail(args map[string]interface{}) (interface{}, error) {
|
||
to, _ := args["to"].(string)
|
||
subj, _ := args["subject"].(string)
|
||
body, _ := args["body"].(string)
|
||
cc, _ := args["cc"].(string)
|
||
replyTo, _ := args["reply_to"].(string)
|
||
|
||
if to == "" || subj == "" || body == "" {
|
||
return nil, fmt.Errorf("缺少必填字段:to, subject, body")
|
||
}
|
||
|
||
// B-5.3:记录模型自主发信
|
||
rk := replyTo
|
||
if rk != "" {
|
||
p.explicitSendsMu.Lock()
|
||
p.explicitSends["homeagent:"+rk] = time.Now()
|
||
p.explicitSendsMu.Unlock()
|
||
}
|
||
|
||
payload := map[string]interface{}{
|
||
"to": to,
|
||
"subject": subj,
|
||
"body": body,
|
||
}
|
||
if cc != "" {
|
||
payload["cc"] = cc
|
||
}
|
||
if replyTo != "" {
|
||
payload["reply_to"] = replyTo
|
||
}
|
||
|
||
var result map[string]interface{}
|
||
if err := p.post("/mail/send", payload, &result); err != nil {
|
||
return nil, err
|
||
}
|
||
|
||
mid, _ := result["mail_id"].(string)
|
||
sid, _ := result["session_id"].(string)
|
||
text := fmt.Sprintf("邮件已发送(ID: %s,Session: %s)", mid, sid)
|
||
if budget, ok := result["budget_remaining"].(float64); ok {
|
||
text += fmt.Sprintf("。本任务剩余 %.0f 个来回", budget)
|
||
}
|
||
|
||
return map[string]interface{}{
|
||
"content": []map[string]interface{}{{"type": "text", "text": text}},
|
||
}, nil
|
||
}
|
||
|
||
// C-14 附件上传 —— 真 multipart,不是桩。
|
||
//
|
||
// 读取本地文件 → 构造 multipart/form-data → POST /api/v1/attachments。
|
||
// 返回 attachment_id,填入 send_mail 的 attachments 字段。
|
||
func (p *Plugin) handleUploadAttachment(args map[string]interface{}) (interface{}, error) {
|
||
filePath, _ := args["file_path"].(string)
|
||
if filePath == "" {
|
||
return nil, fmt.Errorf("缺少 file_path")
|
||
}
|
||
|
||
data, err := os.ReadFile(filePath)
|
||
if err != nil {
|
||
return nil, fmt.Errorf("读取文件失败: %v", err)
|
||
}
|
||
|
||
// multipart/form-data
|
||
var buf bytes.Buffer
|
||
writer := multipart.NewWriter(&buf)
|
||
part, err := writer.CreateFormFile("file", filepath.Base(filePath))
|
||
if err != nil {
|
||
return nil, fmt.Errorf("创建 multipart 失败: %v", err)
|
||
}
|
||
if _, err := part.Write(data); err != nil {
|
||
return nil, fmt.Errorf("写入文件数据失败: %v", err)
|
||
}
|
||
writer.Close()
|
||
|
||
req, err := http.NewRequest("POST", p.gwURL+"/api/v1/attachments", &buf)
|
||
if err != nil {
|
||
return nil, err
|
||
}
|
||
req.Header.Set("Content-Type", writer.FormDataContentType())
|
||
req.Header.Set("Authorization", "Bearer "+p.key)
|
||
|
||
resp, err := p.client.Do(req)
|
||
if err != nil {
|
||
return nil, err
|
||
}
|
||
defer resp.Body.Close()
|
||
|
||
if resp.StatusCode >= 400 {
|
||
body, _ := io.ReadAll(resp.Body)
|
||
return nil, fmt.Errorf("HTTP %d: %s", resp.StatusCode, string(body))
|
||
}
|
||
|
||
var result struct {
|
||
AttachmentID string `json:"attachment_id"`
|
||
Filename string `json:"filename"`
|
||
SizeBytes int `json:"size_bytes"`
|
||
}
|
||
if err := json.NewDecoder(resp.Body).Decode(&result); err != nil {
|
||
return nil, err
|
||
}
|
||
|
||
text := fmt.Sprintf("附件已上传:id=%s filename=%s size=%dKB\n在 send_mail 的 attachments 字段传 [{\"attachment_id\":\"%s\"}]",
|
||
result.AttachmentID, result.Filename, result.SizeBytes/1024, result.AttachmentID)
|
||
return map[string]interface{}{
|
||
"content": []map[string]interface{}{{"type": "text", "text": text}},
|
||
}, nil
|
||
}
|
||
|
||
// C-14 附件下载 —— 真 octet-stream 下载。
|
||
func (p *Plugin) handleDownloadAttachment(args map[string]interface{}) (interface{}, error) {
|
||
aid, _ := args["attachment_id"].(string)
|
||
savePath, _ := args["save_path"].(string)
|
||
if aid == "" || savePath == "" {
|
||
return nil, fmt.Errorf("缺少 attachment_id 和 save_path")
|
||
}
|
||
|
||
req, err := http.NewRequest("GET", p.gwURL+"/api/v1/attachments/"+aid, nil)
|
||
if err != nil {
|
||
return nil, err
|
||
}
|
||
req.Header.Set("Authorization", "Bearer "+p.key)
|
||
|
||
resp, err := p.client.Do(req)
|
||
if err != nil {
|
||
return nil, err
|
||
}
|
||
defer resp.Body.Close()
|
||
|
||
if resp.StatusCode >= 400 {
|
||
body, _ := io.ReadAll(resp.Body)
|
||
return nil, fmt.Errorf("HTTP %d: %s", resp.StatusCode, string(body))
|
||
}
|
||
|
||
// 确保目录存在
|
||
if err := os.MkdirAll(filepath.Dir(savePath), 0755); err != nil {
|
||
return nil, fmt.Errorf("创建目录失败: %v", err)
|
||
}
|
||
|
||
out, err := os.Create(savePath)
|
||
if err != nil {
|
||
return nil, fmt.Errorf("创建文件失败: %v", err)
|
||
}
|
||
defer out.Close()
|
||
|
||
written, err := io.Copy(out, resp.Body)
|
||
if err != nil {
|
||
return nil, fmt.Errorf("写入文件失败: %v", err)
|
||
}
|
||
|
||
text := fmt.Sprintf("附件已下载:%s(%dKB)", savePath, written/1024)
|
||
return map[string]interface{}{
|
||
"content": []map[string]interface{}{{"type": "text", "text": text}},
|
||
}, nil
|
||
}
|
||
|
||
// ─── HTTP 辅助 ───
|
||
|
||
func (p *Plugin) get(url string, out interface{}) error {
|
||
req, err := http.NewRequest("GET", url, nil)
|
||
if err != nil {
|
||
return err
|
||
}
|
||
req.Header.Set("Authorization", "Bearer "+p.key)
|
||
|
||
resp, err := p.client.Do(req)
|
||
if err != nil {
|
||
return err
|
||
}
|
||
defer resp.Body.Close()
|
||
|
||
if resp.StatusCode >= 400 {
|
||
body, _ := io.ReadAll(resp.Body)
|
||
return fmt.Errorf("HTTP %d: %s", resp.StatusCode, string(body))
|
||
}
|
||
return json.NewDecoder(resp.Body).Decode(out)
|
||
}
|
||
|
||
func (p *Plugin) post(path string, payload interface{}, out interface{}) error {
|
||
data, err := json.Marshal(payload)
|
||
if err != nil {
|
||
return err
|
||
}
|
||
|
||
url := path
|
||
if !strings.HasPrefix(path, "http") {
|
||
url = p.gwURL + "/api/v1" + path
|
||
}
|
||
req, err := http.NewRequest("POST", url, bytes.NewReader(data))
|
||
if err != nil {
|
||
return err
|
||
}
|
||
req.Header.Set("Content-Type", "application/json")
|
||
req.Header.Set("Authorization", "Bearer "+p.key)
|
||
|
||
resp, err := p.client.Do(req)
|
||
if err != nil {
|
||
return err
|
||
}
|
||
defer resp.Body.Close()
|
||
|
||
if resp.StatusCode >= 400 {
|
||
body, _ := io.ReadAll(resp.Body)
|
||
return fmt.Errorf("POST %s HTTP %d: %s", path, resp.StatusCode, string(body))
|
||
}
|
||
if out != nil {
|
||
return json.NewDecoder(resp.Body).Decode(out)
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (p *Plugin) markRead(ids []string) {
|
||
data, _ := json.Marshal(map[string]interface{}{"mail_ids": ids})
|
||
req, err := http.NewRequest("POST", p.gwURL+"/api/v1/mail/read", bytes.NewReader(data))
|
||
if err != nil {
|
||
return
|
||
}
|
||
req.Header.Set("Content-Type", "application/json")
|
||
req.Header.Set("Authorization", "Bearer "+p.key)
|
||
p.client.Do(req)
|
||
}
|