mirror of
https://github.com/openziti/zrok.git
synced 2024-11-23 00:23:48 +01:00
53 lines
1.7 KiB
Go
53 lines
1.7 KiB
Go
package limits
|
|
|
|
import (
|
|
"github.com/jmoiron/sqlx"
|
|
"github.com/openziti/edge/rest_management_api_client"
|
|
"github.com/openziti/zrok/controller/store"
|
|
"github.com/openziti/zrok/controller/zrokEdgeSdk"
|
|
"github.com/pkg/errors"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
type environmentRelaxAction struct {
|
|
str *store.Store
|
|
edge *rest_management_api_client.ZitiEdgeManagement
|
|
}
|
|
|
|
func newEnvironmentRelaxAction(str *store.Store, edge *rest_management_api_client.ZitiEdgeManagement) *environmentRelaxAction {
|
|
return &environmentRelaxAction{str, edge}
|
|
}
|
|
|
|
func (a *environmentRelaxAction) HandleEnvironment(env *store.Environment, rxBytes, txBytes int64, limit *BandwidthPerPeriod, trx *sqlx.Tx) error {
|
|
logrus.Infof("relaxing '%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)
|
|
}
|
|
|
|
for _, shr := range shrs {
|
|
if shr.ShareMode == "public" {
|
|
env, err := a.str.GetEnvironment(shr.EnvironmentId, trx)
|
|
if err != nil {
|
|
return errors.Wrap(err, "error finding environment")
|
|
}
|
|
|
|
fe, err := a.str.FindFrontendPubliclyNamed(*shr.FrontendSelection, trx)
|
|
if err != nil {
|
|
return errors.Wrapf(err, "error finding frontend name '%v' for '%v'", *shr.FrontendSelection, shr.Token)
|
|
}
|
|
|
|
if err := zrokEdgeSdk.CreateServicePolicyDial(env.ZId+"-"+shr.ZId+"-dial", shr.ZId, []string{fe.ZId}, zrokEdgeSdk.ZrokShareTags(shr.Token).SubTags, a.edge); err != nil {
|
|
return errors.Wrapf(err, "error creating dial service policy for '%v'", shr.Token)
|
|
}
|
|
logrus.Infof("added dial service policy for '%v'", shr.Token)
|
|
|
|
} else if shr.ShareMode == "private" {
|
|
return errors.New("share relax for private share not implemented")
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|