This commit is contained in:
eson 2023-06-07 11:36:29 +08:00
parent ef50dbb6fe
commit f6ed43229d
3 changed files with 13 additions and 8 deletions

View File

@ -13,7 +13,7 @@ func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
server.AddRoutes(
[]rest.Route{
{
Method: http.MethodPost,
Method: http.MethodGet,
Path: "/user/login",
Handler: UserLoginHandler(serverCtx),
},

View File

@ -2,6 +2,7 @@ package logic
import (
"context"
"strconv"
"fusenapi/home-user-auth/internal/svc"
"fusenapi/home-user-auth/internal/types"
@ -28,17 +29,21 @@ func NewUserSaveBasicInfoLogic(ctx context.Context, svcCtx *svc.ServiceContext)
func (l *UserSaveBasicInfoLogic) UserSaveBasicInfo(req *types.RequestBasicInfoForm) (resp *types.Response) {
// 必须返回response, 前端需要的是内部约定的Code码, 处理相关的逻辑. 例子(eg): resp.Set(501, "error")
resp = &types.Response{}
// logx.Info(req)
// if userinfo.UserId == 0 {
// resp.SetStatusWithMessage(basic.DefaultError, "user is not exists")
// return resp
// }
userid := l.ctx.Value("userid").(int64)
userid, err := strconv.ParseInt(l.ctx.Value("userid").(string), 10, 64)
if err != nil {
resp.SetStatusWithMessage(basic.CodeServiceErr, err.Error())
return resp
}
fsUserModel, err := model.NewFsUserModel(l.svcCtx.MysqlConn).FindOne(l.ctx, userid)
if err != nil {
if err == model.ErrNotFound {
resp.SetStatusWithMessage(basic.CodeOK, "user is not exists")
return resp
}
logx.Error(err)
return resp
}
resp.SetStatus(basic.CodeOK, fsUserModel)

View File

@ -16,7 +16,7 @@ type request {
service home-user-auth {
@handler UserLoginHandler
post /user/login(RequestUserLogin) returns (responseJwt);
post /user/login(RequestUserLogin) returns (response);
@handler UserFontsHandler
get /user/fonts(request) returns (response);