Version: 0.9.59.dev.260430

后端:
1. 主动调度预览确认主链路落地——新增主动调度数据模型、DAO 与事件契约;接入 dry-run pipeline 与任务触发的 job upsert/cancel;新增 preview 查询与 confirm API,支持 apply_id 幂等确认并同步写入 task_pool 日程
2. 同步更新主动调度实施文档的阶段状态与验收记录

前端:
3. AssistantPanel 脚本层继续解耦——私有类型迁移到独立类型文件,并抽离会话、工具轨迹、思考摘要、任务表单等纯函数辅助逻辑;保持助手面板模板与样式不变,降低表现层回归风险
This commit is contained in:
LoveLosita
2026-04-30 12:05:15 +08:00
parent 1555042e80
commit e945578fbf
38 changed files with 10267 additions and 580 deletions

View File

@@ -0,0 +1,76 @@
package events
import (
"errors"
"strconv"
"strings"
)
const (
ScheduleApplySucceededEventType = "schedule.apply.succeeded"
ScheduleApplyFailedEventType = "schedule.apply.failed"
ScheduleApplyResultEventVersion = "1"
)
// ScheduleApplyResultPayload 是主动调度确认应用的结果事件载荷。
//
// 职责边界:
// 1. 只描述 apply 成功或失败的结果事实,不表达 apply 请求;
// 2. 不复用 preview DB model也不携带完整变更明细
// 3. MVP 第一版 confirm 同步执行,是否发布该事件由后续接入点决定。
type ScheduleApplyResultPayload struct {
PreviewID string `json:"preview_id"`
ApplyID string `json:"apply_id"`
UserID int `json:"user_id"`
TriggerID string `json:"trigger_id,omitempty"`
CandidateID string `json:"candidate_id,omitempty"`
AppliedEventIDs []int `json:"applied_event_ids,omitempty"`
ApplyStatus string `json:"apply_status"`
ErrorCode string `json:"error_code,omitempty"`
TraceID string `json:"trace_id,omitempty"`
}
// ValidateForEvent 按具体事件类型校验 apply 结果载荷。
//
// 职责边界:
// 1. succeeded 要求至少包含一个正式日程 event id
// 2. failed 要求 error_code方便排障和前端提示映射
// 3. 不校验 event id 是否存在,正式落库事务负责保证。
func (p ScheduleApplyResultPayload) ValidateForEvent(eventType string) error {
if strings.TrimSpace(p.PreviewID) == "" {
return errors.New("preview_id 不能为空")
}
if strings.TrimSpace(p.ApplyID) == "" {
return errors.New("apply_id 不能为空")
}
if p.UserID <= 0 {
return errors.New("user_id 必须大于 0")
}
switch strings.TrimSpace(eventType) {
case ScheduleApplySucceededEventType:
if len(p.AppliedEventIDs) == 0 {
return errors.New("schedule.apply.succeeded 必须包含 applied_event_ids")
}
case ScheduleApplyFailedEventType:
if strings.TrimSpace(p.ErrorCode) == "" {
return errors.New("schedule.apply.failed 必须包含 error_code")
}
default:
return errors.New("未知的 schedule apply 结果事件类型")
}
return nil
}
func (p ScheduleApplyResultPayload) MessageKey() string {
if p.UserID <= 0 {
return ""
}
return strconv.Itoa(p.UserID)
}
func (p ScheduleApplyResultPayload) AggregateID() string {
if strings.TrimSpace(p.ApplyID) != "" {
return strings.TrimSpace(p.ApplyID)
}
return strings.TrimSpace(p.PreviewID)
}