mirror of
https://github.com/openziti/zrok.git
synced 2024-11-07 16:54:23 +01:00
84 lines
2.7 KiB
Go
84 lines
2.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 shareRelaxAction struct {
|
|
str *store.Store
|
|
edge *rest_management_api_client.ZitiEdgeManagement
|
|
}
|
|
|
|
func newShareRelaxAction(str *store.Store, edge *rest_management_api_client.ZitiEdgeManagement) *shareRelaxAction {
|
|
return &shareRelaxAction{str, edge}
|
|
}
|
|
|
|
func (a *shareRelaxAction) HandleShare(shr *store.Share, _, _ int64, _ *BandwidthPerPeriod, trx *sqlx.Tx) error {
|
|
logrus.Infof("relaxing '%v'", shr.Token)
|
|
|
|
if !shr.Deleted {
|
|
switch shr.ShareMode {
|
|
case "public":
|
|
if err := relaxPublicShare(a.str, a.edge, shr, trx); err != nil {
|
|
return err
|
|
}
|
|
case "private":
|
|
if err := relaxPrivateShare(a.str, a.edge, shr, trx); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func relaxPublicShare(str *store.Store, edge *rest_management_api_client.ZitiEdgeManagement, shr *store.Share, trx *sqlx.Tx) error {
|
|
env, err := str.GetEnvironment(shr.EnvironmentId, trx)
|
|
if err != nil {
|
|
return errors.Wrap(err, "error finding environment")
|
|
}
|
|
|
|
fe, err := 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, 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)
|
|
return nil
|
|
}
|
|
|
|
func relaxPrivateShare(str *store.Store, edge *rest_management_api_client.ZitiEdgeManagement, shr *store.Share, trx *sqlx.Tx) error {
|
|
fes, err := str.FindFrontendsForPrivateShare(shr.Id, trx)
|
|
if err != nil {
|
|
return errors.Wrapf(err, "error finding frontends for share '%v'", shr.Token)
|
|
}
|
|
for _, fe := range fes {
|
|
if fe.EnvironmentId != nil {
|
|
env, err := str.GetEnvironment(*fe.EnvironmentId, trx)
|
|
if err != nil {
|
|
return errors.Wrapf(err, "error getting environment for frontend '%v'", fe.Token)
|
|
}
|
|
|
|
addlTags := map[string]interface{}{
|
|
"zrokEnvironmentZId": env.ZId,
|
|
"zrokFrontendToken": fe.Token,
|
|
"zrokShareToken": shr.Token,
|
|
}
|
|
if err := zrokEdgeSdk.CreateServicePolicyDial(env.ZId+"-"+shr.ZId+"-dial", shr.ZId, []string{env.ZId}, addlTags, edge); err != nil {
|
|
return errors.Wrapf(err, "unable to create dial policy for frontend '%v'", fe.Token)
|
|
}
|
|
|
|
logrus.Infof("added dial service policy for share '%v' to private frontend '%v'", shr.Token, fe.Token)
|
|
}
|
|
}
|
|
return nil
|
|
}
|