2023-06-13 09:47:48 +00:00
|
|
|
|
package handler
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"errors"
|
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
|
|
"github.com/zeromicro/go-zero/core/logx"
|
|
|
|
|
"github.com/zeromicro/go-zero/rest/httpx"
|
|
|
|
|
|
|
|
|
|
"fusenapi/utils/auth"
|
|
|
|
|
"fusenapi/utils/basic"
|
|
|
|
|
|
|
|
|
|
"fusenapi/server/shopping-cart-confirmation/internal/logic"
|
|
|
|
|
"fusenapi/server/shopping-cart-confirmation/internal/svc"
|
|
|
|
|
"fusenapi/server/shopping-cart-confirmation/internal/types"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func CartListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
|
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
// 解析jwtToken
|
2023-06-13 09:51:12 +00:00
|
|
|
|
claims, err := svcCtx.ParseJwtToken(r)
|
2023-06-13 09:47:48 +00:00
|
|
|
|
// 如果解析出错,则返回未授权的JSON响应并记录错误消息
|
|
|
|
|
if err != nil {
|
|
|
|
|
httpx.OkJsonCtx(r.Context(), w, &basic.Response{
|
|
|
|
|
Code: 401,
|
|
|
|
|
Message: "unauthorized",
|
|
|
|
|
})
|
|
|
|
|
logx.Info("unauthorized:", err.Error())
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 从Token里获取对应的信息
|
|
|
|
|
userinfo, err := auth.GetUserInfoFormMapClaims(claims)
|
|
|
|
|
// 如果获取用户信息出错,则返回未授权的JSON响应并记录错误消息
|
|
|
|
|
if err != nil {
|
|
|
|
|
httpx.OkJsonCtx(r.Context(), w, &basic.Response{
|
|
|
|
|
Code: 401,
|
|
|
|
|
Message: "unauthorized",
|
|
|
|
|
})
|
|
|
|
|
logx.Info("unauthorized:", err.Error())
|
|
|
|
|
return
|
|
|
|
|
}
|
2023-06-13 09:51:12 +00:00
|
|
|
|
|
2023-06-13 09:47:48 +00:00
|
|
|
|
var req types.CartListReq
|
|
|
|
|
// 如果端点有请求结构体,则使用httpx.Parse方法从HTTP请求体中解析请求数据
|
|
|
|
|
if err := httpx.Parse(r, &req); err != nil {
|
|
|
|
|
httpx.OkJsonCtx(r.Context(), w, &basic.Response{
|
|
|
|
|
Code: 510,
|
|
|
|
|
Message: "parameter error",
|
|
|
|
|
})
|
|
|
|
|
logx.Info(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
// 创建一个业务逻辑层实例
|
|
|
|
|
l := logic.NewCartListLogic(r.Context(), svcCtx)
|
2023-06-13 09:51:12 +00:00
|
|
|
|
resp := l.CartList(&req, userinfo)
|
2023-06-13 09:47:48 +00:00
|
|
|
|
// 如果响应不为nil,则使用httpx.OkJsonCtx方法返回JSON响应;
|
|
|
|
|
// 否则,发送500内部服务器错误的JSON响应并记录错误消息logx.Error。
|
|
|
|
|
if resp != nil {
|
|
|
|
|
httpx.OkJsonCtx(r.Context(), w, resp)
|
|
|
|
|
} else {
|
|
|
|
|
err := errors.New("server logic is error, resp must not be nil")
|
|
|
|
|
httpx.ErrorCtx(r.Context(), w, err)
|
|
|
|
|
logx.Error(err)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|