Merge pull request 'by Robin at 20241011' (#747) from feat-IRONFANS-228-Robin into main
Reviewed-on: http://121.41.31.146:3000/wishpal_ironfan/service/pulls/747
This commit is contained in:
commit
05d1da9b1b
|
@ -3,41 +3,32 @@ package logic
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"math/rand"
|
"math/rand"
|
||||||
"service/api/consts"
|
|
||||||
vericodeproto "service/api/proto/vericode/proto"
|
vericodeproto "service/api/proto/vericode/proto"
|
||||||
"service/app/mix/dao"
|
"service/app/mix/dao"
|
||||||
"service/dbstruct"
|
"service/dbstruct"
|
||||||
"service/library/apollo"
|
|
||||||
"service/library/configcenter"
|
|
||||||
"service/library/idgenerator"
|
"service/library/idgenerator"
|
||||||
"service/library/logger"
|
"service/library/logger"
|
||||||
"service/library/mycrypto"
|
"service/library/mycrypto"
|
||||||
"service/library/redis"
|
|
||||||
"service/library/sms"
|
|
||||||
interceptor "service/library/taginterceptor"
|
interceptor "service/library/taginterceptor"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
dysmsapi "github.com/alibabacloud-go/dysmsapi-20170525/v3/client"
|
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
goproto "google.golang.org/protobuf/proto"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type SendSmsFunction func(mobilephone string, vericode string) error
|
type SendSmsFunction func(mobilephone string, vericode string) error
|
||||||
|
|
||||||
type VeriCode struct {
|
type VeriCode struct {
|
||||||
store *dao.Store
|
store *dao.Store
|
||||||
cfg *configcenter.DysmsapiConfig
|
//cfg *configcenter.DysmsapiConfig
|
||||||
zthySendSmsFunc SendSmsFunction
|
zthySendSmsFunc SendSmsFunction
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewVeriCode(store *dao.Store, cfg *configcenter.DysmsapiConfig, zthySendSmsFunc SendSmsFunction) (a *VeriCode) {
|
func NewVeriCode(store *dao.Store, zthySendSmsFunc SendSmsFunction) (a *VeriCode) {
|
||||||
a = &VeriCode{
|
a = &VeriCode{
|
||||||
store: store,
|
store: store,
|
||||||
cfg: cfg,
|
//cfg: cfg,
|
||||||
zthySendSmsFunc: zthySendSmsFunc,
|
zthySendSmsFunc: zthySendSmsFunc,
|
||||||
}
|
}
|
||||||
// 临时增加流控标志
|
|
||||||
redis.GetRedisClient().Set("sms_index", int64(0), 0)
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -97,45 +88,12 @@ func (p *VeriCode) OpSendVeriCode(ctx *gin.Context, req *vericodeproto.OpSendReq
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
// 分流比率
|
//3.zthy发送短信
|
||||||
smsSplitRatio, err := apollo.GetIntValue(consts.SmsSplitRatioKey, apollo.ApolloOpts().SetNamespace("application"))
|
err := p.zthySendSmsFunc(req.MobilePhone, vericode)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logger.Error("Apollo read failed : %v", err)
|
logger.Error("SendSms failed : %v", err)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
smsIndex, err := redis.GetRedisClient().GetInt64("sms_index")
|
|
||||||
if err != nil {
|
|
||||||
logger.Error("GetInt64 failed : %v", err)
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
err = redis.GetRedisClient().Set("sms_index", (smsIndex+1)%10, 0)
|
|
||||||
if err != nil {
|
|
||||||
logger.Error("SetInt64 failed : %v", err)
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
if smsIndex < int64(smsSplitRatio) {
|
|
||||||
//3.zthy发送短信
|
|
||||||
err = p.zthySendSmsFunc(req.MobilePhone, vericode)
|
|
||||||
if err != nil {
|
|
||||||
logger.Error("SendSms failed : %v", err)
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
//3.阿里云发送短信
|
|
||||||
templateParam := "{\"code\": \"" + vericode + "\"}"
|
|
||||||
request := &dysmsapi.SendSmsRequest{
|
|
||||||
PhoneNumbers: goproto.String(req.MobilePhone),
|
|
||||||
SignName: goproto.String(p.cfg.SignName),
|
|
||||||
TemplateCode: goproto.String(p.cfg.TemplateCode),
|
|
||||||
TemplateParam: goproto.String(templateParam),
|
|
||||||
}
|
|
||||||
err = sms.SendSms(request)
|
|
||||||
if err != nil {
|
|
||||||
logger.Error("SendSms failed : %v", err)
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -199,7 +199,7 @@ func (s *Service) Init(c any) (err error) {
|
||||||
yeepaycli.Init(cfg.Yeepay)
|
yeepaycli.Init(cfg.Yeepay)
|
||||||
|
|
||||||
_DefaultToken = logic.NewToken(store, cfg.Crypto)
|
_DefaultToken = logic.NewToken(store, cfg.Crypto)
|
||||||
_DefaultVeriCode = logic.NewVeriCode(store, cfg.Dysmsapi, DefaultZthyService.SendSms)
|
_DefaultVeriCode = logic.NewVeriCode(store, DefaultZthyService.SendSms)
|
||||||
_DefaultVeriCodeSendTimes = logic.NewVeriCodeSendTimes(store)
|
_DefaultVeriCodeSendTimes = logic.NewVeriCodeSendTimes(store)
|
||||||
_DefaultAccount = logic.NewAccount(store)
|
_DefaultAccount = logic.NewAccount(store)
|
||||||
_DefaultProduct = logic.NewProduct(store)
|
_DefaultProduct = logic.NewProduct(store)
|
||||||
|
|
Loading…
Reference in New Issue