| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 | package commandimport (	"strings"	"github.com/gravitl/netmaker/netclient/config"	"github.com/gravitl/netmaker/netclient/daemon"	"github.com/gravitl/netmaker/netclient/functions"	"github.com/gravitl/netmaker/netclient/ncutils")// JoinComms -- Join the message queue comms network if it doesn't have it// tries to ping if already found locally, if fail ping pull for best effort for communicationfunc JoinComms(cfg *config.ClientConfig) error {	var commsCfg config.ClientConfig	commsCfg.Network = cfg.Server.CommsNetwork	commsCfg.Node.Network = cfg.Server.CommsNetwork	commsCfg.Server.AccessKey = cfg.Server.AccessKey	commsCfg.Server.GRPCAddress = cfg.Server.GRPCAddress	commsCfg.Server.GRPCSSL = cfg.Server.GRPCSSL	commsCfg.Server.CoreDNSAddr = cfg.Server.CoreDNSAddr	if commsCfg.ConfigFileExists() {		commsCfg.ReadConfig()	}	if commsCfg.Node.Name == "" {		if err := functions.JoinNetwork(commsCfg, "", true); err != nil {			return err		}	} else { // check if comms is currently reachable		if err := functions.PingServer(&commsCfg); err != nil {			if err = Pull(commsCfg); err != nil {				return err			}		}	}	return nil}// Join - join command to run from clifunc Join(cfg config.ClientConfig, privateKey string) error {	var err error	//check if comms network exists	if err = JoinComms(&cfg); err != nil {		return err	}	//join network	err = functions.JoinNetwork(cfg, privateKey, false)	if err != nil && !cfg.DebugOn {		if !strings.Contains(err.Error(), "ALREADY_INSTALLED") {			ncutils.PrintLog("error installing: "+err.Error(), 1)			err = functions.LeaveNetwork(cfg.Network, true)			if err != nil {				err = functions.WipeLocal(cfg.Network)				if err != nil {					ncutils.PrintLog("error removing artifacts: "+err.Error(), 1)				}			}			if cfg.Daemon != "off" {				if ncutils.IsLinux() {					err = daemon.RemoveSystemDServices()				}				if err != nil {					ncutils.PrintLog("error removing services: "+err.Error(), 1)				}				if ncutils.IsFreeBSD() {					daemon.RemoveFreebsdDaemon()				}			}		} else {			ncutils.PrintLog("success", 0)		}		if err != nil && strings.Contains(err.Error(), "ALREADY_INSTALLED") {			ncutils.PrintLog(err.Error(), 0)			err = nil		}		return err	}	ncutils.PrintLog("joined "+cfg.Network, 1)	/*		if ncutils.IsWindows() {			ncutils.PrintLog("setting up WireGuard app", 0)			time.Sleep(time.Second >> 1)			functions.Pull(cfg.Network, true)		}	*/	return err}// Leave - runs the leave command from clifunc Leave(cfg config.ClientConfig, force bool) error {	err := functions.LeaveNetwork(cfg.Network, force)	if err != nil {		ncutils.PrintLog("error attempting to leave network "+cfg.Network, 1)	} else {		ncutils.PrintLog("success", 0)	}	nets, err := ncutils.GetSystemNetworks()	if err == nil && len(nets) == 1 {		if nets[0] == cfg.Node.CommID {			ncutils.PrintLog("detected comms as remaining network, removing...", 1)			err = functions.LeaveNetwork(nets[0], true)		}	}	return err}// Pull - runs pull command from clifunc Pull(cfg config.ClientConfig) error {	var err error	if cfg.Network == "all" {		ncutils.PrintLog("No network selected. Running Pull for all networks.", 0)		networks, err := ncutils.GetSystemNetworks()		if err != nil {			ncutils.PrintLog("Error retrieving networks. Exiting.", 1)			return err		}		for _, network := range networks {			_, err = functions.Pull(network, true)			if err != nil {				ncutils.PrintLog("Error pulling network config for network: "+network+"\n"+err.Error(), 1)			} else {				ncutils.PrintLog("pulled network config for "+network, 1)			}		}		err = nil	} else {		_, err = functions.Pull(cfg.Network, true)	}	ncutils.PrintLog("reset network and peer configs", 1)	if err == nil {		ncutils.PrintLog("reset network and peer configs", 1)		ncutils.PrintLog("success", 1)	} else {		ncutils.PrintLog("error occurred pulling configs from server", 1)	}	return err}// List - runs list command from clifunc List(cfg config.ClientConfig) error {	err := functions.List(cfg.Network)	return err}// Uninstall - runs uninstall command from clifunc Uninstall() error {	ncutils.PrintLog("uninstalling netclient...", 0)	err := functions.Uninstall()	ncutils.PrintLog("uninstalled netclient", 0)	return err}// Daemon - runs the daemonfunc Daemon() error {	err := functions.Daemon()	return err}
 |