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

36 lines
743 B
Go
Raw Normal View History

2023-06-01 10:35:09 +00:00
package handler
import (
"net/http"
2023-07-24 04:18:27 +00:00
"reflect"
2023-06-01 10:35:09 +00:00
2023-07-24 04:18:27 +00:00
"fusenapi/utils/basic"
2023-06-05 09:56:55 +00:00
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-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-07-24 04:18:27 +00:00
userinfo, err := basic.RequestParse(w, r, svcCtx, &req)
if err != nil {
return
}
2023-07-21 06:20:21 +00:00
2023-06-12 07:17:42 +00:00
// 创建一个业务逻辑层实例
2023-06-01 10:35:09 +00:00
l := logic.NewUserLoginLogic(r.Context(), svcCtx)
2023-06-12 07:17:42 +00:00
2023-07-24 04:18:27 +00:00
rl := reflect.ValueOf(l)
basic.BeforeLogic(w, r, rl)
resp := l.UserLogin(&req, userinfo)
if !basic.AfterLogic(w, r, rl) {
basic.NormalAfterLogic(w, r, resp)
2023-06-01 10:35:09 +00:00
}
}
}