mirror of
https://github.com/openziti/zrok.git
synced 2024-11-07 08:44:14 +01:00
more user limits selection refinements (#606)
This commit is contained in:
parent
a9dff531fc
commit
56252b6e0a
@ -4,16 +4,90 @@ import (
|
||||
"github.com/jmoiron/sqlx"
|
||||
"github.com/openziti/zrok/controller/store"
|
||||
"github.com/openziti/zrok/sdk/golang/sdk"
|
||||
"github.com/pkg/errors"
|
||||
"github.com/sirupsen/logrus"
|
||||
)
|
||||
|
||||
type userLimits struct {
|
||||
resource store.ResourceCountClass
|
||||
bandwidth store.BandwidthClass
|
||||
bandwidth []store.BandwidthClass
|
||||
scopes map[sdk.BackendMode]store.BandwidthClass
|
||||
}
|
||||
|
||||
func (a *Agent) getUserLimits(acctId int, trx *sqlx.Tx) (*userLimits, error) {
|
||||
_ = newConfigBandwidthClasses(a.cfg.Bandwidth)
|
||||
userLimits := &userLimits{}
|
||||
resource := newConfigResourceCountClass(a.cfg)
|
||||
cfgBwcs := newConfigBandwidthClasses(a.cfg.Bandwidth)
|
||||
bwWarning := cfgBwcs[0]
|
||||
bwLimit := cfgBwcs[1]
|
||||
scopes := map[sdk.BackendMode]store.BandwidthClass{}
|
||||
|
||||
alcs, err := a.str.FindAppliedLimitClassesForAccount(acctId, trx)
|
||||
if err != nil {
|
||||
return nil, errors.Wrapf(err, "error finding applied limit classes for account '%d'", acctId)
|
||||
}
|
||||
for _, alc := range alcs {
|
||||
if a.isResourceCountClass(alc) {
|
||||
resource = alc
|
||||
} else if a.isUnscopedBandwidthClass(alc) {
|
||||
if alc.LimitAction == store.WarningLimitAction {
|
||||
bwWarning = alc
|
||||
} else {
|
||||
bwLimit = alc
|
||||
}
|
||||
} else if a.isScopedBandwidthClass(alc) {
|
||||
scopes[*alc.BackendMode] = alc
|
||||
} else {
|
||||
logrus.Warnf("unknown type of limit class '%v'", alc)
|
||||
}
|
||||
}
|
||||
|
||||
userLimits := &userLimits{
|
||||
resource: resource,
|
||||
bandwidth: []store.BandwidthClass{bwWarning, bwLimit},
|
||||
scopes: scopes,
|
||||
}
|
||||
|
||||
return userLimits, nil
|
||||
}
|
||||
|
||||
func (a *Agent) isResourceCountClass(alc *store.LimitClass) bool {
|
||||
if alc.BackendMode != nil {
|
||||
return false
|
||||
}
|
||||
if alc.Environments == store.Unlimited && alc.Shares == store.Unlimited && alc.ReservedShares == store.Unlimited && alc.UniqueNames == store.Unlimited {
|
||||
return false
|
||||
}
|
||||
return true
|
||||
}
|
||||
|
||||
func (a *Agent) isUnscopedBandwidthClass(alc *store.LimitClass) bool {
|
||||
if alc.BackendMode != nil {
|
||||
return false
|
||||
}
|
||||
if alc.Environments > store.Unlimited || alc.Shares > store.Unlimited || alc.ReservedShares > store.Unlimited || alc.UniqueNames > store.Unlimited {
|
||||
return false
|
||||
}
|
||||
if alc.PeriodMinutes < 1 {
|
||||
return false
|
||||
}
|
||||
if alc.RxBytes == store.Unlimited && alc.TxBytes == store.Unlimited && alc.TotalBytes == store.Unlimited {
|
||||
return false
|
||||
}
|
||||
return true
|
||||
}
|
||||
|
||||
func (a *Agent) isScopedBandwidthClass(alc *store.LimitClass) bool {
|
||||
if alc.BackendMode == nil {
|
||||
return false
|
||||
}
|
||||
if alc.Environments > store.Unlimited || alc.Shares > store.Unlimited || alc.ReservedShares > store.Unlimited || alc.UniqueNames > store.Unlimited {
|
||||
return false
|
||||
}
|
||||
if alc.PeriodMinutes < 1 {
|
||||
return false
|
||||
}
|
||||
if alc.RxBytes == store.Unlimited && alc.TxBytes == store.Unlimited && alc.TotalBytes == store.Unlimited {
|
||||
return false
|
||||
}
|
||||
return true
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user