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.
53 lines
1.3 KiB
53 lines
1.3 KiB
// Copyright 2023 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 sakila
|
|
|
|
import (
|
|
"github.com/jmoiron/sqlx"
|
|
"github.com/rocboss/paopao-ce/internal/core"
|
|
"github.com/rocboss/paopao-ce/pkg/debug"
|
|
)
|
|
|
|
var (
|
|
_ core.SecurityService = (*securityServant)(nil)
|
|
)
|
|
|
|
type securityServant struct {
|
|
*sqlxServant
|
|
phoneVerify core.PhoneVerifyService
|
|
stmtAddCaptcha *sqlx.Stmt
|
|
stmtGetCaptcha *sqlx.Stmt
|
|
}
|
|
|
|
// GetLatestPhoneCaptcha 获取最新短信验证码
|
|
func (s *securityServant) GetLatestPhoneCaptcha(phone string) (*core.Captcha, error) {
|
|
// TODO
|
|
debug.NotImplemented()
|
|
return nil, nil
|
|
}
|
|
|
|
// UsePhoneCaptcha 更新短信验证码
|
|
func (s *securityServant) UsePhoneCaptcha(captcha *core.Captcha) error {
|
|
// TODO
|
|
debug.NotImplemented()
|
|
return nil
|
|
}
|
|
|
|
// SendPhoneCaptcha 发送短信验证码
|
|
func (s *securityServant) SendPhoneCaptcha(phone string) error {
|
|
// TODO
|
|
debug.NotImplemented()
|
|
return nil
|
|
}
|
|
|
|
func newSecurityService(db *sqlx.DB, phoneVerify core.PhoneVerifyService) core.SecurityService {
|
|
return &securityServant{
|
|
sqlxServant: newSqlxServant(db),
|
|
phoneVerify: phoneVerify,
|
|
stmtAddCaptcha: c(`SELECT * FROM @person WHERE first_name=?`),
|
|
stmtGetCaptcha: c(`SELECT * FROM @person WHERE first_name=?`),
|
|
}
|
|
}
|