2026-07-13 01:15:30 +00:00
|
|
|
package scout
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
2026-07-13 08:59:13 +00:00
|
|
|
"encoding/json"
|
2026-07-13 01:15:30 +00:00
|
|
|
|
|
|
|
|
"apps/backend/internal/middleware"
|
2026-08-13 02:22:24 +00:00
|
|
|
scoutDomain "apps/backend/internal/module/scout/domain"
|
2026-07-13 01:15:30 +00:00
|
|
|
"apps/backend/internal/response"
|
|
|
|
|
"apps/backend/internal/svc"
|
|
|
|
|
"apps/backend/internal/types"
|
|
|
|
|
|
|
|
|
|
"github.com/zeromicro/go-zero/core/logx"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type RunScanLogic struct {
|
|
|
|
|
logx.Logger
|
|
|
|
|
ctx context.Context
|
|
|
|
|
svcCtx *svc.ServiceContext
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func NewRunScanLogic(ctx context.Context, svcCtx *svc.ServiceContext) *RunScanLogic {
|
|
|
|
|
return &RunScanLogic{Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx}
|
|
|
|
|
}
|
|
|
|
|
|
2026-07-13 08:59:13 +00:00
|
|
|
func (l *RunScanLogic) RunScan(req *types.ScoutScanReq) (*types.ScoutScanJobData, error) {
|
2026-08-13 02:22:24 +00:00
|
|
|
if l.svcCtx.Jobs == nil || l.svcCtx.Scout == nil {
|
2026-07-13 08:59:13 +00:00
|
|
|
return nil, response.Biz(503, 503001, "jobs module not configured")
|
2026-07-13 01:15:30 +00:00
|
|
|
}
|
|
|
|
|
uid, ok := middleware.UIDFrom(l.ctx)
|
|
|
|
|
if !ok {
|
|
|
|
|
return nil, response.Biz(401, 401001, "missing authorization")
|
|
|
|
|
}
|
2026-08-13 02:22:24 +00:00
|
|
|
if req == nil {
|
|
|
|
|
return nil, response.Biz(400, 400020, "invalid scout scan request")
|
|
|
|
|
}
|
2026-07-13 01:15:30 +00:00
|
|
|
|
2026-07-13 08:59:13 +00:00
|
|
|
brief := types.BriefToDomain(&req.Brief)
|
2026-08-13 02:22:24 +00:00
|
|
|
run, err := l.svcCtx.Scout.CreateQueuedRun(l.ctx, uid, brief)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
// Embed run_id alongside the immutable brief fields. The current worker can
|
|
|
|
|
// still unmarshal the legacy flat RunBrief; the lifecycle worker will verify
|
|
|
|
|
// run_id against Job.RefID.
|
|
|
|
|
payload, err := json.Marshal(struct {
|
|
|
|
|
RunID string `json:"run_id"`
|
|
|
|
|
*scoutDomain.RunBrief
|
|
|
|
|
}{RunID: run.ID, RunBrief: brief})
|
|
|
|
|
if err != nil {
|
|
|
|
|
_ = l.svcCtx.Scout.FailRun(l.ctx, uid, run.ID, "failed to encode scan payload")
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
j, err := l.svcCtx.Jobs.ScheduleScoutScan(l.ctx, uid, run.ID, string(payload))
|
2026-07-13 01:15:30 +00:00
|
|
|
if err != nil {
|
2026-08-13 02:22:24 +00:00
|
|
|
_ = l.svcCtx.Scout.FailRun(l.ctx, uid, run.ID, "scan job scheduling failed")
|
2026-07-13 01:15:30 +00:00
|
|
|
return nil, err
|
|
|
|
|
}
|
2026-08-13 02:22:24 +00:00
|
|
|
bound, err := l.svcCtx.Scout.BindRunJob(l.ctx, uid, run.ID, j.ID)
|
2026-07-13 08:59:13 +00:00
|
|
|
if err != nil {
|
2026-08-13 02:22:24 +00:00
|
|
|
_ = l.svcCtx.Jobs.Delete(l.ctx, uid, j.ID)
|
|
|
|
|
_ = l.svcCtx.Scout.FailRun(l.ctx, uid, run.ID, "scan run/job binding failed")
|
2026-07-13 08:59:13 +00:00
|
|
|
return nil, err
|
2026-07-13 01:15:30 +00:00
|
|
|
}
|
2026-08-13 02:22:24 +00:00
|
|
|
return &types.ScoutScanJobData{Job: types.JobFromModel(j), Run: types.ScoutRunFromDomain(bound)}, nil
|
2026-07-13 01:15:30 +00:00
|
|
|
|
|
|
|
|
}
|