| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 | package logicimport (	"encoding/json"	"errors"	"github.com/gravitl/netmaker/database"	"github.com/gravitl/netmaker/logger"	"github.com/gravitl/netmaker/models"	"golang.org/x/crypto/bcrypt")// ErrHostExists error indicating that host exists when trying to create new hostvar ErrHostExists error = errors.New("host already exists")// GetAllHosts - returns all hosts in flat list or errorfunc GetAllHosts() ([]models.Host, error) {	currHostMap, err := GetHostsMap()	if err != nil {		return nil, err	}	var currentHosts = []models.Host{}	for k := range currHostMap {		var h = *currHostMap[k]		currentHosts = append(currentHosts, h)	}	return currentHosts, nil}// GetHostsMap - gets all the current hosts on machine in a mapfunc GetHostsMap() (map[string]*models.Host, error) {	records, err := database.FetchRecords(database.HOSTS_TABLE_NAME)	if err != nil && !database.IsEmptyRecord(err) {		return nil, err	}	currHostMap := make(map[string]*models.Host)	for k := range records {		var h models.Host		err = json.Unmarshal([]byte(records[k]), &h)		if err != nil {			return nil, err		}		currHostMap[h.ID.String()] = &h	}	return currHostMap, nil}// GetHost - gets a host from db given idfunc GetHost(hostid string) (*models.Host, error) {	record, err := database.FetchRecord(database.HOSTS_TABLE_NAME, hostid)	if err != nil {		return nil, err	}	var h models.Host	if err = json.Unmarshal([]byte(record), &h); err != nil {		return nil, err	}	return &h, nil}// CreateHost - creates a host if not existfunc CreateHost(h *models.Host) error {	_, err := GetHost(h.ID.String())	if (err != nil && !database.IsEmptyRecord(err)) || (err == nil) {		return ErrHostExists	}	//encrypt that password so we never see it	hash, err := bcrypt.GenerateFromPassword([]byte(h.HostPass), 5)	if err != nil {		return err	}	h.HostPass = string(hash)	return UpsertHost(h)}// UpdateHost - updates host data by fieldfunc UpdateHost(newHost, currentHost *models.Host) {	// unchangeable fields via API here	newHost.DaemonInstalled = currentHost.DaemonInstalled	newHost.OS = currentHost.OS	newHost.IPForwarding = currentHost.IPForwarding	newHost.HostPass = currentHost.HostPass	newHost.MacAddress = currentHost.MacAddress	newHost.Debug = currentHost.Debug	newHost.Nodes = currentHost.Nodes	newHost.PublicKey = currentHost.PublicKey	newHost.InternetGateway = currentHost.InternetGateway	newHost.TrafficKeyPublic = currentHost.TrafficKeyPublic	// changeable fields	if len(newHost.Version) == 0 {		newHost.Version = currentHost.Version	}	if len(newHost.Name) == 0 {		newHost.Name = currentHost.Name	}	if newHost.LocalAddress.String() != currentHost.LocalAddress.String() {		newHost.LocalAddress = currentHost.LocalAddress	}	if newHost.LocalRange.String() != currentHost.LocalRange.String() {		newHost.LocalRange = currentHost.LocalRange	}	if newHost.MTU == 0 {		newHost.MTU = currentHost.MTU	}	if newHost.ListenPort == 0 {		newHost.ListenPort = currentHost.ListenPort	}	if newHost.ProxyListenPort == 0 {		newHost.ProxyListenPort = currentHost.ProxyListenPort	}}// UpsertHost - upserts into DB a given host model, does not check for existence*func UpsertHost(h *models.Host) error {	data, err := json.Marshal(h)	if err != nil {		return err	}	return database.Insert(h.ID.String(), string(data), database.HOSTS_TABLE_NAME)}// RemoveHost - removes a given host from serverfunc RemoveHost(h *models.Host) error {	if len(h.Nodes) > 0 {		for i := range h.Nodes {			id := h.Nodes[i]			n, err := GetNodeByID(id)			if err == nil {				if err = DeleteNodeByID(&n); err != nil {					return err // must remove associated nodes before removing a host				}			}		}	}	return database.DeleteRecord(database.HOSTS_TABLE_NAME, h.ID.String())}// UpdateHostNetworks - updates a given host's networksfunc UpdateHostNetworks(h *models.Host, nets []string) error {	if len(h.Nodes) > 0 {		for i := range h.Nodes {			n, err := GetNodeByID(h.Nodes[i])			if err != nil {				return err			}			// loop through networks and remove need for updating existing networks			found := false			for j := range nets {				if len(nets[j]) > 0 && nets[j] == n.Network {					nets[j] = "" // mark as ignore					found = true				}			}			if !found { // remove the node/host from that network				if err = DeleteNodeByID(&n); err != nil {					return err				}			}		}	} else {		h.Nodes = []string{}	}	for i := range nets {		// create a node for each non zero network remaining		if len(nets[i]) > 0 {			// TODO create a node with given hostid			logger.Log(0, "I will create a node here")		}	}	return nil}
 |