mirror of
https://github.com/gravitl/netmaker.git
synced 2025-10-09 13:26:52 +08:00
Merge pull request #1956 from gravitl/GRA-988/delete_host_from_network
Gra 988/delete host from network
This commit is contained in:
commit
f17787751c
2 changed files with 68 additions and 4 deletions
|
@ -23,6 +23,7 @@ func hostHandlers(r *mux.Router) {
|
||||||
r.HandleFunc("/api/hosts/{hostid}", logic.SecurityCheck(true, http.HandlerFunc(updateHost))).Methods(http.MethodPut)
|
r.HandleFunc("/api/hosts/{hostid}", logic.SecurityCheck(true, http.HandlerFunc(updateHost))).Methods(http.MethodPut)
|
||||||
r.HandleFunc("/api/hosts/{hostid}", logic.SecurityCheck(true, http.HandlerFunc(deleteHost))).Methods(http.MethodDelete)
|
r.HandleFunc("/api/hosts/{hostid}", logic.SecurityCheck(true, http.HandlerFunc(deleteHost))).Methods(http.MethodDelete)
|
||||||
r.HandleFunc("/api/hosts/{hostid}/networks/{network}", logic.SecurityCheck(true, http.HandlerFunc(addHostToNetwork))).Methods(http.MethodPost)
|
r.HandleFunc("/api/hosts/{hostid}/networks/{network}", logic.SecurityCheck(true, http.HandlerFunc(addHostToNetwork))).Methods(http.MethodPost)
|
||||||
|
r.HandleFunc("/api/hosts/{hostid}/networks/{network}", logic.SecurityCheck(true, http.HandlerFunc(deleteHostFromNetwork))).Methods(http.MethodDelete)
|
||||||
r.HandleFunc("/api/hosts/{hostid}/relay", logic.SecurityCheck(false, http.HandlerFunc(createHostRelay))).Methods(http.MethodPost)
|
r.HandleFunc("/api/hosts/{hostid}/relay", logic.SecurityCheck(false, http.HandlerFunc(createHostRelay))).Methods(http.MethodPost)
|
||||||
r.HandleFunc("/api/hosts/{hostid}/relay", logic.SecurityCheck(false, http.HandlerFunc(deleteHostRelay))).Methods(http.MethodDelete)
|
r.HandleFunc("/api/hosts/{hostid}/relay", logic.SecurityCheck(false, http.HandlerFunc(deleteHostRelay))).Methods(http.MethodDelete)
|
||||||
}
|
}
|
||||||
|
@ -182,7 +183,7 @@ func deleteHost(w http.ResponseWriter, r *http.Request) {
|
||||||
// oauth
|
// oauth
|
||||||
//
|
//
|
||||||
// Responses:
|
// Responses:
|
||||||
// 200: addHostToNetwork
|
// 200: addHostToNetworkResponse
|
||||||
func addHostToNetwork(w http.ResponseWriter, r *http.Request) {
|
func addHostToNetwork(w http.ResponseWriter, r *http.Request) {
|
||||||
|
|
||||||
var params = mux.Vars(r)
|
var params = mux.Vars(r)
|
||||||
|
@ -228,3 +229,53 @@ func addHostToNetwork(w http.ResponseWriter, r *http.Request) {
|
||||||
logger.Log(2, r.Header.Get("user"), fmt.Sprintf("added host %s to network %s", currHost.Name, network))
|
logger.Log(2, r.Header.Get("user"), fmt.Sprintf("added host %s to network %s", currHost.Name, network))
|
||||||
w.WriteHeader(http.StatusOK)
|
w.WriteHeader(http.StatusOK)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// swagger:route DELETE /api/hosts/{hostid}/networks/{network} hosts deleteHostFromNetwork
|
||||||
|
//
|
||||||
|
// Given a network, a host is removed from the network.
|
||||||
|
//
|
||||||
|
// Schemes: https
|
||||||
|
//
|
||||||
|
// Security:
|
||||||
|
// oauth
|
||||||
|
//
|
||||||
|
// Responses:
|
||||||
|
// 200: deleteHostFromNetworkResponse
|
||||||
|
func deleteHostFromNetwork(w http.ResponseWriter, r *http.Request) {
|
||||||
|
|
||||||
|
var params = mux.Vars(r)
|
||||||
|
hostid := params["hostid"]
|
||||||
|
network := params["network"]
|
||||||
|
if hostid == "" || network == "" {
|
||||||
|
logic.ReturnErrorResponse(w, r, logic.FormatError(errors.New("hostid or network cannot be empty"), "badrequest"))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
// confirm host exists
|
||||||
|
currHost, err := logic.GetHost(hostid)
|
||||||
|
if err != nil {
|
||||||
|
logger.Log(0, r.Header.Get("user"), "failed to find host:", err.Error())
|
||||||
|
logic.ReturnErrorResponse(w, r, logic.FormatError(err, "internal"))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
node, err := logic.UpdateHostNetwork(currHost, network, false)
|
||||||
|
if err != nil {
|
||||||
|
logger.Log(0, r.Header.Get("user"), "failed to remove host from network:", hostid, network, err.Error())
|
||||||
|
logic.ReturnErrorResponse(w, r, logic.FormatError(err, "internal"))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
logger.Log(1, "deleting node", node.ID.String(), "from host", currHost.Name)
|
||||||
|
if err := logic.DeleteNode(node, false); err != nil {
|
||||||
|
logic.ReturnErrorResponse(w, r, logic.FormatError(fmt.Errorf("failed to delete node"), "internal"))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
// notify node change
|
||||||
|
runUpdates(node, false)
|
||||||
|
go func() { // notify of peer change
|
||||||
|
if err := mq.PublishPeerUpdate(); err != nil {
|
||||||
|
logger.Log(1, "error publishing peer update ", err.Error())
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
logger.Log(2, r.Header.Get("user"), fmt.Sprintf("removed host %s from network %s", currHost.Name, network))
|
||||||
|
w.WriteHeader(http.StatusOK)
|
||||||
|
}
|
||||||
|
|
|
@ -159,8 +159,23 @@ func RemoveHostByID(hostID string) error {
|
||||||
|
|
||||||
// UpdateHostNetwork - adds/deletes host from a network
|
// UpdateHostNetwork - adds/deletes host from a network
|
||||||
func UpdateHostNetwork(h *models.Host, network string, add bool) (*models.Node, error) {
|
func UpdateHostNetwork(h *models.Host, network string, add bool) (*models.Node, error) {
|
||||||
|
for _, nodeID := range h.Nodes {
|
||||||
|
node, err := GetNodeByID(nodeID)
|
||||||
|
if err != nil || node.PendingDelete {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if node.Network == network {
|
||||||
|
if !add {
|
||||||
|
return &node, nil
|
||||||
|
} else {
|
||||||
|
return nil, errors.New("host already part of network " + network)
|
||||||
|
}
|
||||||
|
|
||||||
if add {
|
}
|
||||||
|
}
|
||||||
|
if !add {
|
||||||
|
return nil, errors.New("host not part of the network " + network)
|
||||||
|
} else {
|
||||||
newNode := models.Node{}
|
newNode := models.Node{}
|
||||||
newNode.Server = servercfg.GetServer()
|
newNode.Server = servercfg.GetServer()
|
||||||
newNode.Network = network
|
newNode.Network = network
|
||||||
|
@ -169,8 +184,6 @@ func UpdateHostNetwork(h *models.Host, network string, add bool) (*models.Node,
|
||||||
}
|
}
|
||||||
return &newNode, nil
|
return &newNode, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil, errors.New("failed to update host networks")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// AssociateNodeToHost - associates and creates a node with a given host
|
// AssociateNodeToHost - associates and creates a node with a given host
|
||||||
|
|
Loading…
Add table
Reference in a new issue