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

38 lines
884 B
Go
Raw Normal View History

2023-05-31 10:33:02 +00:00
package handler
import (
2023-06-05 09:56:55 +00:00
"errors"
2023-05-31 10:33:02 +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"
"fusenapi/home-user-auth/internal/logic"
"fusenapi/home-user-auth/internal/svc"
"fusenapi/home-user-auth/internal/types"
2023-05-31 10:33:02 +00:00
)
func UserFontsHandler(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-05-31 10:33:02 +00:00
return
}
l := logic.NewUserFontsLogic(r.Context(), svcCtx)
2023-06-05 09:56:55 +00:00
resp := l.UserFonts(&req)
if resp != nil {
2023-05-31 10:33:02 +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-05-31 10:33:02 +00:00
}
}
}