forked from JointCloud/pcm-coordinator
35 lines
1.1 KiB
Go
35 lines
1.1 KiB
Go
package inference
|
|
|
|
import (
|
|
"github.com/zeromicro/go-zero/rest/httpx"
|
|
"gitlink.org.cn/JointCloud/pcm-coordinator/internal/logic/inference"
|
|
"gitlink.org.cn/JointCloud/pcm-coordinator/internal/svc"
|
|
"gitlink.org.cn/JointCloud/pcm-coordinator/internal/types"
|
|
"gitlink.org.cn/JointCloud/pcm-coordinator/pkg/repository/result"
|
|
"gitlink.org.cn/JointCloud/pcm-coordinator/pkg/utils"
|
|
"net/http"
|
|
)
|
|
|
|
func DeployInstanceListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
var req types.DeployInstanceListReq
|
|
if err := httpx.Parse(r, &req); err != nil {
|
|
result.ParamErrorResult(r, w, err)
|
|
return
|
|
}
|
|
token := r.Header.Get("Authorization")
|
|
// 获取用户信息
|
|
jccUserInfo, err := utils.ParseTokenWithoutVerify(token)
|
|
if err != nil {
|
|
result.ParamErrorResult(r, w, err)
|
|
return
|
|
}
|
|
req.UserId = jccUserInfo.Id
|
|
req.UserName = jccUserInfo.UserName
|
|
|
|
l := inference.NewDeployInstanceListLogic(r.Context(), svcCtx)
|
|
resp, err := l.DeployInstanceList(&req)
|
|
result.HttpResult(r, w, resp, err)
|
|
}
|
|
}
|