zrok/controller/limits/shareWarningAction.go

43 lines
1.1 KiB
Go
Raw Normal View History

2023-03-27 17:34:29 +02:00
package limits
import (
"github.com/jmoiron/sqlx"
2023-03-27 17:34:29 +02:00
"github.com/openziti/edge/rest_management_api_client"
"github.com/openziti/zrok/controller/emailUi"
2023-03-27 17:34:29 +02:00
"github.com/openziti/zrok/controller/store"
"github.com/pkg/errors"
2023-03-27 17:34:29 +02:00
"github.com/sirupsen/logrus"
)
type shareWarningAction struct {
str *store.Store
edge *rest_management_api_client.ZitiEdgeManagement
cfg *emailUi.Config
2023-03-27 17:34:29 +02:00
}
func newShareWarningAction(cfg *emailUi.Config, str *store.Store, edge *rest_management_api_client.ZitiEdgeManagement) *shareWarningAction {
return &shareWarningAction{str, edge, cfg}
2023-03-27 17:34:29 +02:00
}
func (a *shareWarningAction) HandleShare(shr *store.Share, rxBytes, txBytes int64, limit *BandwidthPerPeriod, trx *sqlx.Tx) error {
logrus.Infof("warning '%v'", shr.Token)
env, err := a.str.GetEnvironment(shr.EnvironmentId, trx)
if err != nil {
return err
}
if env.AccountId != nil {
acct, err := a.str.GetAccount(*env.AccountId, trx)
if err != nil {
return err
}
if err := sendLimitWarningEmail(a.cfg, acct.Email, limit, rxBytes, txBytes); err != nil {
return errors.Wrapf(err, "error sending limit warning email to '%v'", acct.Email)
}
}
2023-03-27 17:34:29 +02:00
return nil
}