Initial commit (code only without large binaries)
This commit is contained in:
36
EdgeCommon/pkg/serverconfigs/user_plan_config.go
Normal file
36
EdgeCommon/pkg/serverconfigs/user_plan_config.go
Normal file
@@ -0,0 +1,36 @@
|
||||
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
||||
|
||||
package serverconfigs
|
||||
|
||||
import timeutil "github.com/iwind/TeaGo/utils/time"
|
||||
|
||||
// DefaultPlanExpireNoticePageBody 套餐过期时提示
|
||||
const DefaultPlanExpireNoticePageBody = `<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>套餐已过期</title>
|
||||
<body>
|
||||
|
||||
<h1>套餐已过期,请及时续费。</h1>
|
||||
<p>Your server plan has been expired, please renew the plan.</p>
|
||||
<address>Request ID: ${requestId}.</address>
|
||||
|
||||
</body>
|
||||
</html>`
|
||||
|
||||
// UserPlanConfig 用户套餐配置
|
||||
type UserPlanConfig struct {
|
||||
Id int64 `yaml:"id" json:"id"` // 用户套餐ID
|
||||
DayTo string `yaml:"dayTo" json:"dayTo"` // 有效期
|
||||
PlanId int64 `yaml:"planId" json:"planId"` // 套餐定义ID
|
||||
}
|
||||
|
||||
// Init 初始化
|
||||
func (this *UserPlanConfig) Init() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
// IsAvailable 是否有效
|
||||
func (this *UserPlanConfig) IsAvailable() bool {
|
||||
return this.DayTo >= timeutil.Format("Y-m-d")
|
||||
}
|
||||
Reference in New Issue
Block a user