mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-23 18:15:26 +00:00
feat: improve nodes list with inputs from @deonthomasgy
cf: https://github.com/juanfont/headscale/compare/main...deonthomasgy:dev/thomas/show-tags
This commit is contained in:
parent
16f9691e80
commit
63d920510d
@ -19,6 +19,7 @@ import (
|
|||||||
func init() {
|
func init() {
|
||||||
rootCmd.AddCommand(nodeCmd)
|
rootCmd.AddCommand(nodeCmd)
|
||||||
listNodesCmd.Flags().StringP("namespace", "n", "", "Filter by namespace")
|
listNodesCmd.Flags().StringP("namespace", "n", "", "Filter by namespace")
|
||||||
|
listNodesCmd.Flags().BoolP("tags", "t", false, "Show tags")
|
||||||
nodeCmd.AddCommand(listNodesCmd)
|
nodeCmd.AddCommand(listNodesCmd)
|
||||||
|
|
||||||
registerNodeCmd.Flags().StringP("namespace", "n", "", "Namespace")
|
registerNodeCmd.Flags().StringP("namespace", "n", "", "Namespace")
|
||||||
@ -141,6 +142,12 @@ var listNodesCmd = &cobra.Command{
|
|||||||
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
showTags, err := cmd.Flags().GetBool("tags")
|
||||||
|
if err != nil {
|
||||||
|
ErrorOutput(err, fmt.Sprintf("Error getting tags flag: %s", err), output)
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
ctx, client, conn, cancel := getHeadscaleCLIClient()
|
ctx, client, conn, cancel := getHeadscaleCLIClient()
|
||||||
defer cancel()
|
defer cancel()
|
||||||
@ -167,7 +174,7 @@ var listNodesCmd = &cobra.Command{
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
tableData, err := nodesToPtables(namespace, response.Machines)
|
tableData, err := nodesToPtables(namespace, showTags, response.Machines)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ErrorOutput(err, fmt.Sprintf("Error converting to table: %s", err), output)
|
ErrorOutput(err, fmt.Sprintf("Error converting to table: %s", err), output)
|
||||||
|
|
||||||
@ -397,22 +404,28 @@ var moveNodeCmd = &cobra.Command{
|
|||||||
|
|
||||||
func nodesToPtables(
|
func nodesToPtables(
|
||||||
currentNamespace string,
|
currentNamespace string,
|
||||||
|
showTags bool,
|
||||||
machines []*v1.Machine,
|
machines []*v1.Machine,
|
||||||
) (pterm.TableData, error) {
|
) (pterm.TableData, error) {
|
||||||
tableData := pterm.TableData{
|
tableHeader := []string{
|
||||||
{
|
"ID",
|
||||||
"ID",
|
"Name",
|
||||||
"Name",
|
"NodeKey",
|
||||||
"NodeKey",
|
"Namespace",
|
||||||
"Namespace",
|
"IP addresses",
|
||||||
"IP addresses",
|
"Ephemeral",
|
||||||
"Ephemeral",
|
"Last seen",
|
||||||
"Last seen",
|
"Online",
|
||||||
"Online",
|
"Expired",
|
||||||
"Expired",
|
|
||||||
"Tags",
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
if showTags {
|
||||||
|
tableHeader = append(tableHeader, []string{
|
||||||
|
"ForcedTags",
|
||||||
|
"InvalidTags",
|
||||||
|
"ValidTags",
|
||||||
|
}...)
|
||||||
|
}
|
||||||
|
tableData := pterm.TableData{tableHeader}
|
||||||
|
|
||||||
for _, machine := range machines {
|
for _, machine := range machines {
|
||||||
var ephemeral bool
|
var ephemeral bool
|
||||||
@ -456,21 +469,25 @@ func nodesToPtables(
|
|||||||
expired = pterm.LightRed("yes")
|
expired = pterm.LightRed("yes")
|
||||||
}
|
}
|
||||||
|
|
||||||
var tags string
|
var forcedTags string
|
||||||
for _, tag := range machine.ForcedTags {
|
for _, tag := range machine.ForcedTags {
|
||||||
tags += "," + tag
|
forcedTags += "," + tag
|
||||||
}
|
}
|
||||||
|
forcedTags = strings.TrimLeft(forcedTags, ",")
|
||||||
|
var invalidTags string
|
||||||
for _, tag := range machine.InvalidTags {
|
for _, tag := range machine.InvalidTags {
|
||||||
if !contains(machine.ForcedTags, tag) {
|
if !contains(machine.ForcedTags, tag) {
|
||||||
tags += "," + pterm.LightRed(tag)
|
invalidTags += "," + pterm.LightRed(tag)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
invalidTags = strings.TrimLeft(invalidTags, ",")
|
||||||
|
var validTags string
|
||||||
for _, tag := range machine.ValidTags {
|
for _, tag := range machine.ValidTags {
|
||||||
if !contains(machine.ForcedTags, tag) {
|
if !contains(machine.ForcedTags, tag) {
|
||||||
tags += "," + pterm.LightGreen(tag)
|
validTags += "," + pterm.LightGreen(tag)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
tags = strings.TrimLeft(tags, ",")
|
validTags = strings.TrimLeft(validTags, ",")
|
||||||
|
|
||||||
var namespace string
|
var namespace string
|
||||||
if currentNamespace == "" || (currentNamespace == machine.Namespace.Name) {
|
if currentNamespace == "" || (currentNamespace == machine.Namespace.Name) {
|
||||||
@ -479,20 +496,23 @@ func nodesToPtables(
|
|||||||
// Shared into this namespace
|
// Shared into this namespace
|
||||||
namespace = pterm.LightYellow(machine.Namespace.Name)
|
namespace = pterm.LightYellow(machine.Namespace.Name)
|
||||||
}
|
}
|
||||||
|
nodeData := []string{
|
||||||
|
strconv.FormatUint(machine.Id, headscale.Base10),
|
||||||
|
machine.Name,
|
||||||
|
nodeKey.ShortString(),
|
||||||
|
namespace,
|
||||||
|
strings.Join(machine.IpAddresses, ", "),
|
||||||
|
strconv.FormatBool(ephemeral),
|
||||||
|
lastSeenTime,
|
||||||
|
online,
|
||||||
|
expired,
|
||||||
|
}
|
||||||
|
if showTags {
|
||||||
|
nodeData = append(nodeData, []string{forcedTags, invalidTags, validTags}...)
|
||||||
|
}
|
||||||
tableData = append(
|
tableData = append(
|
||||||
tableData,
|
tableData,
|
||||||
[]string{
|
nodeData,
|
||||||
strconv.FormatUint(machine.Id, headscale.Base10),
|
|
||||||
machine.Name,
|
|
||||||
nodeKey.ShortString(),
|
|
||||||
namespace,
|
|
||||||
strings.Join(machine.IpAddresses, ", "),
|
|
||||||
strconv.FormatBool(ephemeral),
|
|
||||||
lastSeenTime,
|
|
||||||
online,
|
|
||||||
expired,
|
|
||||||
tags,
|
|
||||||
},
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user