2020-06-21 12:33:43 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2021-02-21 01:30:03 +01:00
|
|
|
"fmt"
|
2020-06-21 12:33:43 +02:00
|
|
|
"log"
|
2021-02-20 23:57:06 +01:00
|
|
|
"os"
|
2021-04-23 03:10:50 +02:00
|
|
|
"strings"
|
2020-06-21 12:33:43 +02:00
|
|
|
|
2021-04-28 16:15:45 +02:00
|
|
|
"github.com/juanfont/headscale/cmd/headscale/cli"
|
2021-02-21 01:30:03 +01:00
|
|
|
"github.com/spf13/cobra"
|
2020-06-21 12:33:43 +02:00
|
|
|
)
|
|
|
|
|
2021-04-25 16:21:04 +02:00
|
|
|
var version = "dev"
|
2021-02-21 01:30:03 +01:00
|
|
|
|
|
|
|
var versionCmd = &cobra.Command{
|
|
|
|
Use: "version",
|
|
|
|
Short: "Print the version.",
|
|
|
|
Long: "The version of headscale.",
|
|
|
|
Run: func(cmd *cobra.Command, args []string) {
|
2021-05-08 13:28:22 +02:00
|
|
|
o, _ := cmd.Flags().GetString("output")
|
2021-05-08 17:06:36 +02:00
|
|
|
if strings.HasPrefix(o, "json") {
|
|
|
|
cli.JsonOutput(map[string]string{"version": version}, nil, o)
|
|
|
|
return
|
2021-05-08 13:28:22 +02:00
|
|
|
}
|
2021-05-08 17:06:36 +02:00
|
|
|
fmt.Println(version)
|
2021-02-21 01:30:03 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
var headscaleCmd = &cobra.Command{
|
|
|
|
Use: "headscale",
|
|
|
|
Short: "headscale - a Tailscale control server",
|
2021-04-24 17:41:29 +02:00
|
|
|
Long: `
|
2021-02-21 01:30:03 +01:00
|
|
|
headscale is an open source implementation of the Tailscale control server
|
|
|
|
|
|
|
|
Juan Font Alonso <juanfontalonso@gmail.com> - 2021
|
2021-04-24 17:41:29 +02:00
|
|
|
https://gitlab.com/juanfont/headscale`,
|
2021-02-21 01:30:03 +01:00
|
|
|
}
|
|
|
|
|
2021-04-25 17:24:42 +02:00
|
|
|
func main() {
|
2021-06-05 11:13:28 +02:00
|
|
|
err := cli.LoadConfig("")
|
2021-04-27 02:30:06 +02:00
|
|
|
if err != nil {
|
|
|
|
log.Fatalf(err.Error())
|
|
|
|
}
|
2021-04-24 04:54:15 +02:00
|
|
|
|
2021-04-28 16:15:45 +02:00
|
|
|
headscaleCmd.AddCommand(cli.NamespaceCmd)
|
|
|
|
headscaleCmd.AddCommand(cli.NodeCmd)
|
2021-04-30 00:23:26 +02:00
|
|
|
headscaleCmd.AddCommand(cli.PreauthkeysCmd)
|
|
|
|
headscaleCmd.AddCommand(cli.RoutesCmd)
|
|
|
|
headscaleCmd.AddCommand(cli.ServeCmd)
|
|
|
|
headscaleCmd.AddCommand(versionCmd)
|
|
|
|
|
|
|
|
cli.NodeCmd.PersistentFlags().StringP("namespace", "n", "", "Namespace")
|
2021-04-30 09:55:39 +02:00
|
|
|
err = cli.NodeCmd.MarkPersistentFlagRequired("namespace")
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf(err.Error())
|
|
|
|
}
|
2021-04-30 00:23:26 +02:00
|
|
|
|
|
|
|
cli.PreauthkeysCmd.PersistentFlags().StringP("namespace", "n", "", "Namespace")
|
2021-04-30 09:55:39 +02:00
|
|
|
err = cli.PreauthkeysCmd.MarkPersistentFlagRequired("namespace")
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf(err.Error())
|
|
|
|
}
|
2021-04-30 00:23:26 +02:00
|
|
|
|
|
|
|
cli.RoutesCmd.PersistentFlags().StringP("namespace", "n", "", "Namespace")
|
2021-04-30 09:55:39 +02:00
|
|
|
err = cli.RoutesCmd.MarkPersistentFlagRequired("namespace")
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf(err.Error())
|
|
|
|
}
|
2021-04-23 00:25:01 +02:00
|
|
|
|
2021-04-28 16:15:45 +02:00
|
|
|
cli.NamespaceCmd.AddCommand(cli.CreateNamespaceCmd)
|
|
|
|
cli.NamespaceCmd.AddCommand(cli.ListNamespacesCmd)
|
2021-05-09 17:12:05 +02:00
|
|
|
cli.NamespaceCmd.AddCommand(cli.DestroyNamespaceCmd)
|
2021-02-21 01:30:03 +01:00
|
|
|
|
2021-05-01 20:05:10 +02:00
|
|
|
cli.NodeCmd.AddCommand(cli.ListNodesCmd)
|
|
|
|
cli.NodeCmd.AddCommand(cli.RegisterCmd)
|
|
|
|
|
2021-04-30 00:23:26 +02:00
|
|
|
cli.RoutesCmd.AddCommand(cli.ListRoutesCmd)
|
|
|
|
cli.RoutesCmd.AddCommand(cli.EnableRouteCmd)
|
2021-03-14 11:38:42 +01:00
|
|
|
|
2021-04-28 16:15:45 +02:00
|
|
|
cli.PreauthkeysCmd.AddCommand(cli.ListPreAuthKeys)
|
|
|
|
cli.PreauthkeysCmd.AddCommand(cli.CreatePreAuthKeyCmd)
|
2021-04-30 00:23:26 +02:00
|
|
|
|
2021-04-28 16:15:45 +02:00
|
|
|
cli.CreatePreAuthKeyCmd.PersistentFlags().Bool("reusable", false, "Make the preauthkey reusable")
|
2021-05-23 02:15:29 +02:00
|
|
|
cli.CreatePreAuthKeyCmd.PersistentFlags().Bool("ephemeral", false, "Preauthkey for ephemeral nodes")
|
2021-04-28 16:15:45 +02:00
|
|
|
cli.CreatePreAuthKeyCmd.Flags().StringP("expiration", "e", "", "Human-readable expiration of the key (30m, 24h, 365d...)")
|
2021-04-23 00:25:01 +02:00
|
|
|
|
2021-05-08 13:28:22 +02:00
|
|
|
headscaleCmd.PersistentFlags().StringP("output", "o", "", "Output format. Empty for human-readable, 'json' or 'json-line'")
|
|
|
|
|
2021-02-21 01:30:03 +01:00
|
|
|
if err := headscaleCmd.Execute(); err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(-1)
|
|
|
|
}
|
|
|
|
}
|