fix version 1

This commit is contained in:
2026-09-22 21:15:34 +08:00
parent 9f86366638
commit d63d7e8b3a
277 changed files with 9959 additions and 1514 deletions

View File

@@ -2,6 +2,7 @@ package sms
import (
"context"
"time"
"bsm/full/module/base/sender/internal/excode"
"bsm/full/module/base/sender/internal/impl"
@@ -26,13 +27,30 @@ func Verify(ctx context.Context, in *pb.SmsVerifyRequest) (reply *pb.SmsReply, e
}
//check code
if code == in.Code {
// 校验成功:删除验证码与失败计数,验证码一次性使用,避免重放
failKey := VerifyFailCacheKey + in.GetPhone()
impl.RedisService.Client.Del(impl.RedisService.Ctx, key)
impl.RedisService.Client.Del(impl.RedisService.Ctx, failKey)
return &pb.SmsReply{
Reply: "true",
}, nil
}
//verify pass ; delete the requestId
impl.RedisService.Client.Del(impl.RedisService.Ctx, key)
// 校验失败:累计连续失败次数,达到上限后验证码作废,避免暴力枚举
failKey := VerifyFailCacheKey + in.GetPhone()
count := impl.RedisService.Client.Incr(impl.RedisService.Ctx, failKey).Val()
if count == 1 {
ttl := impl.RedisService.Client.TTL(impl.RedisService.Ctx, key).Val()
if ttl <= 0 {
ttl = 300 * time.Second
}
impl.RedisService.Client.Expire(impl.RedisService.Ctx, failKey, ttl)
}
if count >= MaxVerifyFail {
impl.RedisService.Client.Del(impl.RedisService.Ctx, key)
impl.RedisService.Client.Del(impl.RedisService.Ctx, failKey)
return nil, excode.ErrCodeVerifyTooMany
}
return &pb.SmsReply{
Reply: "false",