46 lines
1.4 KiB
Go
46 lines
1.4 KiB
Go
package ai
|
|
|
|
import (
|
|
"context"
|
|
"github.com/jinzhu/copier"
|
|
"gitlink.org.cn/jcce-pcm/pcm-participant-modelarts/modelarts"
|
|
"gitlink.org.cn/jcce-pcm/utils/result"
|
|
"gitlink.org.cn/jcce-pcm/utils/tool"
|
|
"k8s.io/apimachinery/pkg/util/json"
|
|
|
|
"gitlink.org.cn/jcce-pcm/pcm-coordinator/api/internal/svc"
|
|
"gitlink.org.cn/jcce-pcm/pcm-coordinator/api/internal/types"
|
|
|
|
"github.com/zeromicro/go-zero/core/logx"
|
|
)
|
|
|
|
type DeleteTrainingJobLogic struct {
|
|
logx.Logger
|
|
ctx context.Context
|
|
svcCtx *svc.ServiceContext
|
|
}
|
|
|
|
func NewDeleteTrainingJobLogic(ctx context.Context, svcCtx *svc.ServiceContext) *DeleteTrainingJobLogic {
|
|
return &DeleteTrainingJobLogic{
|
|
Logger: logx.WithContext(ctx),
|
|
ctx: ctx,
|
|
svcCtx: svcCtx,
|
|
}
|
|
}
|
|
|
|
func (l *DeleteTrainingJobLogic) DeleteTrainingJob(req *types.DeleteTrainingJobReq) (resp *types.DeleteTrainingJobResp, err error) {
|
|
modelartsReq := &modelarts.DeleteTrainingJobReq{}
|
|
err = copier.CopyWithOption(modelartsReq, req, copier.Option{Converters: tool.Converters})
|
|
deleteTrainingJobResp, err := l.svcCtx.ModelArtsRpc.DeleteTrainingJob(l.ctx, modelartsReq)
|
|
if err != nil {
|
|
return nil, result.NewDefaultError(err.Error())
|
|
}
|
|
marshal, err := json.Marshal(&deleteTrainingJobResp)
|
|
if err != nil {
|
|
return nil, result.NewDefaultError(err.Error())
|
|
}
|
|
json.Unmarshal(marshal, &resp)
|
|
err = copier.CopyWithOption(&resp, &deleteTrainingJobResp, copier.Option{Converters: tool.Converters})
|
|
return resp, nil
|
|
}
|