Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2019-present Ciena Corporation |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | package commands |
| 17 | |
| 18 | import ( |
| 19 | "encoding/json" |
| 20 | "fmt" |
Scott Baker | 2b0ad65 | 2019-08-21 14:57:07 -0700 | [diff] [blame] | 21 | "github.com/opencord/voltctl/pkg/filter" |
| 22 | "github.com/opencord/voltctl/pkg/format" |
| 23 | "github.com/opencord/voltctl/pkg/order" |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 24 | "google.golang.org/grpc" |
| 25 | "gopkg.in/yaml.v2" |
| 26 | "io/ioutil" |
| 27 | "log" |
| 28 | "os" |
| 29 | "path/filepath" |
| 30 | "strings" |
| 31 | "time" |
| 32 | ) |
| 33 | |
| 34 | type OutputType uint8 |
| 35 | |
| 36 | const ( |
| 37 | OUTPUT_TABLE OutputType = iota |
| 38 | OUTPUT_JSON |
| 39 | OUTPUT_YAML |
| 40 | ) |
| 41 | |
| 42 | type GrpcConfigSpec struct { |
| 43 | Timeout time.Duration `yaml:"timeout"` |
| 44 | } |
| 45 | |
| 46 | type TlsConfigSpec struct { |
| 47 | UseTls bool `yaml:"useTls"` |
| 48 | CACert string `yaml:"caCert"` |
| 49 | Cert string `yaml:"cert"` |
| 50 | Key string `yaml:"key"` |
| 51 | Verify string `yaml:"verify"` |
| 52 | } |
| 53 | |
| 54 | type GlobalConfigSpec struct { |
| 55 | ApiVersion string `yaml:"apiVersion"` |
| 56 | Server string `yaml:"server"` |
Scott Baker | ed4efab | 2020-01-13 19:12:25 -0800 | [diff] [blame] | 57 | Kafka string `yaml:"kafka"` |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 58 | Tls TlsConfigSpec `yaml:"tls"` |
| 59 | Grpc GrpcConfigSpec `yaml:"grpc"` |
| 60 | K8sConfig string `yaml:"-"` |
| 61 | } |
| 62 | |
| 63 | var ( |
| 64 | ParamNames = map[string]map[string]string{ |
| 65 | "v1": { |
| 66 | "ID": "voltha.ID", |
| 67 | }, |
| 68 | "v2": { |
| 69 | "ID": "common.ID", |
| 70 | }, |
| 71 | } |
| 72 | |
| 73 | CharReplacer = strings.NewReplacer("\\t", "\t", "\\n", "\n") |
| 74 | |
| 75 | GlobalConfig = GlobalConfigSpec{ |
David Bainbridge | c4029aa | 2019-09-26 18:56:39 +0000 | [diff] [blame] | 76 | ApiVersion: "v2", |
David Bainbridge | 0f758d4 | 2019-10-26 05:17:48 +0000 | [diff] [blame] | 77 | Server: "localhost:55555", |
Scott Baker | ed4efab | 2020-01-13 19:12:25 -0800 | [diff] [blame] | 78 | Kafka: "", |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 79 | Tls: TlsConfigSpec{ |
| 80 | UseTls: false, |
| 81 | }, |
| 82 | Grpc: GrpcConfigSpec{ |
| 83 | Timeout: time.Second * 10, |
| 84 | }, |
| 85 | } |
| 86 | |
David Bainbridge | a672234 | 2019-10-24 23:55:53 +0000 | [diff] [blame] | 87 | GlobalCommandOptions = make(map[string]map[string]string) |
| 88 | |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 89 | GlobalOptions struct { |
David Bainbridge | c4029aa | 2019-09-26 18:56:39 +0000 | [diff] [blame] | 90 | Config string `short:"c" long:"config" env:"VOLTCONFIG" value-name:"FILE" default:"" description:"Location of client config file"` |
| 91 | Server string `short:"s" long:"server" default:"" value-name:"SERVER:PORT" description:"IP/Host and port of VOLTHA"` |
Scott Baker | ed4efab | 2020-01-13 19:12:25 -0800 | [diff] [blame] | 92 | Kafka string `short:"k" long:"kafka" default:"" value-name:"SERVER:PORT" description:"IP/Host and port of Kafka"` |
David Bainbridge | c4029aa | 2019-09-26 18:56:39 +0000 | [diff] [blame] | 93 | // Do not set the default for the API version here, else it will override the value read in the config |
David Bainbridge | a672234 | 2019-10-24 23:55:53 +0000 | [diff] [blame] | 94 | ApiVersion string `short:"a" long:"apiversion" description:"API version" value-name:"VERSION" choice:"v1" choice:"v2"` |
| 95 | Debug bool `short:"d" long:"debug" description:"Enable debug mode"` |
| 96 | UseTLS bool `long:"tls" description:"Use TLS"` |
| 97 | CACert string `long:"tlscacert" value-name:"CA_CERT_FILE" description:"Trust certs signed only by this CA"` |
| 98 | Cert string `long:"tlscert" value-name:"CERT_FILE" description:"Path to TLS vertificate file"` |
| 99 | Key string `long:"tlskey" value-name:"KEY_FILE" description:"Path to TLS key file"` |
| 100 | Verify bool `long:"tlsverify" description:"Use TLS and verify the remote"` |
| 101 | K8sConfig string `short:"8" long:"k8sconfig" env:"KUBECONFIG" value-name:"FILE" default:"" description:"Location of Kubernetes config file"` |
| 102 | CommandOptions string `short:"o" long:"command-options" env:"VOLTCTL_COMMAND_OPTIONS" value-name:"FILE" default:"" description:"Location of command options default configuration file"` |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 103 | } |
David Bainbridge | a672234 | 2019-10-24 23:55:53 +0000 | [diff] [blame] | 104 | |
| 105 | Debug = log.New(os.Stdout, "DEBUG: ", 0) |
| 106 | Info = log.New(os.Stdout, "INFO: ", 0) |
| 107 | Warn = log.New(os.Stderr, "WARN: ", 0) |
| 108 | Error = log.New(os.Stderr, "ERROR: ", 0) |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 109 | ) |
| 110 | |
| 111 | type OutputOptions struct { |
| 112 | Format string `long:"format" value-name:"FORMAT" default:"" description:"Format to use to output structured data"` |
| 113 | Quiet bool `short:"q" long:"quiet" description:"Output only the IDs of the objects"` |
| 114 | OutputAs string `short:"o" long:"outputas" default:"table" choice:"table" choice:"json" choice:"yaml" description:"Type of output to generate"` |
| 115 | NameLimit int `short:"l" long:"namelimit" default:"-1" value-name:"LIMIT" description:"Limit the depth (length) in the table column name"` |
| 116 | } |
| 117 | |
| 118 | type ListOutputOptions struct { |
| 119 | OutputOptions |
| 120 | Filter string `short:"f" long:"filter" default:"" value-name:"FILTER" description:"Only display results that match filter"` |
| 121 | OrderBy string `short:"r" long:"orderby" default:"" value-name:"ORDER" description:"Specify the sort order of the results"` |
| 122 | } |
| 123 | |
| 124 | type OutputOptionsJson struct { |
| 125 | Format string `long:"format" value-name:"FORMAT" default:"" description:"Format to use to output structured data"` |
| 126 | Quiet bool `short:"q" long:"quiet" description:"Output only the IDs of the objects"` |
| 127 | OutputAs string `short:"o" long:"outputas" default:"json" choice:"table" choice:"json" choice:"yaml" description:"Type of output to generate"` |
| 128 | NameLimit int `short:"l" long:"namelimit" default:"-1" value-name:"LIMIT" description:"Limit the depth (length) in the table column name"` |
| 129 | } |
| 130 | |
| 131 | type ListOutputOptionsJson struct { |
| 132 | OutputOptionsJson |
| 133 | Filter string `short:"f" long:"filter" default:"" value-name:"FILTER" description:"Only display results that match filter"` |
| 134 | OrderBy string `short:"r" long:"orderby" default:"" value-name:"ORDER" description:"Specify the sort order of the results"` |
| 135 | } |
| 136 | |
| 137 | func toOutputType(in string) OutputType { |
| 138 | switch in { |
| 139 | case "table": |
| 140 | fallthrough |
| 141 | default: |
| 142 | return OUTPUT_TABLE |
| 143 | case "json": |
| 144 | return OUTPUT_JSON |
| 145 | case "yaml": |
| 146 | return OUTPUT_YAML |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | type CommandResult struct { |
| 151 | Format format.Format |
| 152 | Filter string |
| 153 | OrderBy string |
| 154 | OutputAs OutputType |
| 155 | NameLimit int |
| 156 | Data interface{} |
| 157 | } |
| 158 | |
David Bainbridge | a672234 | 2019-10-24 23:55:53 +0000 | [diff] [blame] | 159 | func GetCommandOptionWithDefault(name, option, defaultValue string) string { |
| 160 | if cmd, ok := GlobalCommandOptions[name]; ok { |
| 161 | if val, ok := cmd[option]; ok { |
| 162 | return CharReplacer.Replace(val) |
| 163 | } |
| 164 | } |
| 165 | return defaultValue |
| 166 | } |
| 167 | |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 168 | func ProcessGlobalOptions() { |
| 169 | if len(GlobalOptions.Config) == 0 { |
| 170 | home, err := os.UserHomeDir() |
| 171 | if err != nil { |
David Bainbridge | a672234 | 2019-10-24 23:55:53 +0000 | [diff] [blame] | 172 | Warn.Printf("Unable to discover the user's home directory: %s", err) |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 173 | home = "~" |
| 174 | } |
| 175 | GlobalOptions.Config = filepath.Join(home, ".volt", "config") |
| 176 | } |
| 177 | |
David Bainbridge | a672234 | 2019-10-24 23:55:53 +0000 | [diff] [blame] | 178 | if info, err := os.Stat(GlobalOptions.Config); err == nil && !info.IsDir() { |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 179 | configFile, err := ioutil.ReadFile(GlobalOptions.Config) |
| 180 | if err != nil { |
David Bainbridge | a672234 | 2019-10-24 23:55:53 +0000 | [diff] [blame] | 181 | Error.Fatalf("Unable to read the configuration file '%s': %s", |
| 182 | GlobalOptions.Config, err.Error()) |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 183 | } |
David Bainbridge | a672234 | 2019-10-24 23:55:53 +0000 | [diff] [blame] | 184 | if err = yaml.Unmarshal(configFile, &GlobalConfig); err != nil { |
| 185 | Error.Fatalf("Unable to parse the configuration file '%s': %s", |
| 186 | GlobalOptions.Config, err.Error()) |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 187 | } |
| 188 | } |
| 189 | |
| 190 | // Override from command line |
| 191 | if GlobalOptions.Server != "" { |
| 192 | GlobalConfig.Server = GlobalOptions.Server |
| 193 | } |
Scott Baker | ed4efab | 2020-01-13 19:12:25 -0800 | [diff] [blame] | 194 | if GlobalOptions.Kafka != "" { |
| 195 | GlobalConfig.Kafka = GlobalOptions.Kafka |
| 196 | } |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 197 | if GlobalOptions.ApiVersion != "" { |
| 198 | GlobalConfig.ApiVersion = GlobalOptions.ApiVersion |
| 199 | } |
| 200 | |
| 201 | // If a k8s cert/key were not specified, then attempt to read it from |
| 202 | // any $HOME/.kube/config if it exists |
| 203 | if len(GlobalOptions.K8sConfig) == 0 { |
| 204 | home, err := os.UserHomeDir() |
| 205 | if err != nil { |
David Bainbridge | a672234 | 2019-10-24 23:55:53 +0000 | [diff] [blame] | 206 | Warn.Printf("Unable to discover the user's home directory: %s", err) |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 207 | home = "~" |
| 208 | } |
| 209 | GlobalOptions.K8sConfig = filepath.Join(home, ".kube", "config") |
| 210 | } |
David Bainbridge | a672234 | 2019-10-24 23:55:53 +0000 | [diff] [blame] | 211 | |
| 212 | if len(GlobalOptions.CommandOptions) == 0 { |
| 213 | home, err := os.UserHomeDir() |
| 214 | if err != nil { |
| 215 | Warn.Printf("Unable to discover the user's home directory: %s", err) |
| 216 | home = "~" |
| 217 | } |
| 218 | GlobalOptions.CommandOptions = filepath.Join(home, ".volt", "command_options") |
| 219 | } |
| 220 | |
| 221 | if info, err := os.Stat(GlobalOptions.CommandOptions); err == nil && !info.IsDir() { |
| 222 | optionsFile, err := ioutil.ReadFile(GlobalOptions.CommandOptions) |
| 223 | if err != nil { |
| 224 | Error.Fatalf("Unable to read command options configuration file '%s' : %s", |
| 225 | GlobalOptions.CommandOptions, err.Error()) |
| 226 | } |
| 227 | if err = yaml.Unmarshal(optionsFile, &GlobalCommandOptions); err != nil { |
| 228 | Error.Fatalf("Unable to parse the command line options configuration file '%s': %s", |
| 229 | GlobalOptions.CommandOptions, err.Error()) |
| 230 | } |
| 231 | } |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | func NewConnection() (*grpc.ClientConn, error) { |
| 235 | ProcessGlobalOptions() |
| 236 | return grpc.Dial(GlobalConfig.Server, grpc.WithInsecure()) |
| 237 | } |
| 238 | |
| 239 | func GenerateOutput(result *CommandResult) { |
| 240 | if result != nil && result.Data != nil { |
| 241 | data := result.Data |
| 242 | if result.Filter != "" { |
| 243 | f, err := filter.Parse(result.Filter) |
| 244 | if err != nil { |
David Bainbridge | 0f758d4 | 2019-10-26 05:17:48 +0000 | [diff] [blame] | 245 | Error.Fatalf("Unable to parse specified output filter '%s': %s", result.Filter, err.Error()) |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 246 | } |
| 247 | data, err = f.Process(data) |
| 248 | if err != nil { |
David Bainbridge | 0f758d4 | 2019-10-26 05:17:48 +0000 | [diff] [blame] | 249 | Error.Fatalf("Unexpected error while filtering command results: %s", err.Error()) |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 250 | } |
| 251 | } |
| 252 | if result.OrderBy != "" { |
| 253 | s, err := order.Parse(result.OrderBy) |
| 254 | if err != nil { |
David Bainbridge | 0f758d4 | 2019-10-26 05:17:48 +0000 | [diff] [blame] | 255 | Error.Fatalf("Unable to parse specified sort specification '%s': %s", result.OrderBy, err.Error()) |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 256 | } |
| 257 | data, err = s.Process(data) |
| 258 | if err != nil { |
David Bainbridge | 0f758d4 | 2019-10-26 05:17:48 +0000 | [diff] [blame] | 259 | Error.Fatalf("Unexpected error while sorting command result: %s", err.Error()) |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 260 | } |
| 261 | } |
| 262 | if result.OutputAs == OUTPUT_TABLE { |
| 263 | tableFormat := format.Format(result.Format) |
David Bainbridge | 12f036f | 2019-10-15 22:09:04 +0000 | [diff] [blame] | 264 | if err := tableFormat.Execute(os.Stdout, true, result.NameLimit, data); err != nil { |
David Bainbridge | 0f758d4 | 2019-10-26 05:17:48 +0000 | [diff] [blame] | 265 | Error.Fatalf("Unexpected error while attempting to format results as table : %s", err.Error()) |
David Bainbridge | 12f036f | 2019-10-15 22:09:04 +0000 | [diff] [blame] | 266 | } |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 267 | } else if result.OutputAs == OUTPUT_JSON { |
| 268 | asJson, err := json.Marshal(&data) |
| 269 | if err != nil { |
David Bainbridge | 0f758d4 | 2019-10-26 05:17:48 +0000 | [diff] [blame] | 270 | Error.Fatalf("Unexpected error while processing command results to JSON: %s", err.Error()) |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 271 | } |
| 272 | fmt.Printf("%s", asJson) |
| 273 | } else if result.OutputAs == OUTPUT_YAML { |
| 274 | asYaml, err := yaml.Marshal(&data) |
| 275 | if err != nil { |
David Bainbridge | 0f758d4 | 2019-10-26 05:17:48 +0000 | [diff] [blame] | 276 | Error.Fatalf("Unexpected error while processing command results to YAML: %s", err.Error()) |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 277 | } |
| 278 | fmt.Printf("%s", asYaml) |
| 279 | } |
| 280 | } |
| 281 | } |