mirror of
https://github.com/gravitl/netmaker.git
synced 2024-11-10 17:48:25 +08:00
6c2582651c
* revert relays * initial relay commit * get relayed allowed ips * add more relay validation checks, peer logic cleanup * rm relayed nodes from relay node when relayed node is deleted * fix egress updates for relayed nodes * rm unused func * remove debug logs * avoid adding egress ranges on the relayed gw node --------- Co-authored-by: Matthew R Kasun <mkasun@nusak.ca>
60 lines
1.9 KiB
Go
60 lines
1.9 KiB
Go
package functions
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/gravitl/netmaker/models"
|
|
)
|
|
|
|
type hostNetworksUpdatePayload struct {
|
|
Networks []string `json:"networks"`
|
|
}
|
|
|
|
// GetHosts - fetch all host entries
|
|
func GetHosts() *[]models.ApiHost {
|
|
return request[[]models.ApiHost](http.MethodGet, "/api/hosts", nil)
|
|
}
|
|
|
|
// DeleteHost - delete a host
|
|
func DeleteHost(hostID string) *models.ApiHost {
|
|
return request[models.ApiHost](http.MethodDelete, "/api/hosts/"+hostID, nil)
|
|
}
|
|
|
|
// UpdateHost - update a host
|
|
func UpdateHost(hostID string, body *models.ApiHost) *models.ApiHost {
|
|
return request[models.ApiHost](http.MethodPut, "/api/hosts/"+hostID, body)
|
|
}
|
|
|
|
// AddHostToNetwork - add a network to host
|
|
func AddHostToNetwork(hostID, network string) *hostNetworksUpdatePayload {
|
|
return request[hostNetworksUpdatePayload](http.MethodPost, "/api/hosts/"+hostID+"/networks/"+network, nil)
|
|
}
|
|
|
|
// DeleteHostFromNetwork - deletes a network from host
|
|
func DeleteHostFromNetwork(hostID, network string) *hostNetworksUpdatePayload {
|
|
return request[hostNetworksUpdatePayload](http.MethodDelete, "/api/hosts/"+hostID+"/networks/"+network, nil)
|
|
}
|
|
|
|
// CreateRelay - add relay to a node
|
|
func CreateRelay(netID, nodeID string, relayedNodes []string) *models.ApiNode {
|
|
return request[models.ApiNode](http.MethodPost, fmt.Sprintf("/api/nodes/%s/%s/createrelay", netID, nodeID), &models.RelayRequest{
|
|
NodeID: nodeID,
|
|
NetID: netID,
|
|
RelayedNodes: relayedNodes,
|
|
})
|
|
}
|
|
|
|
// DeleteRelay - remove relay from a node
|
|
func DeleteRelay(netID, nodeID string) *models.ApiNode {
|
|
return request[models.ApiNode](http.MethodDelete, fmt.Sprintf("/api/nodes/%s/%s/deleterelay", netID, nodeID), nil)
|
|
}
|
|
|
|
// RefreshKeys - refresh wireguard keys
|
|
func RefreshKeys(hostID string) any {
|
|
if hostID == "" {
|
|
return request[any](http.MethodPut, "/api/hosts/keys", nil)
|
|
}
|
|
return request[any](http.MethodPut, fmt.Sprintf("/api/hosts/%s/keys", hostID), nil)
|
|
|
|
}
|