fusenapi/server/product/internal/handler/getsizebyproducthandler.go

57 lines
1.5 KiB
Go
Raw Normal View History

2023-06-07 09:27:17 +00:00
package handler
import (
"errors"
2023-06-12 08:47:48 +00:00
"fusenapi/server/product/internal/types"
2023-06-07 09:27:17 +00:00
"net/http"
"github.com/zeromicro/go-zero/core/logx"
"github.com/zeromicro/go-zero/rest/httpx"
2023-06-12 08:47:48 +00:00
"fusenapi/utils/auth"
2023-06-08 03:03:20 +00:00
"fusenapi/server/product/internal/logic"
"fusenapi/server/product/internal/svc"
2023-06-07 09:27:17 +00:00
)
func GetSizeByProductHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
2023-06-12 08:47:48 +00:00
// 解析jwtToken
claims, err := svcCtx.ParseJwtToken(r)
// 如果解析出错则返回未授权的JSON响应并记录错误消息
if err != nil {
httpx.OkJsonCtx(r.Context(), w, &types.Response{
Code: 401,
Message: "unauthorized",
})
logx.Info("unauthorized:", err.Error())
2023-06-12 09:16:06 +00:00
return
2023-06-12 08:47:48 +00:00
}
// 从Token里获取对应的信息
userinfo, err := auth.GetUserInfoFormMapClaims(claims)
// 如果获取用户信息出错则返回未授权的JSON响应并记录错误消息
if err != nil {
httpx.OkJsonCtx(r.Context(), w, &types.Response{
Code: 401,
Message: "unauthorized",
})
logx.Info("unauthorized:", err.Error())
2023-06-12 09:16:06 +00:00
return
2023-06-12 08:47:48 +00:00
}
2023-06-07 09:27:17 +00:00
l := logic.NewGetSizeByProductLogic(r.Context(), svcCtx)
2023-06-12 08:47:48 +00:00
resp := l.GetSizeByProduct(userinfo)
// 如果响应不为nil则使用httpx.OkJsonCtx方法返回JSON响应;
// 否则发送500内部服务器错误的JSON响应并记录错误消息logx.Error。
2023-06-07 09:27:17 +00:00
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)
}
2023-06-12 09:16:06 +00:00
return
2023-06-07 09:27:17 +00:00
}
}