thread-master/apps/backend/internal/logic/scout/run_scan_logic.go

46 lines
1.1 KiB
Go
Raw Permalink Normal View History

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"
"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) {
if l.svcCtx.Jobs == nil {
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-07-13 08:59:13 +00:00
brief := types.BriefToDomain(&req.Brief)
payload, err := json.Marshal(brief)
2026-07-13 01:15:30 +00:00
if err != nil {
return nil, err
}
2026-07-13 08:59:13 +00:00
j, err := l.svcCtx.Jobs.ScheduleScoutScan(l.ctx, uid, brief.ThemeKey, string(payload))
if err != nil {
return nil, err
2026-07-13 01:15:30 +00:00
}
2026-07-13 08:59:13 +00:00
return &types.ScoutScanJobData{Job: types.JobFromModel(j)}, nil
2026-07-13 01:15:30 +00:00
}