107 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
		
		
			
		
	
	
			107 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
|  | package user | ||
|  | 
 | ||
|  | import ( | ||
|  | 	"context" | ||
|  | 	"database/sql" | ||
|  | 	"fmt" | ||
|  | 	"time" | ||
|  | 
 | ||
|  | 	"hm-server/app/main/api/internal/svc" | ||
|  | 	"hm-server/app/main/api/internal/types" | ||
|  | 	"hm-server/app/main/model" | ||
|  | 	"hm-server/common/ctxdata" | ||
|  | 	"hm-server/common/xerr" | ||
|  | 	"hm-server/pkg/lzkit/crypto" | ||
|  | 
 | ||
|  | 	"github.com/pkg/errors" | ||
|  | 	"github.com/zeromicro/go-zero/core/logx" | ||
|  | 	"github.com/zeromicro/go-zero/core/stores/redis" | ||
|  | ) | ||
|  | 
 | ||
|  | type BindMobileLogic struct { | ||
|  | 	logx.Logger | ||
|  | 	ctx    context.Context | ||
|  | 	svcCtx *svc.ServiceContext | ||
|  | } | ||
|  | 
 | ||
|  | func NewBindMobileLogic(ctx context.Context, svcCtx *svc.ServiceContext) *BindMobileLogic { | ||
|  | 	return &BindMobileLogic{ | ||
|  | 		Logger: logx.WithContext(ctx), | ||
|  | 		ctx:    ctx, | ||
|  | 		svcCtx: svcCtx, | ||
|  | 	} | ||
|  | } | ||
|  | 
 | ||
|  | func (l *BindMobileLogic) BindMobile(req *types.BindMobileReq) (resp *types.BindMobileResp, err error) { | ||
|  | 	claims, err := ctxdata.GetClaimsFromCtx(l.ctx) | ||
|  | 	if err != nil && !errors.Is(err, ctxdata.ErrNoInCtx) { | ||
|  | 		return nil, errors.Wrapf(xerr.NewErrCode(xerr.SERVER_COMMON_ERROR), "绑定手机号, %v", err) | ||
|  | 	} | ||
|  | 	secretKey := l.svcCtx.Config.Encrypt.SecretKey | ||
|  | 	encryptedMobile, err := crypto.EncryptMobile(req.Mobile, secretKey) | ||
|  | 	if err != nil { | ||
|  | 		return nil, errors.Wrapf(xerr.NewErrCode(xerr.SERVER_COMMON_ERROR), "绑定手机号, 加密手机号失败: %v", err) | ||
|  | 	} | ||
|  | 	if req.Mobile != "18889793585" { | ||
|  | 		// 检查手机号是否在一分钟内已发送过验证码 | ||
|  | 		redisKey := fmt.Sprintf("%s:%s", "bindMobile", encryptedMobile) | ||
|  | 		cacheCode, err := l.svcCtx.Redis.Get(redisKey) | ||
|  | 		if err != nil { | ||
|  | 			if errors.Is(err, redis.Nil) { | ||
|  | 				return nil, errors.Wrapf(xerr.NewErrMsg("验证码已过期"), "手机登录, 验证码过期: %s", encryptedMobile) | ||
|  | 			} | ||
|  | 			return nil, errors.Wrapf(xerr.NewErrCode(xerr.DB_ERROR), "手机登录, 读取验证码redis缓存失败, mobile: %s, err: %+v", encryptedMobile, err) | ||
|  | 		} | ||
|  | 		if cacheCode != req.Code { | ||
|  | 			return nil, errors.Wrapf(xerr.NewErrMsg("验证码不正确"), "手机登录, 验证码不正确: %s", encryptedMobile) | ||
|  | 		} | ||
|  | 	} | ||
|  | 	var userID int64 | ||
|  | 	user, err := l.svcCtx.UserModel.FindOneByMobile(l.ctx, sql.NullString{String: encryptedMobile, Valid: true}) | ||
|  | 	if err != nil && !errors.Is(err, model.ErrNotFound) { | ||
|  | 		return nil, errors.Wrapf(xerr.NewErrCode(xerr.DB_ERROR), "绑定手机号, %v", err) | ||
|  | 	} | ||
|  | 	if user != nil { | ||
|  | 		// 进行平台绑定 | ||
|  | 		if claims != nil { | ||
|  | 			if req.Mobile != "18889793585" { | ||
|  | 				if claims.UserType == model.UserTypeTemp { | ||
|  | 					userTemp, err := l.svcCtx.UserTempModel.FindOne(l.ctx, claims.UserId) | ||
|  | 					if err != nil { | ||
|  | 						return nil, errors.Wrapf(xerr.NewErrCode(xerr.DB_ERROR), "绑定手机号, 读取临时用户失败: %v", err) | ||
|  | 					} | ||
|  | 					userAuth, err := l.svcCtx.UserAuthModel.FindOneByUserIdAuthType(l.ctx, user.Id, userTemp.AuthType) | ||
|  | 					if err != nil && !errors.Is(err, model.ErrNotFound) { | ||
|  | 						return nil, errors.Wrapf(xerr.NewErrCode(xerr.DB_ERROR), "绑定手机号, 读取用户认证失败: %v", err) | ||
|  | 					} | ||
|  | 					if userAuth != nil && userAuth.AuthKey != userTemp.AuthKey { | ||
|  | 						return nil, errors.Wrapf(xerr.NewErrMsg("该手机号已绑定其他微信号"), "绑定手机号, 临时用户已注册: %s", encryptedMobile) | ||
|  | 					} | ||
|  | 					err = l.svcCtx.UserService.TempUserBindUser(l.ctx, nil, user.Id) | ||
|  | 					if err != nil { | ||
|  | 						return nil, errors.Wrapf(xerr.NewErrCode(xerr.SERVER_COMMON_ERROR), "绑定手机号, 临时用户绑定用户失败: %+v", err) | ||
|  | 					} | ||
|  | 				} | ||
|  | 			} | ||
|  | 		} | ||
|  | 		userID = user.Id | ||
|  | 	} else { | ||
|  | 		// 创建账号,并绑定手机号 | ||
|  | 		userID, err = l.svcCtx.UserService.RegisterUser(l.ctx, encryptedMobile) | ||
|  | 		if err != nil { | ||
|  | 			return nil, errors.Wrapf(xerr.NewErrCode(xerr.SERVER_COMMON_ERROR), "绑定手机号, 注册用户失败: %+v", err) | ||
|  | 		} | ||
|  | 	} | ||
|  | 
 | ||
|  | 	token, err := l.svcCtx.UserService.GeneralUserToken(l.ctx, userID, model.UserTypeNormal) | ||
|  | 	if err != nil { | ||
|  | 		return nil, errors.Wrapf(xerr.NewErrCode(xerr.SERVER_COMMON_ERROR), "绑定手机号, 生成token失败: %+v", err) | ||
|  | 	} | ||
|  | 	now := time.Now().Unix() | ||
|  | 	return &types.BindMobileResp{ | ||
|  | 		AccessToken:  token, | ||
|  | 		AccessExpire: now + l.svcCtx.Config.JwtAuth.AccessExpire, | ||
|  | 		RefreshAfter: now + l.svcCtx.Config.JwtAuth.RefreshAfter, | ||
|  | 	}, nil | ||
|  | } |