fusenapi/server/auth/internal/logic/useremailconfirmationlogic.go

227 lines
5.1 KiB
Go
Raw Normal View History

2023-07-26 16:03:38 +00:00
package logic
import (
2023-08-25 07:37:35 +00:00
"fmt"
2023-08-27 15:54:28 +00:00
"fusenapi/model/gmodel"
2023-07-26 16:03:38 +00:00
"fusenapi/utils/auth"
"fusenapi/utils/basic"
2023-08-25 07:37:35 +00:00
"fusenapi/utils/wevent"
2023-08-29 08:24:20 +00:00
"net/http"
2023-07-27 08:48:43 +00:00
"time"
2023-07-26 16:03:38 +00:00
"context"
"fusenapi/server/auth/internal/svc"
"fusenapi/server/auth/internal/types"
2023-08-25 07:37:35 +00:00
"github.com/474420502/requests"
2023-07-26 16:03:38 +00:00
"github.com/zeromicro/go-zero/core/logx"
2023-08-29 08:24:20 +00:00
"github.com/zeromicro/go-zero/rest/httpx"
2023-08-29 07:34:38 +00:00
"gorm.io/gorm"
2023-07-26 16:03:38 +00:00
)
type UserEmailConfirmationLogic struct {
logx.Logger
ctx context.Context
svcCtx *svc.ServiceContext
}
func NewUserEmailConfirmationLogic(ctx context.Context, svcCtx *svc.ServiceContext) *UserEmailConfirmationLogic {
return &UserEmailConfirmationLogic{
Logger: logx.WithContext(ctx),
ctx: ctx,
svcCtx: svcCtx,
}
}
// 处理进入前逻辑w,r
// func (l *UserEmailConfirmationLogic) BeforeLogic(w http.ResponseWriter, r *http.Request) {
// }
2023-08-27 15:54:28 +00:00
func FinishRegister(svcCtx *svc.ServiceContext, user *gmodel.FsUser, token *auth.RegisterToken) error {
// 创建签证
jwtToken, err := auth.GenerateJwtTokenUint64(
auth.StringToHash(*user.PasswordHash),
svcCtx.Config.Auth.AccessExpire,
time.Now().UTC().Unix(),
user.Id,
2023-08-29 08:49:11 +00:00
token.GuestId,
2023-08-27 15:54:28 +00:00
)
if err != nil {
return err
}
event := wevent.NewWebsocketEventSuccess(wevent.UserEmailRegister, token.TraceId)
event.Data = wevent.DataEmailRegister{
JwtToken: jwtToken,
}
err = CommonNotify(svcCtx.Config.MainAddress, token.Wid, event)
if err != nil {
// logx.Error(err, token.TraceId)
return err
}
return nil
}
func CommonNotify(MainAddress, wid string, event *wevent.WebsocketEvent) error {
tp := requests.Post(fmt.Sprintf("%s/api/websocket/common_notify", MainAddress))
tp.SetBodyJson(requests.M{
"wid": wid,
"data": event,
})
wresp, err := tp.Execute()
if err != nil {
// logx.Error(err, token.TraceId)
return err
}
result := wresp.Json()
if result.Get("code").Int() != 200 {
// logx.Error(result.Get("message"))
return fmt.Errorf("%s", result.Get("message").Str)
}
return nil
}
2023-07-26 16:03:38 +00:00
func (l *UserEmailConfirmationLogic) UserEmailConfirmation(req *types.RequestEmailConfirmation, userinfo *auth.UserInfo) (resp *basic.Response) {
// 返回值必须调用Set重新返回, resp可以空指针调用 resp.SetStatus(basic.CodeOK, data)
// userinfo 传入值时, 一定不为null
2023-08-29 06:19:47 +00:00
token, err := l.svcCtx.OAuthTokenManger.Decrypt(req.Token)
2023-07-27 08:48:43 +00:00
if err != nil {
2023-08-29 06:24:50 +00:00
logx.Error(err)
2023-07-27 08:48:43 +00:00
return resp.SetStatus(basic.CodeOAuthRegisterTokenErr)
}
switch token.OperateType {
case auth.OpTypeRegister:
if time.Since(token.CreateAt) >= 24*time.Hour {
return resp.SetStatus(basic.CodeOAuthConfirmationTimeoutErr)
}
2023-08-29 06:27:00 +00:00
logx.Info(token.Platform)
2023-07-27 08:48:43 +00:00
switch token.Platform {
2023-08-29 10:06:39 +00:00
case string(auth.PLATFORM_GOOGLE):
2023-07-27 11:47:52 +00:00
// 谷歌平台的注册流程
user, err := l.svcCtx.AllModels.FsUser.RegisterByGoogleOAuth(l.ctx, token)
2023-07-27 08:48:43 +00:00
if err != nil {
2023-08-25 07:37:35 +00:00
logx.Error(err, token.TraceId)
2023-07-27 08:48:43 +00:00
return resp.SetStatus(basic.CodeDbSqlErr)
}
2023-08-29 08:15:34 +00:00
err = FinishRegister(l.svcCtx, user, token)
if err != nil {
logx.Error(err)
}
2023-08-27 15:54:28 +00:00
logx.Info("success", token.TraceId)
2023-07-27 11:47:52 +00:00
2023-08-29 10:06:39 +00:00
case string(auth.PLATFORM_FACEBOOK):
case string(auth.PLATFORM_FUSEN):
2023-08-29 02:56:35 +00:00
// log.Println("aaaa", token)
2023-08-24 10:28:01 +00:00
user, err := l.svcCtx.AllModels.FsUser.RegisterByFusen(l.ctx, token)
2023-08-29 07:34:38 +00:00
if err != nil && err != gorm.ErrRecordNotFound {
2023-08-29 06:36:53 +00:00
logx.Error(err, ":", token.TraceId)
2023-08-29 08:15:34 +00:00
return resp.SetStatus(basic.CodeDbSqlErr, err.Error())
2023-08-24 10:28:01 +00:00
}
2023-08-29 08:02:54 +00:00
err = FinishRegister(l.svcCtx, user, token)
if err != nil {
logx.Error(err)
}
logx.Info("success:", token.TraceId)
2023-07-27 08:48:43 +00:00
}
default:
return resp.SetStatus(basic.CodeOAuthRegisterTokenErr)
}
2023-07-26 16:03:38 +00:00
return resp.SetStatus(basic.CodeOK)
}
// 处理逻辑后 w,r 如:重定向, resp 必须重新处理
2023-08-29 08:24:20 +00:00
func (l *UserEmailConfirmationLogic) AfterLogic(w http.ResponseWriter, r *http.Request, resp *basic.Response) {
2023-08-29 08:26:06 +00:00
if resp.Code == 200 {
successHtml := `<!DOCTYPE html>
<html>
<head>
<title>注册成功</title>
2023-08-29 08:37:12 +00:00
<style>
body {
font-family: sans-serif;
font-size: 16px;
}
h1 {
font-size: 24px;
color: red;
}
@media screen and (max-width: 480px) {
body {
font-size: 14px;
}
h1 {
font-size: 18px;
}
}
</style>
2023-08-29 08:26:06 +00:00
</head>
<body>
2023-08-29 08:37:12 +00:00
<h1>恭喜!您的注册成功</h1>
2023-08-29 08:26:06 +00:00
<p>感谢您在我们网站进行注册您的账号已经激活</p>
2023-08-29 08:37:12 +00:00
2023-08-29 08:26:06 +00:00
<p>您现在可以使用您的邮箱地址和密码登录我们的网站,享受完整的服务和功能</p>
<p>再次感谢您的信任和支持如果您有任何问题,请随时联系我们</p>
2023-08-29 08:37:12 +00:00
2023-08-29 08:26:06 +00:00
<p>祝您使用愉快!</p>
</body>
</html>`
2023-08-29 08:35:02 +00:00
w.Write([]byte(successHtml))
httpx.Ok(w)
2023-08-29 08:26:06 +00:00
} else {
2023-08-29 09:14:20 +00:00
errorHtml := `
<!DOCTYPE html>
<html>
<head>
<title>注册失败</title>
<style>
body {
font-family: sans-serif;
font-size: 16px;
}
h1 {
font-size: 24px;
color: blue;
}
@media screen and (max-width: 480px) {
body {
font-size: 14px;
}
h1 {
font-size: 18px;
}
}
</style>
</head>
<body>
<h1>%s</h1>
</body>
</html>
`
errorHtml = fmt.Sprintf(errorHtml, resp.Message)
w.Write([]byte(errorHtml))
httpx.Ok(w)
2023-08-29 08:26:06 +00:00
}
2023-08-29 08:24:20 +00:00
}