fusenapi/home-user-auth/internal/handler/userbasicinfohandler.go

38 lines
896 B
Go
Raw Normal View History

2023-06-01 10:35:09 +00:00
package handler
import (
2023-06-05 09:56:55 +00:00
"errors"
2023-06-01 10:35:09 +00:00
"net/http"
2023-06-05 09:56:55 +00:00
"github.com/zeromicro/go-zero/core/logx"
"github.com/zeromicro/go-zero/rest/httpx"
2023-06-01 10:35:09 +00:00
"fusenapi/home-user-auth/internal/logic"
"fusenapi/home-user-auth/internal/svc"
"fusenapi/home-user-auth/internal/types"
)
func UserBasicInfoHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
var req types.Request
if err := httpx.Parse(r, &req); err != nil {
2023-06-05 09:56:55 +00:00
httpx.OkJsonCtx(r.Context(), w, &types.Response{
Code: 510,
Message: "parameter error",
})
logx.Info(err)
2023-06-01 10:35:09 +00:00
return
}
l := logic.NewUserBasicInfoLogic(r.Context(), svcCtx)
2023-06-07 03:35:04 +00:00
resp := l.UserBasicInfo(&req)
2023-06-05 09:56:55 +00:00
if resp != nil {
2023-06-01 10:35:09 +00:00
httpx.OkJsonCtx(r.Context(), w, resp)
2023-06-05 09:56:55 +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 10:35:09 +00:00
}
}
}