2023-03-27 17:43:58 +02:00
|
|
|
package limits
|
|
|
|
|
|
|
|
import (
|
2023-03-27 19:51:48 +02:00
|
|
|
"github.com/jmoiron/sqlx"
|
2023-03-27 17:43:58 +02:00
|
|
|
"github.com/openziti/zrok/controller/store"
|
2023-03-27 20:01:31 +02:00
|
|
|
"github.com/openziti/zrok/controller/zrokEdgeSdk"
|
|
|
|
"github.com/pkg/errors"
|
2023-03-27 17:43:58 +02:00
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
|
|
|
type environmentLimitAction struct {
|
|
|
|
str *store.Store
|
2023-06-05 22:01:04 +02:00
|
|
|
zCfg *zrokEdgeSdk.Config
|
2023-03-27 17:43:58 +02:00
|
|
|
}
|
|
|
|
|
2023-06-05 22:01:04 +02:00
|
|
|
func newEnvironmentLimitAction(str *store.Store, zCfg *zrokEdgeSdk.Config) *environmentLimitAction {
|
|
|
|
return &environmentLimitAction{str, zCfg}
|
2023-03-27 17:43:58 +02:00
|
|
|
}
|
|
|
|
|
2023-03-27 20:01:31 +02:00
|
|
|
func (a *environmentLimitAction) HandleEnvironment(env *store.Environment, _, _ int64, _ *BandwidthPerPeriod, trx *sqlx.Tx) error {
|
|
|
|
logrus.Infof("limiting '%v'", env.ZId)
|
|
|
|
|
|
|
|
shrs, err := a.str.FindSharesForEnvironment(env.Id, trx)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrapf(err, "error finding shares for environment '%v'", env.ZId)
|
|
|
|
}
|
|
|
|
|
2023-06-05 22:01:04 +02:00
|
|
|
edge, err := zrokEdgeSdk.Client(a.zCfg)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-03-27 20:01:31 +02:00
|
|
|
for _, shr := range shrs {
|
2023-06-05 22:01:04 +02:00
|
|
|
if err := zrokEdgeSdk.DeleteServicePoliciesDial(env.ZId, shr.Token, edge); err != nil {
|
2023-03-27 20:01:31 +02:00
|
|
|
return errors.Wrapf(err, "error deleting dial service policy for '%v'", shr.Token)
|
|
|
|
}
|
|
|
|
logrus.Infof("removed dial service policy for share '%v' of environment '%v'", shr.Token, env.ZId)
|
|
|
|
}
|
|
|
|
|
2023-03-27 17:43:58 +02:00
|
|
|
return nil
|
|
|
|
}
|