2023-08-24 03:47:22 +00:00
|
|
|
package logic
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fusenapi/utils/auth"
|
|
|
|
"fusenapi/utils/basic"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"fusenapi/server/auth/internal/svc"
|
|
|
|
"fusenapi/server/auth/internal/types"
|
|
|
|
|
2023-08-25 07:37:35 +00:00
|
|
|
"github.com/google/uuid"
|
2023-08-24 03:47:22 +00:00
|
|
|
"github.com/zeromicro/go-zero/core/logx"
|
|
|
|
)
|
|
|
|
|
|
|
|
type UserRegisterLogic struct {
|
|
|
|
logx.Logger
|
|
|
|
ctx context.Context
|
|
|
|
svcCtx *svc.ServiceContext
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewUserRegisterLogic(ctx context.Context, svcCtx *svc.ServiceContext) *UserRegisterLogic {
|
|
|
|
return &UserRegisterLogic{
|
|
|
|
Logger: logx.WithContext(ctx),
|
|
|
|
ctx: ctx,
|
|
|
|
svcCtx: svcCtx,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 处理进入前逻辑w,r
|
|
|
|
// func (l *UserRegisterLogic) BeforeLogic(w http.ResponseWriter, r *http.Request) {
|
|
|
|
// }
|
|
|
|
|
|
|
|
func (l *UserRegisterLogic) UserRegister(req *types.RequestUserRegister, userinfo *auth.UserInfo) (resp *basic.Response) {
|
|
|
|
// 返回值必须调用Set重新返回, resp可以空指针调用 resp.SetStatus(basic.CodeOK, data)
|
|
|
|
// userinfo 传入值时, 一定不为null
|
|
|
|
|
|
|
|
// 邮箱验证格式错误
|
|
|
|
if !auth.ValidateEmail(req.Email) {
|
|
|
|
return resp.SetStatus(basic.CodeOAuthEmailErr)
|
|
|
|
}
|
|
|
|
|
2023-08-30 06:21:09 +00:00
|
|
|
_, err := l.svcCtx.AllModels.FsUser.FindUserByEmail(l.ctx, req.Email)
|
|
|
|
if err == nil {
|
|
|
|
return resp.SetStatus(basic.CodeEmailExistsErr)
|
|
|
|
}
|
|
|
|
|
2023-08-31 03:12:49 +00:00
|
|
|
if !TimeLimit.Is(req.Email) {
|
|
|
|
return resp.SetStatus(basic.CodeEmailTimeShortErr)
|
|
|
|
}
|
|
|
|
|
2023-08-24 03:47:22 +00:00
|
|
|
token := &auth.RegisterToken{
|
|
|
|
OperateType: auth.OpTypeRegister,
|
|
|
|
GuestId: userinfo.GuestId,
|
|
|
|
Wid: req.Wid,
|
|
|
|
Email: req.Email,
|
|
|
|
Password: req.Password,
|
2023-08-29 10:06:39 +00:00
|
|
|
Platform: string(auth.PLATFORM_FUSEN),
|
2023-08-25 07:37:35 +00:00
|
|
|
TraceId: uuid.NewString(),
|
2023-09-05 07:00:45 +00:00
|
|
|
CreateAt: time.Now().UTC(),
|
2023-08-29 06:19:47 +00:00
|
|
|
Extend: map[string]interface{}{
|
|
|
|
"first_name": req.FirstName,
|
|
|
|
"last_name": req.LastName,
|
|
|
|
"resetaurant": req.Resetaurant,
|
|
|
|
},
|
2023-08-24 03:47:22 +00:00
|
|
|
}
|
|
|
|
|
2023-08-29 06:19:47 +00:00
|
|
|
clurl, err := l.svcCtx.OAuthTokenManger.Generate(token)
|
2023-08-24 03:47:22 +00:00
|
|
|
if err != nil {
|
|
|
|
logx.Error(err)
|
|
|
|
return resp.SetStatus(basic.CodeOAuthRegisterTokenErr)
|
|
|
|
}
|
|
|
|
|
|
|
|
// 进入发送邮箱的系统
|
|
|
|
EmailManager.EmailTasks <- &EmailFormat{
|
2023-09-04 08:23:11 +00:00
|
|
|
TemplateName: "email_register.tpl",
|
2023-08-31 04:20:05 +00:00
|
|
|
UniqueKey: "register-" + req.Email,
|
2023-08-24 03:47:22 +00:00
|
|
|
TargetEmail: req.Email,
|
|
|
|
CompanyName: "fusen",
|
|
|
|
ConfirmationLink: clurl,
|
|
|
|
SenderName: "support@fusenpack.com",
|
|
|
|
SenderTitle: "register-valid",
|
2023-09-04 05:29:36 +00:00
|
|
|
Extend: map[string]string{
|
|
|
|
"UserName": req.FirstName + " " + req.LastName,
|
|
|
|
},
|
2023-08-24 03:47:22 +00:00
|
|
|
} // email进入队
|
|
|
|
|
|
|
|
return resp.SetStatus(basic.CodeOK)
|
|
|
|
}
|
|
|
|
|
|
|
|
// 处理逻辑后 w,r 如:重定向, resp 必须重新处理
|
|
|
|
// func (l *UserRegisterLogic) AfterLogic(w http.ResponseWriter, r *http.Request, resp *basic.Response) {
|
|
|
|
// // httpx.OkJsonCtx(r.Context(), w, resp)
|
|
|
|
// }
|