mirror of https://github.com/rocboss/paopao-ce
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.6 KiB
68 lines
1.6 KiB
// Copyright 2022 ROC. All rights reserved.
|
|
// Use of this source code is governed by a MIT style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package jinzhu
|
|
|
|
import (
|
|
"math/rand"
|
|
"strconv"
|
|
"time"
|
|
|
|
"github.com/rocboss/paopao-ce/internal/core"
|
|
"github.com/rocboss/paopao-ce/internal/core/ms"
|
|
"github.com/rocboss/paopao-ce/internal/dao/jinzhu/dbr"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
var (
|
|
_ core.SecurityService = (*securitySrv)(nil)
|
|
)
|
|
|
|
type securitySrv struct {
|
|
db *gorm.DB
|
|
rand *rand.Rand
|
|
phoneVerify core.PhoneVerifyService
|
|
}
|
|
|
|
func newSecurityService(db *gorm.DB, phoneVerify core.PhoneVerifyService) core.SecurityService {
|
|
return &securitySrv{
|
|
db: db,
|
|
rand: rand.New(rand.NewSource(time.Now().UnixNano())),
|
|
phoneVerify: phoneVerify,
|
|
}
|
|
}
|
|
|
|
// GetLatestPhoneCaptcha 获取最新短信验证码
|
|
func (s *securitySrv) GetLatestPhoneCaptcha(phone string) (*ms.Captcha, error) {
|
|
return (&dbr.Captcha{
|
|
Phone: phone,
|
|
}).Get(s.db)
|
|
}
|
|
|
|
// UsePhoneCaptcha 更新短信验证码
|
|
func (s *securitySrv) UsePhoneCaptcha(captcha *ms.Captcha) error {
|
|
captcha.UseTimes++
|
|
return captcha.Update(s.db)
|
|
}
|
|
|
|
// SendPhoneCaptcha 发送短信验证码
|
|
func (s *securitySrv) SendPhoneCaptcha(phone string) error {
|
|
expire := time.Duration(5)
|
|
|
|
// 发送验证码
|
|
captcha := strconv.Itoa(s.rand.Intn(900000) + 100000)
|
|
if err := s.phoneVerify.SendPhoneCaptcha(phone, captcha, expire); err != nil {
|
|
return err
|
|
}
|
|
|
|
// 写入表
|
|
captchaModel := &dbr.Captcha{
|
|
Phone: phone,
|
|
Captcha: captcha,
|
|
ExpiredOn: time.Now().Add(expire * time.Minute).Unix(),
|
|
}
|
|
captchaModel.Create(s.db)
|
|
return nil
|
|
}
|