fusenapi/product/internal/handler/getproductlisthandler.go

38 lines
882 B
Go
Raw Normal View History

2023-06-01 07:32:28 +00:00
package handler
import (
2023-06-05 10:14:46 +00:00
"errors"
2023-06-01 07:32:28 +00:00
"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-01 07:32:28 +00:00
"fusenapi/product/internal/logic"
"fusenapi/product/internal/svc"
"fusenapi/product/internal/types"
)
func GetProductListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
var req types.GetProductListReq
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,
2023-06-06 10:27:28 +00:00
Message: err.Error(),
2023-06-05 10:14:46 +00:00
})
logx.Info(err)
2023-06-01 07:32:28 +00:00
return
}
2023-06-05 10:14:46 +00:00
2023-06-01 07:32:28 +00:00
l := logic.NewGetProductListLogic(r.Context(), svcCtx)
2023-06-07 03:35:04 +00:00
resp := l.GetProductList(&req)
2023-06-05 10:14:46 +00:00
if resp != nil {
2023-06-01 07:32:28 +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-01 07:32:28 +00:00
}
}
}