feat(storage): 统一二进制对象存储与公开错误
新增 Aliyun OSS 与 S3 协议、通道内重试和按优先级跨通道切换,保留 server-main 兼容与环境 OSS 内存通道。 将请求及结果中的 Base64、Data URI、Buffer、multipart 和内联二进制统一对象化,生产路径不再写入本机静态目录,历史本地资源仅保留只读兼容。 引入 PublicErrorV1 并统一 API、异步查询、兼容协议和失败回调的安全错误输出,同时补充迁移、管理端、指标、OpenAPI 与本地模拟验收。 验证:go test ./... -count=1;go vet ./...;pnpm lint;pnpm test;pnpm build;pnpm openapi;tests/ci/migrations-test.sh。
This commit is contained in:
@@ -230,6 +230,15 @@ func (s *Service) observeTaskEventSkip(reason string) {
|
||||
}
|
||||
}
|
||||
|
||||
func (s *Service) observeObjectStorage(event string, provider string, bytes int, duration time.Duration) {
|
||||
observer, ok := s.billingMetrics.(interface {
|
||||
ObserveObjectStorage(string, string, int64, time.Duration)
|
||||
})
|
||||
if ok {
|
||||
observer.ObserveObjectStorage(event, provider, int64(bytes), duration)
|
||||
}
|
||||
}
|
||||
|
||||
func (s *Service) Execute(ctx context.Context, task store.GatewayTask, user *auth.User) (Result, error) {
|
||||
return s.execute(ctx, task, user, nil)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user