| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 | package daemonimport (	"fmt"	"io"	"io/ioutil"	"log"	"net/http"	"os"	"strings"	"github.com/gravitl/netmaker/netclient/ncutils")// SetupWindowsDaemon - sets up the Windows daemon servicefunc SetupWindowsDaemon() error {	if !ncutils.FileExists(ncutils.GetNetclientPathSpecific() + "winsw.xml") {		if err := writeServiceConfig(); err != nil {			return err		}	}	if !ncutils.FileExists(ncutils.GetNetclientPathSpecific() + "winsw.exe") {		ncutils.Log("performing first time daemon setup")		if !ncutils.FileExists(".\\winsw.exe") {			err := downloadWinsw()			if err != nil {				return err			}		}		err := copyWinswOver()		if err != nil {			return err		}		ncutils.Log("finished daemon setup")	}	// install daemon, will not overwrite	ncutils.RunCmd(strings.Replace(ncutils.GetNetclientPathSpecific(), `\\`, `\`, -1)+`winsw.exe install`, false)	// start daemon, will not restart or start another	ncutils.RunCmd(strings.Replace(ncutils.GetNetclientPathSpecific(), `\\`, `\`, -1)+`winsw.exe start`, false)	ncutils.Log(strings.Replace(ncutils.GetNetclientPathSpecific(), `\\`, `\`, -1) + `winsw.exe start`)	return nil}// CleanupWindows - cleans up windows filesfunc CleanupWindows() {	if !ncutils.FileExists(ncutils.GetNetclientPathSpecific() + "winsw.xml") {		writeServiceConfig()	}	StopWindowsDaemon()	RemoveWindowsDaemon()	os.RemoveAll(ncutils.GetNetclientPath())	log.Println("Netclient on Windows, uninstalled")}func writeServiceConfig() error {	serviceConfigPath := ncutils.GetNetclientPathSpecific() + "winsw.xml"	scriptString := fmt.Sprintf(`<service><id>netclient</id><name>Netclient</name><description>Connects Windows nodes to one or more Netmaker networks.</description><executable>%v</executable><log mode="roll"></log></service>`, strings.Replace(ncutils.GetNetclientPathSpecific()+"netclient.exe", `\\`, `\`, -1))	if !ncutils.FileExists(serviceConfigPath) {		err := ioutil.WriteFile(serviceConfigPath, []byte(scriptString), 0644)		if err != nil {			return err		}		ncutils.Log("wrote the daemon config file to the Netclient directory")	}	return nil}// == Daemon ==// StopWindowsDaemon - stops the Windows daemonfunc StopWindowsDaemon() {	ncutils.Log("no networks detected, stopping Windows, Netclient daemon")	// stop daemon, will not overwrite	ncutils.RunCmd(strings.Replace(ncutils.GetNetclientPathSpecific(), `\\`, `\`, -1)+`winsw.exe stop`, true)}// RemoveWindowsDaemon - removes the Windows daemonfunc RemoveWindowsDaemon() {	// uninstall daemon, will not restart or start another	ncutils.RunCmd(strings.Replace(ncutils.GetNetclientPathSpecific(), `\\`, `\`, -1)+`winsw.exe uninstall`, true)	ncutils.Log("uninstalled Windows, Netclient daemon")}func copyWinswOver() error {	input, err := ioutil.ReadFile(".\\winsw.exe")	if err != nil {		ncutils.Log("failed to find winsw.exe")		return err	}	if err = ioutil.WriteFile(ncutils.GetNetclientPathSpecific()+"winsw.exe", input, 0644); err != nil {		ncutils.Log("failed to copy winsw.exe to " + ncutils.GetNetclientPath())		return err	}	if err = os.Remove(".\\winsw.exe"); err != nil {		ncutils.Log("failed to cleanup local winsw.exe, feel free to delete it")		return err	}	ncutils.Log("finished copying winsw.exe")	return nil}func downloadWinsw() error {	fullURLFile := "https://github.com/winsw/winsw/releases/download/v2.11.0/WinSW-x64.exe"	fileName := "winsw.exe"	// Create the file	file, err := os.Create(fileName)	if err != nil {		ncutils.Log("could not create file on OS for Winsw")		return err	}	client := http.Client{		CheckRedirect: func(r *http.Request, via []*http.Request) error {			r.URL.Opaque = r.URL.Path			return nil		},	}	// Put content on file	ncutils.Log("downloading service tool...")	resp, err := client.Get(fullURLFile)	if err != nil {		ncutils.Log("could not GET Winsw")		return err	}	defer resp.Body.Close()	_, err = io.Copy(file, resp.Body)	if err != nil {		ncutils.Log("could not mount winsw.exe")		return err	}	defer file.Close()	ncutils.Log("finished downloading Winsw")	return nil}
 |