mirror of
https://github.com/gravitl/netmaker.git
synced 2024-11-11 01:54:34 +08:00
WIP commit to enable rebasing to uuid feature
This commit is contained in:
parent
a94e848021
commit
b1e66703ff
1 changed files with 31 additions and 4 deletions
|
@ -154,9 +154,19 @@ var UpdatePeers mqtt.MessageHandler = func(client mqtt.Client, msg mqtt.Message)
|
||||||
var cfg config.ClientConfig
|
var cfg config.ClientConfig
|
||||||
cfg.Network = peerUpdate.Network
|
cfg.Network = peerUpdate.Network
|
||||||
cfg.ReadConfig()
|
cfg.ReadConfig()
|
||||||
err = wireguard.UpdateWgPeers(cfg.Node.Interface, peerUpdate.Peers)
|
peers, err := CalculatePeers(cfg.Node, peerUpdate.Nodes, cfg.Node.IsDualStack, cfg.Node.IsEgressGateway, cfg.Node.IsServer)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ncutils.Log("error updating peers" + err.Error())
|
ncutils.Log("error calculating Peers " + err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
extpeers, err := CalculateExtPeers(cfg.Node, peerUpdate.ExtPeers)
|
||||||
|
if err != nil {
|
||||||
|
ncutils.Log("error updated external wireguard peers " + err.Error())
|
||||||
|
}
|
||||||
|
peers = append(peers, extpeers...)
|
||||||
|
err = wireguard.UpdateWgPeers(cfg.Node.Interface, peers)
|
||||||
|
if err != nil {
|
||||||
|
ncutils.Log("error updating wireguard peers" + err.Error())
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
// path hardcoded for now... should be updated
|
// path hardcoded for now... should be updated
|
||||||
|
@ -187,7 +197,9 @@ func UpdateKeys(cfg *config.ClientConfig, client mqtt.Client) (*config.ClientCon
|
||||||
client.Disconnect(250)
|
client.Disconnect(250)
|
||||||
return cfg, err
|
return cfg, err
|
||||||
}
|
}
|
||||||
client.Disconnect(250)
|
if err := config.ModConfig(&cfg.Node); err != nil {
|
||||||
|
ncutils.Log("error updating local config " + err.Error())
|
||||||
|
}
|
||||||
return cfg, nil
|
return cfg, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -202,6 +214,11 @@ func Checkin(ctx context.Context, cfg config.ClientConfig, network string) {
|
||||||
//delay should be configuraable -> use cfg.Node.NetworkSettings.DefaultCheckInInterval ??
|
//delay should be configuraable -> use cfg.Node.NetworkSettings.DefaultCheckInInterval ??
|
||||||
case <-time.After(time.Second * 10):
|
case <-time.After(time.Second * 10):
|
||||||
ncutils.Log("Checkin running")
|
ncutils.Log("Checkin running")
|
||||||
|
//read latest config
|
||||||
|
cfg.ReadConfig()
|
||||||
|
//fix NodeID to remove ### so NodeID can be used as message topic
|
||||||
|
//remove with GRA-73
|
||||||
|
cfg.Node.ID = strings.Replace(cfg.Node.ID, "###", "-", 1)
|
||||||
if cfg.Node.Roaming == "yes" && cfg.Node.IsStatic != "yes" {
|
if cfg.Node.Roaming == "yes" && cfg.Node.IsStatic != "yes" {
|
||||||
extIP, err := ncutils.GetPublicIP()
|
extIP, err := ncutils.GetPublicIP()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -242,6 +259,10 @@ func UpdateEndpoint(cfg config.ClientConfig, network, ip string) {
|
||||||
if token := client.Publish("update/ip/"+cfg.Node.ID, 0, false, ip); token.Wait() && token.Error() != nil {
|
if token := client.Publish("update/ip/"+cfg.Node.ID, 0, false, ip); token.Wait() && token.Error() != nil {
|
||||||
ncutils.Log("error publishing endpoint update " + token.Error().Error())
|
ncutils.Log("error publishing endpoint update " + token.Error().Error())
|
||||||
}
|
}
|
||||||
|
cfg.Node.Endpoint = ip
|
||||||
|
if err := config.Write(&cfg, cfg.Network); err != nil {
|
||||||
|
ncutils.Log("error updating local config " + err.Error())
|
||||||
|
}
|
||||||
client.Disconnect(250)
|
client.Disconnect(250)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -252,13 +273,19 @@ func UpdateLocalAddress(cfg config.ClientConfig, network, ip string) {
|
||||||
if token := client.Publish("update/localaddress/"+cfg.Node.ID, 0, false, ip); token.Wait() && token.Error() != nil {
|
if token := client.Publish("update/localaddress/"+cfg.Node.ID, 0, false, ip); token.Wait() && token.Error() != nil {
|
||||||
ncutils.Log("error publishing local address update " + token.Error().Error())
|
ncutils.Log("error publishing local address update " + token.Error().Error())
|
||||||
}
|
}
|
||||||
|
cfg.Node.LocalAddress = ip
|
||||||
|
ncutils.Log("updating local address in local config to: " + cfg.Node.LocalAddress)
|
||||||
|
if err := config.Write(&cfg, cfg.Network); err != nil {
|
||||||
|
ncutils.Log("error updating local config " + err.Error())
|
||||||
|
}
|
||||||
client.Disconnect(250)
|
client.Disconnect(250)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Hello -- ping the broker to let server know node is alive and doing fine
|
// Hello -- ping the broker to let server know node is alive and doing fine
|
||||||
func Hello(cfg config.ClientConfig, network string) {
|
func Hello(cfg config.ClientConfig, network string) {
|
||||||
client := SetupMQTT(cfg)
|
client := SetupMQTT(cfg)
|
||||||
if token := client.Publish("ping/"+cfg.Node.ID, 0, false, "hello world!"); token.Wait() && token.Error() != nil {
|
ncutils.Log("sending ping " + cfg.Node.ID)
|
||||||
|
if token := client.Publish("ping/"+cfg.Node.ID, 2, false, "hello world!"); token.Wait() && token.Error() != nil {
|
||||||
ncutils.Log("error publishing ping " + token.Error().Error())
|
ncutils.Log("error publishing ping " + token.Error().Error())
|
||||||
}
|
}
|
||||||
client.Disconnect(250)
|
client.Disconnect(250)
|
||||||
|
|
Loading…
Reference in a new issue