netmaker/netclient/ncutils/netclientutils_darwin.go

59 lines
1.2 KiB
Go
Raw Normal View History

2021-11-17 09:10:11 +08:00
package ncutils
import (
2021-11-18 13:01:05 +08:00
"fmt"
2021-11-17 09:10:11 +08:00
"log"
"os/exec"
2021-11-18 13:01:05 +08:00
"strconv"
2021-11-17 09:10:11 +08:00
"strings"
2021-11-18 13:01:05 +08:00
"golang.zx2c4.com/wireguard/wgctrl/wgtypes"
2021-11-17 09:10:11 +08:00
)
// RunCmd - runs a local command
func RunCmd(command string, printerr bool) (string, error) {
2021-11-18 10:57:27 +08:00
args := strings.Fields(command)
cmd := exec.Command(args[0], args[1:]...)
cmd.Wait()
out, err := cmd.CombinedOutput()
if err != nil && printerr {
log.Println("error running command:", command)
log.Println(strings.TrimSuffix(string(out), "\n"))
}
return string(out), err
2021-11-17 09:10:11 +08:00
}
2021-11-17 23:21:35 +08:00
2021-11-18 13:01:05 +08:00
func RunCmdFormatted(command string, printerr bool) (string, error) {
return "", nil
}
2021-11-18 10:57:27 +08:00
// CreateUserSpaceConf - creates a user space WireGuard conf
func CreateUserSpaceConf(address string, privatekey string, listenPort string, mtu int32, perskeepalive int32, peers []wgtypes.PeerConfig) (string, error) {
2021-11-18 10:57:27 +08:00
peersString, err := parsePeers(perskeepalive, peers)
var listenPortString string
if mtu <= 0 {
mtu = 1280
}
if listenPort != "" {
listenPortString += "ListenPort = " + listenPort
}
if err != nil {
return "", err
}
config := fmt.Sprintf(`[Interface]
Address = %s
PrivateKey = %s
MTU = %s
%s
%s
`,
address+"/32",
privatekey,
strconv.Itoa(int(mtu)),
listenPortString,
peersString)
return config, nil
}