| package main |
| |
| import ( |
| "log" |
| "path/filepath" |
| |
| "github.com/adrg/xdg" |
| "github.com/spf13/cobra" |
| |
| "source.monogon.dev/metropolis/cli/metroctl/core" |
| ) |
| |
| // rootCmd represents the base command when called without any subcommands |
| var rootCmd = &cobra.Command{ |
| Use: "metroctl", |
| Short: "metroctl controls Metropolis nodes and clusters.", |
| } |
| |
| type metroctlFlags struct { |
| // clusterEndpoints is a list of the targeted cluster's endpoints, used by |
| // commands that perform RPC on it. |
| clusterEndpoints []string |
| // proxyAddr is a SOCKS5 proxy address the cluster will be accessed through. |
| proxyAddr string |
| // configPath overrides the default XDG config path |
| configPath string |
| // verbose, if set, will make this utility log additional runtime |
| // information. |
| verbose bool |
| // format refers to how the output data, except logs, is formatted. |
| format string |
| // filter specifies a CEL filter used to narrow down the set of output |
| // objects. |
| filter string |
| // output is an optional output file path the resulting data will be saved |
| // at. If unspecified, the data will be written to stdout. |
| output string |
| } |
| |
| var flags metroctlFlags |
| |
| func init() { |
| rootCmd.PersistentFlags().StringSliceVar(&flags.clusterEndpoints, "endpoints", nil, "A list of the target cluster's endpoints.") |
| rootCmd.PersistentFlags().StringVar(&flags.proxyAddr, "proxy", "", "SOCKS5 proxy address") |
| rootCmd.PersistentFlags().StringVar(&flags.configPath, "config", filepath.Join(xdg.ConfigHome, "metroctl"), "An alternative cluster config path") |
| rootCmd.PersistentFlags().BoolVar(&flags.verbose, "verbose", false, "Log additional runtime information") |
| rootCmd.PersistentFlags().StringVarP(&flags.format, "format", "f", "plaintext", "Data output format") |
| rootCmd.PersistentFlags().StringVar(&flags.filter, "filter", "", "The object filter applied to the output data") |
| rootCmd.PersistentFlags().StringVarP(&flags.output, "output", "o", "", "Redirects output to the specified file") |
| } |
| |
| // rpcLogger passes through the cluster resolver logs, if "--verbose" flag was |
| // used. |
| func rpcLogger(f string, args ...interface{}) { |
| if flags.verbose { |
| log.Printf("resolver: "+f, args...) |
| } |
| } |
| |
| func main() { |
| cobra.CheckErr(rootCmd.Execute()) |
| } |
| |
| // connectOptions returns core.ConnectOptions as defined by the metroctl flags |
| // currently set. |
| func connectOptions() *core.ConnectOptions { |
| return &core.ConnectOptions{ |
| ProxyServer: flags.proxyAddr, |
| Endpoints: flags.clusterEndpoints, |
| ConfigPath: flags.configPath, |
| } |
| } |