mirror of
https://github.com/openziti/ziti.git
synced 2026-09-10 08:45:41 +00:00
ae806045b5
- channel.TypedReceiveHandler -> channel.ContentTypeReceiver - binding.AddTypedReceiveHandler(h) -> channel.AddReceiveHandlers(binding, h) channel/v5 repurposes TypedReceiveHandler for the senders-typed handler and replaces the self-describing pattern with ContentTypeReceiver plus the AddReceiveHandlers free function (openziti/channel#262). Mechanical conversion; does not build on its own.
91 lines
2.6 KiB
Go
91 lines
2.6 KiB
Go
/*
|
|
Copyright NetFoundry Inc.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package handler_edge_ctrl
|
|
|
|
import (
|
|
"github.com/openziti/channel/v5"
|
|
"github.com/openziti/ziti/v2/common"
|
|
"github.com/openziti/ziti/v2/common/pb/edge_ctrl_pb"
|
|
"github.com/openziti/ziti/v2/controller/env"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
type removeTunnelTerminatorHandler struct {
|
|
baseRequestHandler
|
|
}
|
|
|
|
func NewRemoveTunnelTerminatorHandler(appEnv *env.AppEnv, ch channel.Channel) channel.ContentTypeReceiver {
|
|
return &removeTunnelTerminatorHandler{
|
|
baseRequestHandler{
|
|
ch: ch,
|
|
appEnv: appEnv,
|
|
},
|
|
}
|
|
}
|
|
|
|
func (self *removeTunnelTerminatorHandler) ContentType() int32 {
|
|
return int32(edge_ctrl_pb.ContentType_RemoveTunnelTerminatorRequestType)
|
|
}
|
|
|
|
func (self *removeTunnelTerminatorHandler) Label() string {
|
|
return "tunnel.remove.terminator"
|
|
}
|
|
|
|
func (self *removeTunnelTerminatorHandler) HandleReceive(msg *channel.Message, _ channel.Channel) {
|
|
ctx := &RemoveTunnelTerminatorRequestContext{
|
|
baseSessionRequestContext: baseSessionRequestContext{handler: self, msg: msg, env: self.appEnv},
|
|
terminatorId: string(msg.Body),
|
|
}
|
|
|
|
go self.RemoveTerminator(ctx)
|
|
}
|
|
|
|
func (self *removeTunnelTerminatorHandler) RemoveTerminator(ctx *RemoveTunnelTerminatorRequestContext) {
|
|
logger := logrus.WithField("routerId", self.ch.Id()).WithField("terminatorId", ctx.terminatorId)
|
|
|
|
if !ctx.loadRouter() {
|
|
return
|
|
}
|
|
|
|
t := ctx.verifyTerminator(ctx.terminatorId, common.TunnelBinding)
|
|
if ctx.err != nil {
|
|
self.returnError(ctx, ctx.err)
|
|
return
|
|
}
|
|
|
|
logger = logger.WithField("serviceId", t.Service)
|
|
|
|
err := self.getNetwork().Terminator.Delete(ctx.terminatorId, ctx.newTunnelChangeContext())
|
|
if err != nil {
|
|
self.returnError(ctx, internalError(err))
|
|
return
|
|
}
|
|
|
|
logger.Info("removed terminator")
|
|
|
|
responseMsg := channel.NewMessage(int32(edge_ctrl_pb.ContentType_RemoveTunnelTerminatorResponseType), nil)
|
|
responseMsg.ReplyTo(ctx.msg)
|
|
if err := self.ch.Send(responseMsg); err != nil {
|
|
logger.WithError(err).Error("failed to send remove tunnel terminator response")
|
|
}
|
|
}
|
|
|
|
type RemoveTunnelTerminatorRequestContext struct {
|
|
baseSessionRequestContext
|
|
terminatorId string
|
|
}
|