2 Star 0 Fork 0

BOBO/创想视频核心服务

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pgcoin.go 1.51 KB
一键复制 编辑 原始数据 按行查看 历史
package validate
import (
"context"
"gitee.com/bobo-rs/innovideo-services/enums"
"gitee.com/bobo-rs/innovideo-services/framework/service"
"gitee.com/bobo-rs/innovideo-services/library/exception"
"github.com/gogf/gf/v2/util/gvalid"
)
// RuleRegisterPGCoin 注册盘古币规则
func RuleRegisterPGCoin() {
gvalid.RegisterRuleByMap(map[string]gvalid.RuleFunc{
`pgc-bill-exists-id`: RulePGCoinBillExistsById,
`pgc-bill-valid-id`: RulePGCoinBillValidById,
`pgc-order-exists-id`: RulePGCoinOrderExistsById,
`pgc-order-user-valid`: RulePGCoinUserValid,
`pgc-user-order-exists-id`: RulePGCoinUserOrderExistsById,
})
}
// RulePGCoinBillExistsById 检测盘古币账单是否存在
func RulePGCoinBillExistsById(ctx context.Context, in gvalid.RuleFuncInput) error {
if in.Value.Uint() == 0 {
return nil
}
// 检查盘古币账单是否存在
if b, _ := service.PgCoin().BillModel().ExistsPri(ctx, in.Value.Uint()); !b {
return exception.New(`盘古币账单不存在`)
}
return nil
}
// RulePGCoinBillValidById 校验盘古币是否有效适用于(设置效期、交易盘古币)
func RulePGCoinBillValidById(ctx context.Context, in gvalid.RuleFuncInput) error {
if in.Value.Uint() == 0 {
return nil
}
// 是否有效的账单
detail, err := service.PgCoin().QueryBillDetail(ctx, in.Value.Uint())
if err != nil {
return err
}
// 是否正常使用
if detail.Status != enums.PGCoinBillStatusNormal {
return exception.Newf(`盘古币账单已%s`, detail.Status.Fmt())
}
return nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/bobo-rs/innovideo-services.git
git@gitee.com:bobo-rs/innovideo-services.git
bobo-rs
innovideo-services
创想视频核心服务
v1.0.11

搜索帮助