mirror of
https://github.com/gravitl/netmaker.git
synced 2024-11-11 01:54:34 +08:00
243 lines
6.9 KiB
Go
243 lines
6.9 KiB
Go
package serverctl
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/gravitl/netmaker/functions"
|
|
"github.com/gravitl/netmaker/models"
|
|
"github.com/gravitl/netmaker/mongoconn"
|
|
"github.com/gravitl/netmaker/servercfg"
|
|
"go.mongodb.org/mongo-driver/bson"
|
|
"go.mongodb.org/mongo-driver/mongo/options"
|
|
"io"
|
|
"time"
|
|
"context"
|
|
"errors"
|
|
"os"
|
|
"os/exec"
|
|
)
|
|
|
|
func CreateDefaultNetwork() (bool, error) {
|
|
|
|
fmt.Println("Creating default network...")
|
|
|
|
iscreated := false
|
|
exists, err := functions.NetworkExists("default")
|
|
|
|
if exists || err != nil {
|
|
fmt.Println("Default network already exists. Skipping...")
|
|
return iscreated, err
|
|
} else {
|
|
|
|
var network models.Network
|
|
|
|
network.NetID = "default"
|
|
network.AddressRange = "10.10.10.0/24"
|
|
network.DisplayName = "default"
|
|
network.SetDefaults()
|
|
network.SetNodesLastModified()
|
|
network.SetNetworkLastModified()
|
|
network.KeyUpdateTimeStamp = time.Now().Unix()
|
|
priv := false
|
|
network.IsLocal = &priv
|
|
network.KeyUpdateTimeStamp = time.Now().Unix()
|
|
allow := true
|
|
network.AllowManualSignUp = &allow
|
|
|
|
fmt.Println("Creating default network.")
|
|
|
|
collection := mongoconn.Client.Database("netmaker").Collection("networks")
|
|
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
|
|
|
|
// insert our network into the network table
|
|
_, err = collection.InsertOne(ctx, network)
|
|
defer cancel()
|
|
|
|
}
|
|
if err == nil {
|
|
iscreated = true
|
|
}
|
|
return iscreated, err
|
|
|
|
|
|
}
|
|
|
|
func GetServerWGConf() (models.IntClient, error) {
|
|
var server models.IntClient
|
|
collection := mongoconn.Client.Database("netmaker").Collection("intclients")
|
|
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
|
|
filter := bson.M{"network": "comms", "isserver": "yes"}
|
|
err := collection.FindOne(ctx, filter, options.FindOne().SetProjection(bson.M{"_id": 0})).Decode(&server)
|
|
defer cancel()
|
|
|
|
return server, err
|
|
}
|
|
|
|
|
|
func CreateCommsNetwork() (bool, error) {
|
|
|
|
fmt.Println("Creating GRPC network...")
|
|
|
|
iscreated := false
|
|
exists, err := functions.NetworkExists("comms")
|
|
|
|
if exists || err != nil {
|
|
fmt.Println("GRPC network already exists. Skipping...")
|
|
return true, nil
|
|
} else {
|
|
|
|
var network models.Network
|
|
|
|
network.NetID = "comms"
|
|
network.IsIPv6 = "yes"
|
|
network.IsIPv4 = "no"
|
|
network.IsGRPCHub = "yes"
|
|
network.AddressRange6 = servercfg.GetGRPCWGAddressRange()
|
|
network.DisplayName = "comms"
|
|
network.SetDefaults()
|
|
network.SetNodesLastModified()
|
|
network.SetNetworkLastModified()
|
|
network.KeyUpdateTimeStamp = time.Now().Unix()
|
|
priv := false
|
|
network.IsLocal = &priv
|
|
network.KeyUpdateTimeStamp = time.Now().Unix()
|
|
|
|
fmt.Println("Creating comms network.")
|
|
|
|
collection := mongoconn.Client.Database("netmaker").Collection("networks")
|
|
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
|
|
|
|
// insert our network into the network table
|
|
_, err = collection.InsertOne(ctx, network)
|
|
defer cancel()
|
|
|
|
}
|
|
if err == nil {
|
|
iscreated = true
|
|
}
|
|
return iscreated, err
|
|
}
|
|
|
|
func DownloadNetclient() error {
|
|
/*
|
|
// Get the data
|
|
resp, err := http.Get("https://github.com/gravitl/netmaker/releases/download/latest/netclient")
|
|
if err != nil {
|
|
fmt.Println("could not download netclient")
|
|
return err
|
|
}
|
|
defer resp.Body.Close()
|
|
|
|
// Create the file
|
|
out, err := os.Create("/etc/netclient/netclient")
|
|
*/
|
|
if !FileExists("/etc/netclient/netclient") {
|
|
_, err := copy("./netclient/netclient", "/etc/netclient/netclient")
|
|
if err != nil {
|
|
fmt.Println("could not create /etc/netclient")
|
|
return err
|
|
}
|
|
}
|
|
//defer out.Close()
|
|
|
|
// Write the body to file
|
|
//_, err = io.Copy(out, resp.Body)
|
|
return nil
|
|
}
|
|
|
|
func FileExists(f string) bool {
|
|
info, err := os.Stat(f)
|
|
if os.IsNotExist(err) {
|
|
return false
|
|
}
|
|
return !info.IsDir()
|
|
}
|
|
|
|
func copy(src, dst string) (int64, error) {
|
|
sourceFileStat, err := os.Stat(src)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
if !sourceFileStat.Mode().IsRegular() {
|
|
return 0, fmt.Errorf("%s is not a regular file", src)
|
|
}
|
|
|
|
source, err := os.Open(src)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
defer source.Close()
|
|
|
|
destination, err := os.Create(dst)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
defer destination.Close()
|
|
nBytes, err := io.Copy(destination, source)
|
|
err = os.Chmod(dst, 0755)
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
}
|
|
return nBytes, err
|
|
}
|
|
|
|
func RemoveNetwork(network string) (bool, error) {
|
|
_, err := os.Stat("/etc/netclient/netclient")
|
|
if err != nil {
|
|
fmt.Println("could not find /etc/netclient")
|
|
return false, err
|
|
}
|
|
cmdoutput, err := exec.Command("/etc/netclient/netclient","-c","remove","-n",network).Output()
|
|
if err != nil {
|
|
fmt.Println(string(cmdoutput))
|
|
return false, err
|
|
}
|
|
fmt.Println("Server removed from network " + network)
|
|
return true, err
|
|
|
|
}
|
|
|
|
func AddNetwork(network string) (bool, error) {
|
|
pubip, err := servercfg.GetPublicIP()
|
|
if err != nil {
|
|
fmt.Println("could not get public IP.")
|
|
return false, err
|
|
}
|
|
|
|
_, err = os.Stat("/etc/netclient")
|
|
if os.IsNotExist(err) {
|
|
os.Mkdir("/etc/netclient", 744)
|
|
} else if err != nil {
|
|
fmt.Println("could not find or create /etc/netclient")
|
|
return false, err
|
|
}
|
|
fmt.Println("Directory is ready.")
|
|
token, err := functions.CreateServerToken(network)
|
|
if err != nil {
|
|
fmt.Println("could not create server token for " + network)
|
|
return false, err
|
|
}
|
|
fmt.Println("Token is ready.")
|
|
_, err = os.Stat("/etc/netclient/netclient")
|
|
if os.IsNotExist(err) {
|
|
err = DownloadNetclient()
|
|
fmt.Println("could not download netclient")
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
}
|
|
err = os.Chmod("/etc/netclient/netclient", 0755)
|
|
if err != nil {
|
|
fmt.Println("could not change netclient directory permissions")
|
|
return false, err
|
|
}
|
|
fmt.Println("Client is ready. Running install.")
|
|
out, err := exec.Command("/etc/netclient/netclient","-c","install","-t",token,"-name","netmaker","-ip4",pubip).Output()
|
|
fmt.Println(string(out))
|
|
if err != nil {
|
|
return false, errors.New(string(out) + err.Error())
|
|
}
|
|
fmt.Println("Server added to network " + network)
|
|
return true, err
|
|
}
|
|
|