mirror of
https://github.com/openziti/zrok.git
synced 2025-01-24 23:09:32 +01:00
47 lines
910 B
Go
47 lines
910 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/openziti/zrok/zrokdir"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
configCmd.AddCommand(newConfigGetCommand().cmd)
|
|
}
|
|
|
|
type configGetCommand struct {
|
|
cmd *cobra.Command
|
|
}
|
|
|
|
func newConfigGetCommand() *configGetCommand {
|
|
cmd := &cobra.Command{
|
|
Use: "get <configName>",
|
|
Short: "Get a value from the environment config",
|
|
Args: cobra.ExactArgs(1),
|
|
}
|
|
command := &configGetCommand{cmd: cmd}
|
|
cmd.Run = command.run
|
|
return command
|
|
}
|
|
|
|
func (cmd *configGetCommand) run(_ *cobra.Command, args []string) {
|
|
configName := args[0]
|
|
|
|
zrd, err := zrokdir.Load()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
switch configName {
|
|
case "apiEndpoint":
|
|
if zrd.Cfg != nil && zrd.Cfg.ApiEndpoint != "" {
|
|
fmt.Printf("apiEndpoint = %v\n", zrd.Cfg.ApiEndpoint)
|
|
} else {
|
|
fmt.Println("apiEndpoint = <unset>")
|
|
}
|
|
default:
|
|
fmt.Printf("unknown config name '%v'\n", configName)
|
|
}
|
|
}
|