fusenapi/server/home-user-auth/internal/handler/userloginhandler.go

49 lines
1.4 KiB
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-06 12:08:32 +00:00
"fmt"
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-08 02:51:56 +00:00
"fusenapi/server/home-user-auth/internal/logic"
"fusenapi/server/home-user-auth/internal/svc"
"fusenapi/server/home-user-auth/internal/types"
2023-06-06 12:08:32 +00:00
"fusenapi/utils/basic"
2023-06-01 10:35:09 +00:00
)
2023-06-12 07:17:42 +00:00
// UserLoginHandler 特殊的登录获取jwt token处理
2023-06-01 10:35:09 +00:00
func UserLoginHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
2023-06-12 07:17:42 +00:00
2023-06-01 10:35:09 +00:00
var req types.RequestUserLogin
2023-06-12 07:17:42 +00:00
// 如果端点有请求结构体则使用httpx.Parse方法从HTTP请求体中解析请求数据
2023-06-01 10:35:09 +00:00
if err := httpx.Parse(r, &req); err != nil {
2023-06-12 09:28:49 +00:00
httpx.OkJsonCtx(r.Context(), w, &basic.Response{
2023-06-05 09:56:55 +00:00
Code: 510,
Message: "parameter error",
})
logx.Info(err)
2023-06-01 10:35:09 +00:00
return
}
2023-06-12 07:17:42 +00:00
// 创建一个业务逻辑层实例
2023-06-01 10:35:09 +00:00
l := logic.NewUserLoginLogic(r.Context(), svcCtx)
2023-06-06 12:08:32 +00:00
resp, token := l.UserLogin(&req)
if resp.Code == basic.CodeOK.Code {
w.Header().Add("Authorization", fmt.Sprintf("Bearer %s", token))
}
2023-06-12 07:17:42 +00:00
// 如果响应不为nil则使用httpx.OkJsonCtx方法返回JSON响应;
// 否则发送500内部服务器错误的JSON响应并记录错误消息logx.Error。
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
}
}
}