46 lines
1.1 KiB
Go
46 lines
1.1 KiB
Go
package scout
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
|
|
"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}
|
|
}
|
|
|
|
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")
|
|
}
|
|
uid, ok := middleware.UIDFrom(l.ctx)
|
|
if !ok {
|
|
return nil, response.Biz(401, 401001, "missing authorization")
|
|
}
|
|
|
|
brief := types.BriefToDomain(&req.Brief)
|
|
payload, err := json.Marshal(brief)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
j, err := l.svcCtx.Jobs.ScheduleScoutScan(l.ctx, uid, brief.ThemeKey, string(payload))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &types.ScoutScanJobData{Job: types.JobFromModel(j)}, nil
|
|
|
|
}
|