2021-04-28 16:15:45 +02:00
|
|
|
package cli
|
|
|
|
|
|
|
|
import (
|
2021-10-29 19:16:54 +02:00
|
|
|
"context"
|
2021-04-28 16:15:45 +02:00
|
|
|
"fmt"
|
2021-10-29 19:16:54 +02:00
|
|
|
"time"
|
2021-04-28 16:15:45 +02:00
|
|
|
|
2021-11-04 23:42:21 +01:00
|
|
|
v1 "github.com/juanfont/headscale/gen/go/headscale/v1"
|
2021-08-15 23:20:38 +02:00
|
|
|
"github.com/pterm/pterm"
|
2021-10-29 19:16:54 +02:00
|
|
|
"github.com/rs/zerolog/log"
|
2021-04-28 16:15:45 +02:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
2021-07-25 15:03:45 +02:00
|
|
|
func init() {
|
|
|
|
rootCmd.AddCommand(namespaceCmd)
|
|
|
|
namespaceCmd.AddCommand(createNamespaceCmd)
|
|
|
|
namespaceCmd.AddCommand(listNamespacesCmd)
|
|
|
|
namespaceCmd.AddCommand(destroyNamespaceCmd)
|
2021-10-16 17:20:06 +02:00
|
|
|
namespaceCmd.AddCommand(renameNamespaceCmd)
|
2021-07-25 15:03:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
var namespaceCmd = &cobra.Command{
|
2021-06-28 20:04:05 +02:00
|
|
|
Use: "namespaces",
|
2021-04-28 16:15:45 +02:00
|
|
|
Short: "Manage the namespaces of Headscale",
|
|
|
|
}
|
|
|
|
|
2021-07-25 15:03:45 +02:00
|
|
|
var createNamespaceCmd = &cobra.Command{
|
2021-04-28 16:15:45 +02:00
|
|
|
Use: "create NAME",
|
|
|
|
Short: "Creates a new namespace",
|
|
|
|
Args: func(cmd *cobra.Command, args []string) error {
|
|
|
|
if len(args) < 1 {
|
|
|
|
return fmt.Errorf("Missing parameters")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
Run: func(cmd *cobra.Command, args []string) {
|
2021-11-04 23:42:21 +01:00
|
|
|
output, _ := cmd.Flags().GetString("output")
|
|
|
|
|
|
|
|
namespaceName := args[0]
|
2021-10-29 19:16:54 +02:00
|
|
|
|
2021-10-31 17:26:51 +01:00
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
client, conn := getHeadscaleGRPCClient(ctx)
|
2021-10-29 19:16:54 +02:00
|
|
|
defer conn.Close()
|
|
|
|
|
|
|
|
log.Trace().Interface("client", client).Msg("Obtained gRPC client")
|
|
|
|
|
2021-11-04 23:42:21 +01:00
|
|
|
request := &v1.CreateNamespaceRequest{Name: namespaceName}
|
2021-10-29 19:16:54 +02:00
|
|
|
|
|
|
|
log.Trace().Interface("request", request).Msg("Sending CreateNamespace request")
|
|
|
|
response, err := client.CreateNamespace(ctx, request)
|
2021-04-28 16:15:45 +02:00
|
|
|
if err != nil {
|
2021-11-04 23:42:21 +01:00
|
|
|
ErrorOutput(err, fmt.Sprintf("Cannot create namespace: %s", err), output)
|
2021-04-28 16:15:45 +02:00
|
|
|
return
|
|
|
|
}
|
2021-11-04 23:42:21 +01:00
|
|
|
|
|
|
|
SuccessOutput(response.Namespace, "Namespace created", output)
|
2021-04-28 16:15:45 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2021-07-25 15:03:45 +02:00
|
|
|
var destroyNamespaceCmd = &cobra.Command{
|
2021-05-09 17:12:05 +02:00
|
|
|
Use: "destroy NAME",
|
|
|
|
Short: "Destroys a namespace",
|
|
|
|
Args: func(cmd *cobra.Command, args []string) error {
|
|
|
|
if len(args) < 1 {
|
|
|
|
return fmt.Errorf("Missing parameters")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
Run: func(cmd *cobra.Command, args []string) {
|
2021-11-04 23:42:21 +01:00
|
|
|
output, _ := cmd.Flags().GetString("output")
|
|
|
|
|
|
|
|
namespaceName := args[0]
|
|
|
|
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), 3*time.Second)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
client, conn := getHeadscaleGRPCClient(ctx)
|
|
|
|
defer conn.Close()
|
|
|
|
|
|
|
|
request := &v1.DeleteNamespaceRequest{Name: namespaceName}
|
|
|
|
|
|
|
|
response, err := client.DeleteNamespace(ctx, request)
|
2021-05-09 17:12:05 +02:00
|
|
|
if err != nil {
|
2021-11-04 23:42:21 +01:00
|
|
|
ErrorOutput(err, fmt.Sprintf("Cannot destroy namespace: %s", err), output)
|
2021-05-09 17:12:05 +02:00
|
|
|
return
|
|
|
|
}
|
2021-11-04 23:42:21 +01:00
|
|
|
|
|
|
|
SuccessOutput(response, "Namespace destroyed", output)
|
2021-05-09 17:12:05 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2021-07-25 15:03:45 +02:00
|
|
|
var listNamespacesCmd = &cobra.Command{
|
2021-04-28 16:15:45 +02:00
|
|
|
Use: "list",
|
|
|
|
Short: "List all the namespaces",
|
|
|
|
Run: func(cmd *cobra.Command, args []string) {
|
2021-11-04 23:42:21 +01:00
|
|
|
output, _ := cmd.Flags().GetString("output")
|
|
|
|
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), 3*time.Second)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
client, conn := getHeadscaleGRPCClient(ctx)
|
|
|
|
defer conn.Close()
|
|
|
|
|
|
|
|
request := &v1.ListNamespacesRequest{}
|
|
|
|
|
|
|
|
response, err := client.ListNamespaces(ctx, request)
|
2021-04-28 16:15:45 +02:00
|
|
|
if err != nil {
|
2021-11-04 23:42:21 +01:00
|
|
|
ErrorOutput(err, fmt.Sprintf("Cannot get namespaces: %s", err), output)
|
2021-05-08 13:28:22 +02:00
|
|
|
return
|
|
|
|
}
|
2021-11-04 23:42:21 +01:00
|
|
|
|
|
|
|
if output != "" {
|
|
|
|
SuccessOutput(response.Namespaces, "", output)
|
2021-04-28 16:15:45 +02:00
|
|
|
return
|
|
|
|
}
|
2021-08-15 23:20:38 +02:00
|
|
|
|
|
|
|
d := pterm.TableData{{"ID", "Name", "Created"}}
|
2021-11-04 23:42:21 +01:00
|
|
|
for _, namespace := range response.GetNamespaces() {
|
2021-10-29 19:16:54 +02:00
|
|
|
d = append(
|
|
|
|
d,
|
2021-11-04 23:42:21 +01:00
|
|
|
[]string{
|
|
|
|
namespace.GetId(),
|
|
|
|
namespace.GetName(),
|
|
|
|
namespace.GetCreatedAt().AsTime().Format("2006-01-02 15:04:05"),
|
|
|
|
},
|
2021-10-29 19:16:54 +02:00
|
|
|
)
|
2021-04-28 16:15:45 +02:00
|
|
|
}
|
2021-08-15 23:35:03 +02:00
|
|
|
err = pterm.DefaultTable.WithHasHeader().WithData(d).Render()
|
|
|
|
if err != nil {
|
2021-11-04 23:42:21 +01:00
|
|
|
ErrorOutput(err, fmt.Sprintf("Failed to render pterm table: %s", err), output)
|
|
|
|
return
|
2021-08-15 23:35:03 +02:00
|
|
|
}
|
2021-04-28 16:15:45 +02:00
|
|
|
},
|
|
|
|
}
|
2021-10-16 17:20:06 +02:00
|
|
|
|
|
|
|
var renameNamespaceCmd = &cobra.Command{
|
|
|
|
Use: "rename OLD_NAME NEW_NAME",
|
|
|
|
Short: "Renames a namespace",
|
|
|
|
Args: func(cmd *cobra.Command, args []string) error {
|
|
|
|
if len(args) < 2 {
|
|
|
|
return fmt.Errorf("Missing parameters")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
Run: func(cmd *cobra.Command, args []string) {
|
2021-11-04 23:42:21 +01:00
|
|
|
output, _ := cmd.Flags().GetString("output")
|
|
|
|
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), 3*time.Second)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
client, conn := getHeadscaleGRPCClient(ctx)
|
|
|
|
defer conn.Close()
|
|
|
|
|
|
|
|
request := &v1.RenameNamespaceRequest{
|
|
|
|
OldName: args[0],
|
|
|
|
NewName: args[1],
|
2021-10-16 17:20:06 +02:00
|
|
|
}
|
2021-11-04 23:42:21 +01:00
|
|
|
|
|
|
|
response, err := client.RenameNamespace(ctx, request)
|
2021-10-16 17:20:06 +02:00
|
|
|
if err != nil {
|
2021-11-04 23:42:21 +01:00
|
|
|
ErrorOutput(err, fmt.Sprintf("Cannot rename namespace: %s", err), output)
|
2021-10-16 17:20:06 +02:00
|
|
|
return
|
|
|
|
}
|
2021-11-04 23:42:21 +01:00
|
|
|
|
|
|
|
SuccessOutput(response.Namespace, "Namespace renamed", output)
|
2021-10-16 17:20:06 +02:00
|
|
|
},
|
|
|
|
}
|