fusenapi/product/internal/handler/getproductinfohandler.go

40 lines
975 B
Go
Raw Normal View History

2023-06-05 03:27:01 +00:00
package handler
import (
2023-06-05 10:14:46 +00:00
"errors"
2023-06-05 03:27:01 +00:00
"fusenapi/utils/auth"
"net/http"
2023-06-05 10:14:46 +00:00
"github.com/zeromicro/go-zero/core/logx"
"github.com/zeromicro/go-zero/rest/httpx"
2023-06-05 03:27:01 +00:00
"fusenapi/product/internal/logic"
"fusenapi/product/internal/svc"
"fusenapi/product/internal/types"
)
func GetProductInfoHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
2023-06-05 10:14:46 +00:00
//用户登录信息
2023-06-05 03:27:01 +00:00
userInfo := auth.CheckAuth(r)
var req types.GetProductInfoReq
if err := httpx.Parse(r, &req); err != nil {
2023-06-05 10:14:46 +00:00
httpx.OkJsonCtx(r.Context(), w, &types.Response{
Code: 510,
Message: "parameter error",
})
logx.Info(err)
2023-06-05 03:27:01 +00:00
return
}
l := logic.NewGetProductInfoLogic(r.Context(), svcCtx)
2023-06-05 10:14:46 +00:00
resp := l.GetProductInfo(&req, userInfo)
if resp != nil {
2023-06-05 03:27:01 +00:00
httpx.OkJsonCtx(r.Context(), w, resp)
2023-06-05 10:14:46 +00:00
} else {
err := errors.New("server logic is error, resp must not be nil")
httpx.ErrorCtx(r.Context(), w, err)
logx.Error(err)
2023-06-05 03:27:01 +00:00
}
}
}