mirror of
https://github.com/openziti/ziti.git
synced 2026-09-10 16:55: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.
72 lines
2.2 KiB
Go
72 lines
2.2 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_ctrl
|
|
|
|
import (
|
|
"github.com/michaelquigley/pfxlog"
|
|
"github.com/openziti/channel/v5"
|
|
"github.com/openziti/ziti/v2/common/pb/ctrl_pb"
|
|
"github.com/openziti/ziti/v2/router/env"
|
|
"google.golang.org/protobuf/proto"
|
|
)
|
|
|
|
// settingsHandler is a catch-all handler for all settings message (currently only sent on router connect).
|
|
type settingsHandler struct {
|
|
env env.RouterEnv
|
|
}
|
|
|
|
func (handler *settingsHandler) ContentType() int32 {
|
|
return int32(ctrl_pb.ContentType_SettingsType)
|
|
}
|
|
|
|
func (handler *settingsHandler) HandleReceive(msg *channel.Message, ch channel.Channel) {
|
|
settings := &ctrl_pb.Settings{}
|
|
if err := proto.Unmarshal(msg.Body, settings); err == nil {
|
|
for settingType, settingValue := range settings.Data {
|
|
log := pfxlog.ContextLogger(ch.Label()).WithFields(map[string]interface{}{
|
|
"settingType": settingType,
|
|
"settingValue": settingValue,
|
|
})
|
|
|
|
switch settingType {
|
|
case int32(ctrl_pb.SettingTypes_NewCtrlAddress):
|
|
newAddress := string(settingValue)
|
|
details := handler.env.GetNetworkControllers().GetControllerDetails()
|
|
details[ch.Id()] = &ctrl_pb.CtrlDetail{
|
|
Id: ch.Id(),
|
|
Endpoints: []*ctrl_pb.CtrlEndpoint{{Address: newAddress}},
|
|
}
|
|
var merged []*ctrl_pb.CtrlDetail
|
|
for _, d := range details {
|
|
merged = append(merged, d)
|
|
}
|
|
handler.env.UpdateCtrlEndpointDetails(merged)
|
|
default:
|
|
log.Error("unknown setting type, ignored")
|
|
}
|
|
}
|
|
} else {
|
|
pfxlog.ContextLogger(ch.Label()).WithError(err).Error("error unmarshalling")
|
|
}
|
|
}
|
|
|
|
func newSettingsHandler(env env.RouterEnv) channel.ContentTypeReceiver {
|
|
return &settingsHandler{
|
|
env: env,
|
|
}
|
|
}
|