47 lines
1.1 KiB
Go
47 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 RemoveScoutRunLogic struct {
|
|
logx.Logger
|
|
ctx context.Context
|
|
svcCtx *svc.ServiceContext
|
|
}
|
|
|
|
func NewRemoveScoutRunLogic(ctx context.Context, svcCtx *svc.ServiceContext) *RemoveScoutRunLogic {
|
|
return &RemoveScoutRunLogic{
|
|
Logger: logx.WithContext(ctx),
|
|
ctx: ctx,
|
|
svcCtx: svcCtx,
|
|
}
|
|
}
|
|
|
|
func (l *RemoveScoutRunLogic) RemoveScoutRun(req *types.ScoutRunPostsReq) (resp *types.OkData, err 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")
|
|
}
|
|
if req == nil {
|
|
return nil, response.Biz(400, 400020, "invalid run request")
|
|
}
|
|
if err := validateRunID(req.RunId); err != nil {
|
|
return nil, err
|
|
}
|
|
if err := l.svcCtx.Scout.RemoveRun(l.ctx, uid, req.RunId); err != nil {
|
|
return nil, err
|
|
}
|
|
return &types.OkData{Ok: true}, nil
|
|
}
|