支持套餐日期设置

This commit is contained in:
GoEdgeLab
2021-11-09 15:36:05 +08:00
parent 50bf007643
commit 4da9e90a79
2 changed files with 26 additions and 0 deletions

View File

@@ -137,6 +137,13 @@ func (this *HTTPRequest) Do() {
}
}
// 套餐
if this.Server.UserPlan != nil && !this.Server.UserPlan.IsAvailable() {
this.doPlanExpires()
this.doEnd()
return
}
// 带宽限制
if this.Server.BandwidthLimit != nil && this.Server.BandwidthLimit.IsOn && !this.Server.BandwidthLimit.IsEmpty() && this.Server.BandwidthLimitStatus != nil && this.Server.BandwidthLimitStatus.IsValid() {
this.doBandwidthLimit()