代码拉取完成,页面将自动刷新
/*
Nging is a toolbox for webmasters
Copyright (C) 2018-present Wenhui Shen <swh@admpub.com>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package model
import (
"errors"
"time"
"github.com/admpub/nging/application/dbschema"
"github.com/admpub/nging/application/model/base"
"github.com/webx-top/db"
"github.com/webx-top/echo"
"github.com/webx-top/echo/middleware/tplfunc"
)
var (
// SMSWaitingSeconds 短信发送后等待秒数
SMSWaitingSeconds int64 = 60
// SMSMaxPerDay 短信每人每天发送上限
SMSMaxPerDay int64 = 10
)
func NewCode(ctx echo.Context) *Code {
return &Code{
Verification: &dbschema.CodeVerification{},
Invitation: &dbschema.CodeInvitation{},
Base: base.New(ctx),
}
}
type Code struct {
Verification *dbschema.CodeVerification
Invitation *dbschema.CodeInvitation
*base.Base
}
func (c *Code) AddVerificationCode() (interface{}, error) {
if len(c.Verification.Disabled) == 0 {
c.Verification.Disabled = `N`
}
return c.Verification.Add()
}
func (c *Code) UseVerificationCode(m *dbschema.CodeVerification) (err error) {
m.Used = uint(time.Now().Unix())
err = m.SetField(nil, `used`, m.Used, `id`, m.Id)
return
}
func (c *Code) LastVerificationCode(ownerID uint64, ownerType string, sendMethod string) (err error) {
err = c.Verification.Get(func(r db.Result) db.Result {
return r.OrderBy(`-id`)
}, db.And(
db.Cond{`disabled`: `N`},
db.Cond{`owner_id`: ownerID},
db.Cond{`owner_type`: ownerType},
db.Cond{`send_method`: sendMethod},
))
return
}
func (c *Code) CountTodayVerificationCode(ownerID uint64, ownerType string, sendMethod string) (int64, error) {
now := time.Now().Local()
start := time.Date(now.Year(), now.Month(), now.Day(), 0, 0, 0, 0, time.Local)
end := start.AddDate(0, 0, 1)
return c.Verification.Count(nil, db.And(
db.Cond{`disabled`: `N`},
db.Cond{`owner_id`: ownerID},
db.Cond{`owner_type`: ownerType},
db.Cond{`send_method`: sendMethod},
db.Cond{`created`: db.Between(start.Unix(), end.Unix())},
))
}
func (c *Code) CheckFrequency(ownerID uint64, ownerType string, sendMethod string, frequencyCfg echo.H) error {
if err := c.LastVerificationCode(ownerID, ownerType, sendMethod); err != nil {
if err != db.ErrNoMoreRows {
return err
}
} else {
interval := frequencyCfg.Int64(`interval`, SMSWaitingSeconds)
waitingSeconds := time.Now().Local().Unix() - int64(c.Verification.Created)
if waitingSeconds < interval {
return c.Base.SetErrT(`请等待%d秒之后再发送`, interval-waitingSeconds)
}
maxPerDay := frequencyCfg.Int64(`maxPerDay`, SMSMaxPerDay)
if count, err := c.CountTodayVerificationCode(ownerID, ownerType, sendMethod); err != nil {
return err
} else if count >= maxPerDay {
return c.Base.SetErrT(`您今天的发送次数已达上限: %d`, maxPerDay)
}
}
return nil
}
func (c *Code) CheckVerificationCode(code string, purpose string, ownerID uint64, ownerType string, sendMethod string, sendTo string) (err error) {
err = c.Verification.Get(nil, db.And(
db.Cond{`disabled`: `N`},
db.Cond{`code`: code},
db.Cond{`purpose`: purpose},
db.Cond{`owner_id`: ownerID},
db.Cond{`owner_type`: ownerType},
db.Cond{`send_method`: sendMethod},
db.Cond{`send_to`: sendTo},
))
var objectName string
switch sendMethod {
case `email`:
objectName = c.Base.T(`邮件`)
case `mobile`:
objectName = c.Base.T(`短信`)
}
if err != nil {
if err == db.ErrNoMoreRows {
return c.SetErrT(`%s验证码无效`, objectName)
}
return err
}
now := uint(time.Now().Unix())
if !(c.Verification.Start <= now && c.Verification.End >= now) {
return c.SetErrT(`%s验证码已经过期`, objectName)
}
if c.Verification.Used > 0 {
return c.SetErrT(`%s验证码已经使用过了`, objectName)
}
return
}
func (c *Code) VerfyInvitationCode(code string) (err error) {
err = c.Invitation.Get(nil, `code`, code)
if err != nil {
if err == db.ErrNoMoreRows {
err = c.E(`邀请码无效`)
}
return
}
if c.Invitation.Used > 0 {
err = c.E(`该邀请码已被使用过了`)
return
}
if c.Invitation.Disabled == `Y` {
err = c.E(`该邀请码已被禁用`)
return
}
now := uint(time.Now().Unix())
if c.Invitation.Start > now {
if c.Invitation.End > 0 {
err = errors.New(c.T(`该邀请码只能在“%s - %s”这段时间内使用`,
tplfunc.TsToDate(`2006/01/02 15:04:05`, c.Invitation.Start),
tplfunc.TsToDate(`2006/01/02 15:04:05`, c.Invitation.End),
))
} else {
err = errors.New(c.T(`该邀请码只能在“%s”之后使用`,
tplfunc.TsToDate(`2006/01/02 15:04:05`, c.Invitation.Start),
))
}
return
}
if c.Invitation.End > 0 && c.Invitation.End < now {
err = c.E(`该邀请码已过期`)
return
}
return
}
func (c *Code) UseInvitationCode(m *dbschema.CodeInvitation, usedUid uint) (err error) {
m.Used = uint(time.Now().Unix())
m.RecvUid = usedUid
err = m.Edit(nil, `id`, m.Id)
return
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。