16c67dcb4f
- store.AuditLog 表(sundynix_audit_log) + AppendAudit/ListAudit - middleware.Audit(db):只审计变更类(POST/PUT/DELETE/PATCH),收尾 best-effort 落库(独立超时 ctx,失败静默不拖垮主流程);挂管理组 + prompt 激活/撤销 + HITL 审批 - GET /api/v1/admin/audit:倒序审计流(limit/offset 翻页) - live:PUT pricing / POST prompts/deactivate 留痕(actor/path/status/ip),GET 不记 - DEPTH_ROADMAP T4.B:overview✅ + audit✅ 打勾 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
28 lines
793 B
Go
28 lines
793 B
Go
package store
|
|
|
|
import "context"
|
|
|
|
// AppendAudit 追加一条审计留痕(best-effort:审计失败不应影响主流程,调用方忽略返回)。
|
|
func (p *Postgres) AppendAudit(ctx context.Context, a *AuditLog) error {
|
|
if p.db == nil || a == nil {
|
|
return errStoreDisabled
|
|
}
|
|
return p.db.WithContext(ctx).Create(a).Error
|
|
}
|
|
|
|
// ListAudit 倒序列出审计留痕(管理端审计流;limit 限流、offset 翻页)。
|
|
func (p *Postgres) ListAudit(ctx context.Context, limit, offset int) ([]AuditLog, error) {
|
|
if p.db == nil {
|
|
return nil, errStoreDisabled
|
|
}
|
|
if limit <= 0 || limit > 200 {
|
|
limit = 50
|
|
}
|
|
if offset < 0 {
|
|
offset = 0
|
|
}
|
|
var out []AuditLog
|
|
err := p.db.WithContext(ctx).Order("created_at desc").Limit(limit).Offset(offset).Find(&out).Error
|
|
return out, err
|
|
}
|