mirror of
https://github.com/openziti/zrok.git
synced 2024-11-22 16:13:47 +01:00
61 lines
2.2 KiB
Go
61 lines
2.2 KiB
Go
package limits
|
|
|
|
import (
|
|
"github.com/jmoiron/sqlx"
|
|
"github.com/openziti/edge/rest_management_api_client"
|
|
"github.com/openziti/zrok/controller/emailUi"
|
|
"github.com/openziti/zrok/controller/store"
|
|
"github.com/openziti/zrok/util"
|
|
"github.com/pkg/errors"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
type environmentWarningAction struct {
|
|
str *store.Store
|
|
edge *rest_management_api_client.ZitiEdgeManagement
|
|
cfg *emailUi.Config
|
|
}
|
|
|
|
func newEnvironmentWarningAction(cfg *emailUi.Config, str *store.Store, edge *rest_management_api_client.ZitiEdgeManagement) *environmentWarningAction {
|
|
return &environmentWarningAction{str, edge, cfg}
|
|
}
|
|
|
|
func (a *environmentWarningAction) HandleEnvironment(env *store.Environment, rxBytes, txBytes int64, limit *BandwidthPerPeriod, trx *sqlx.Tx) error {
|
|
logrus.Infof("warning '%v'", env.ZId)
|
|
|
|
if a.cfg != nil {
|
|
if env.AccountId != nil {
|
|
acct, err := a.str.GetAccount(*env.AccountId, trx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
rxLimit := "unlimited bytes"
|
|
if limit.Limit.Rx != Unlimited {
|
|
rxLimit = util.BytesToSize(limit.Limit.Rx)
|
|
}
|
|
txLimit := "unlimited bytes"
|
|
if limit.Limit.Tx != Unlimited {
|
|
txLimit = util.BytesToSize(limit.Limit.Tx)
|
|
}
|
|
totalLimit := "unlimited bytes"
|
|
if limit.Limit.Total != Unlimited {
|
|
totalLimit = util.BytesToSize(limit.Limit.Total)
|
|
}
|
|
|
|
detail := newDetailMessage()
|
|
detail = detail.append("Your environment '%v' has received %v and sent %v (for a total of %v), which has triggered a transfer limit warning.", env.Description, util.BytesToSize(rxBytes), util.BytesToSize(txBytes), util.BytesToSize(rxBytes+txBytes))
|
|
detail = detail.append("This zrok instance only allows a share to receive %v, send %v, totalling not more than %v for each %v.", rxLimit, txLimit, totalLimit, limit.Period)
|
|
detail = detail.append("If you exceed the transfer limit, access to your shares will be temporarily disabled (until the last %v falls below the transfer limit).", limit.Period)
|
|
|
|
if err := sendLimitWarningEmail(a.cfg, acct.Email, detail); err != nil {
|
|
return errors.Wrapf(err, "error sending limit warning email to '%v'", acct.Email)
|
|
}
|
|
}
|
|
} else {
|
|
logrus.Warnf("skipping warning email for environment limit; no email configuration specified")
|
|
}
|
|
|
|
return nil
|
|
}
|