44 lines
1.1 KiB
Go
44 lines
1.1 KiB
Go
package scout
|
|
|
|
import (
|
|
"context"
|
|
|
|
"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.ScoutPostListData, error) {
|
|
if l.svcCtx.Scout == nil {
|
|
return nil, response.Biz(503, 503001, "scout not configured")
|
|
}
|
|
uid, ok := middleware.UIDFrom(l.ctx)
|
|
if !ok {
|
|
return nil, response.Biz(401, 401001, "missing authorization")
|
|
}
|
|
|
|
list, err := l.svcCtx.Scout.RunScanFromBrief(l.ctx, uid, types.BriefToDomain(&req.Brief))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
out := make([]types.ScoutPostPublic, 0, len(list))
|
|
for _, p := range list {
|
|
out = append(out, types.ScoutPostFromDomain(p))
|
|
}
|
|
return &types.ScoutPostListData{List: out}, nil
|
|
|
|
}
|