127 lines
4.3 KiB
Go
127 lines
4.3 KiB
Go
package apinode
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"sort"
|
|
"strings"
|
|
|
|
"github.com/warewulf/warewulf/internal/pkg/api/routes/wwapiv1"
|
|
"github.com/warewulf/warewulf/internal/pkg/hostlist"
|
|
"github.com/warewulf/warewulf/internal/pkg/node"
|
|
"gopkg.in/yaml.v2"
|
|
)
|
|
|
|
/*
|
|
NodeList lists all to none of the nodes managed by Warewulf. Returns
|
|
a formated string slice, with each line as separate string
|
|
*/
|
|
func NodeList(nodeGet *wwapiv1.GetNodeList) (nodeList wwapiv1.NodeList, err error) {
|
|
// nil is okay for nodeNames
|
|
nodeDB, err := node.New()
|
|
if err != nil {
|
|
return
|
|
}
|
|
nodes, err := nodeDB.FindAllNodes()
|
|
if err != nil {
|
|
return
|
|
}
|
|
nodeGet.Nodes = hostlist.Expand(nodeGet.Nodes)
|
|
sort.Strings(nodeGet.Nodes)
|
|
|
|
if nodeGet.Type == wwapiv1.GetNodeList_Simple {
|
|
nodeList.Output = append(nodeList.Output,
|
|
fmt.Sprintf("%s:=:%s:=:%s", "NODE NAME", "PROFILES", "NETWORK"))
|
|
for _, n := range node.FilterByName(nodes, nodeGet.Nodes) {
|
|
var netNames []string
|
|
for k := range n.NetDevs {
|
|
netNames = append(netNames, k)
|
|
}
|
|
sort.Strings(netNames)
|
|
nodeList.Output = append(nodeList.Output,
|
|
fmt.Sprintf("%s:=:%s:=:%s", n.Id.Print(), n.Profiles.Print(), strings.Join(netNames, ", ")))
|
|
}
|
|
} else if nodeGet.Type == wwapiv1.GetNodeList_Network {
|
|
nodeList.Output = append(nodeList.Output,
|
|
fmt.Sprintf("%s:=:%s:=:%s:=:%s:=:%s:=:%s", "NODE NAME", "NAME", "HWADDR", "IPADDR", "GATEWAY", "DEVICE"))
|
|
for _, n := range node.FilterByName(nodes, nodeGet.Nodes) {
|
|
if len(n.NetDevs) > 0 {
|
|
for name := range n.NetDevs {
|
|
nodeList.Output = append(nodeList.Output,
|
|
fmt.Sprintf("%s:=:%s:=:%s:=:%s:=:%s:=:%s", n.Id.Print(), name,
|
|
n.NetDevs[name].Hwaddr.Print(),
|
|
n.NetDevs[name].Ipaddr.Print(),
|
|
n.NetDevs[name].Gateway.Print(),
|
|
n.NetDevs[name].Device.Print()))
|
|
}
|
|
} else {
|
|
fmt.Printf("%s:=:%s:=:%s:=:%s:=:%s:=:%s", n.Id.Print(), "--", "--", "--", "--", "--")
|
|
}
|
|
}
|
|
} else if nodeGet.Type == wwapiv1.GetNodeList_Ipmi {
|
|
nodeList.Output = append(nodeList.Output,
|
|
fmt.Sprintf("%s:=:%s:=:%s:=:%s:=:%s", "NODE NAME", "IPMI IPADDR", "IPMI PORT", "IPMI USERNAME", "IPMI INTERFACE"))
|
|
for _, n := range node.FilterByName(nodes, nodeGet.Nodes) {
|
|
nodeList.Output = append(nodeList.Output,
|
|
fmt.Sprintf("%s:=:%s:=:%s:=:%s:=:%s:=:%s", n.Id.Print(),
|
|
n.Ipmi.Ipaddr.Print(),
|
|
n.Ipmi.Port.Print(),
|
|
n.Ipmi.UserName.Print(),
|
|
n.Ipmi.Interface.Print(),
|
|
n.Ipmi.EscapeChar.Print()))
|
|
}
|
|
} else if nodeGet.Type == wwapiv1.GetNodeList_Long {
|
|
nodeList.Output = append(nodeList.Output,
|
|
fmt.Sprintf("%s:=:%s:=:%s:=:%s", "NODE NAME", "KERNEL OVERRIDE", "CONTAINER", "OVERLAYS (S/R)"))
|
|
for _, n := range node.FilterByName(nodes, nodeGet.Nodes) {
|
|
nodeList.Output = append(nodeList.Output,
|
|
fmt.Sprintf("%s:=:%s:=:%s:=:%s", n.Id.Print(),
|
|
n.Kernel.Override.Print(),
|
|
n.ContainerName.Print(),
|
|
n.SystemOverlay.Print()+"/"+n.RuntimeOverlay.Print()))
|
|
}
|
|
} else if nodeGet.Type == wwapiv1.GetNodeList_All || nodeGet.Type == wwapiv1.GetNodeList_FullAll {
|
|
for _, n := range node.FilterByName(nodes, nodeGet.Nodes) {
|
|
nodeList.Output = append(nodeList.Output,
|
|
fmt.Sprintf("%s:=:%s:=:%s:=:%s", "NODE", "FIELD", "PROFILE", "VALUE"))
|
|
fields := n.GetFields(wwapiv1.GetNodeList_FullAll == nodeGet.Type)
|
|
for _, f := range fields {
|
|
nodeList.Output = append(nodeList.Output,
|
|
fmt.Sprintf("%s:=:%s:=:%s:=:%s", n.Id.Print(), f.Field, f.Source, f.Value))
|
|
}
|
|
}
|
|
} else if nodeGet.Type == wwapiv1.GetNodeList_YAML || nodeGet.Type == wwapiv1.GetNodeList_JSON {
|
|
nodeResp := node.NodeYaml{
|
|
NodeProfiles: make(map[string]*node.NodeConf),
|
|
Nodes: make(map[string]*node.NodeConf),
|
|
}
|
|
|
|
filterNodes := node.FilterByName(nodes, nodeGet.Nodes)
|
|
for _, nodeInfo := range filterNodes {
|
|
myNode := node.NewConf()
|
|
myNode.GetFrom(nodeInfo)
|
|
myNode.Flatten()
|
|
nodeResp.Nodes[nodeInfo.Id.Get()] = &myNode
|
|
}
|
|
|
|
profiles, _ := nodeDB.FindAllProfiles()
|
|
for _, profileInfo := range profiles {
|
|
myProfile := node.NewConf()
|
|
myProfile.GetFrom(profileInfo)
|
|
myProfile.Flatten()
|
|
nodeResp.NodeProfiles[profileInfo.Id.Get()] = &myProfile
|
|
}
|
|
|
|
var buf []byte
|
|
if nodeGet.Type == wwapiv1.GetNodeList_JSON {
|
|
buf, _ = json.Marshal(nodeResp)
|
|
}
|
|
if nodeGet.Type == wwapiv1.GetNodeList_YAML {
|
|
buf, _ = yaml.Marshal(nodeResp)
|
|
}
|
|
nodeList.Output = append(nodeList.Output, string(buf))
|
|
|
|
}
|
|
return
|
|
}
|