package vm import ( "context" "github.com/jinzhu/copier" "github.com/pkg/errors" "gitlink.org.cn/jcce-pcm/pcm-coordinator/api/internal/svc" "gitlink.org.cn/jcce-pcm/pcm-coordinator/api/internal/types" "gitlink.org.cn/jcce-pcm/pcm-coordinator/pkg/utils" "gitlink.org.cn/jcce-pcm/pcm-participant-openstack/openstack" "gitlink.org.cn/jcce-pcm/utils/result" "gitlink.org.cn/jcce-pcm/utils/xerr" "k8s.io/apimachinery/pkg/util/json" "github.com/zeromicro/go-zero/core/logx" ) type CreateServerLogic struct { logx.Logger ctx context.Context svcCtx *svc.ServiceContext } func NewCreateServerLogic(ctx context.Context, svcCtx *svc.ServiceContext) *CreateServerLogic { return &CreateServerLogic{ Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx, } } func (l *CreateServerLogic) CreateServer(req *types.CreateServerReq) (resp *types.CreateServerResp, err error) { // todo: add your logic here and delete this line CreateServerReq := &openstack.CreateServerReq{} err = copier.CopyWithOption(CreateServerReq, req, copier.Option{Converters: utils.Converters}) CreateServerResp, err := l.svcCtx.OpenstackRpc.CreateServer(l.ctx, CreateServerReq) if err != nil { return nil, errors.Wrapf(xerr.NewErrMsg("Failed to get Servers list"), "Failed to get db Servers list err : %v ,req:%+v", err, req) } marshal, err := json.Marshal(&CreateServerResp) if err != nil { return nil, result.NewDefaultError(err.Error()) } json.Unmarshal(marshal, &resp) err = copier.CopyWithOption(&resp, &CreateServerResp, copier.Option{Converters: utils.Converters}) return resp, err }