blob: 20ef1a43aa1fd745871eac0f089db236c72fb39a [file] [log] [blame]
Zack Williamse940c7a2019-08-21 14:25:39 -07001/*
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 */
16package commands
17
18import (
19 "encoding/json"
20 "fmt"
Scott Baker2b0ad652019-08-21 14:57:07 -070021 "github.com/opencord/voltctl/pkg/filter"
22 "github.com/opencord/voltctl/pkg/format"
23 "github.com/opencord/voltctl/pkg/order"
Zack Williamse940c7a2019-08-21 14:25:39 -070024 "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
34type OutputType uint8
35
36const (
37 OUTPUT_TABLE OutputType = iota
38 OUTPUT_JSON
39 OUTPUT_YAML
40)
41
42type GrpcConfigSpec struct {
43 Timeout time.Duration `yaml:"timeout"`
44}
45
46type 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
54type GlobalConfigSpec struct {
55 ApiVersion string `yaml:"apiVersion"`
56 Server string `yaml:"server"`
Scott Bakered4efab2020-01-13 19:12:25 -080057 Kafka string `yaml:"kafka"`
Zack Williamse940c7a2019-08-21 14:25:39 -070058 Tls TlsConfigSpec `yaml:"tls"`
59 Grpc GrpcConfigSpec `yaml:"grpc"`
60 K8sConfig string `yaml:"-"`
61}
62
63var (
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 Bainbridgec4029aa2019-09-26 18:56:39 +000076 ApiVersion: "v2",
David Bainbridge0f758d42019-10-26 05:17:48 +000077 Server: "localhost:55555",
Scott Bakered4efab2020-01-13 19:12:25 -080078 Kafka: "",
Zack Williamse940c7a2019-08-21 14:25:39 -070079 Tls: TlsConfigSpec{
80 UseTls: false,
81 },
82 Grpc: GrpcConfigSpec{
83 Timeout: time.Second * 10,
84 },
85 }
86
David Bainbridgea6722342019-10-24 23:55:53 +000087 GlobalCommandOptions = make(map[string]map[string]string)
88
Zack Williamse940c7a2019-08-21 14:25:39 -070089 GlobalOptions struct {
David Bainbridgec4029aa2019-09-26 18:56:39 +000090 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 Bakered4efab2020-01-13 19:12:25 -080092 Kafka string `short:"k" long:"kafka" default:"" value-name:"SERVER:PORT" description:"IP/Host and port of Kafka"`
David Bainbridgec4029aa2019-09-26 18:56:39 +000093 // Do not set the default for the API version here, else it will override the value read in the config
David Bainbridgea6722342019-10-24 23:55:53 +000094 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 Williamse940c7a2019-08-21 14:25:39 -0700103 }
David Bainbridgea6722342019-10-24 23:55:53 +0000104
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 Williamse940c7a2019-08-21 14:25:39 -0700109)
110
111type 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
118type 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
124type 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
131type 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
137func 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
150type CommandResult struct {
151 Format format.Format
152 Filter string
153 OrderBy string
154 OutputAs OutputType
155 NameLimit int
156 Data interface{}
157}
158
David Bainbridgea6722342019-10-24 23:55:53 +0000159func 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 Williamse940c7a2019-08-21 14:25:39 -0700168func ProcessGlobalOptions() {
169 if len(GlobalOptions.Config) == 0 {
170 home, err := os.UserHomeDir()
171 if err != nil {
David Bainbridgea6722342019-10-24 23:55:53 +0000172 Warn.Printf("Unable to discover the user's home directory: %s", err)
Zack Williamse940c7a2019-08-21 14:25:39 -0700173 home = "~"
174 }
175 GlobalOptions.Config = filepath.Join(home, ".volt", "config")
176 }
177
David Bainbridgea6722342019-10-24 23:55:53 +0000178 if info, err := os.Stat(GlobalOptions.Config); err == nil && !info.IsDir() {
Zack Williamse940c7a2019-08-21 14:25:39 -0700179 configFile, err := ioutil.ReadFile(GlobalOptions.Config)
180 if err != nil {
David Bainbridgea6722342019-10-24 23:55:53 +0000181 Error.Fatalf("Unable to read the configuration file '%s': %s",
182 GlobalOptions.Config, err.Error())
Zack Williamse940c7a2019-08-21 14:25:39 -0700183 }
David Bainbridgea6722342019-10-24 23:55:53 +0000184 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 Williamse940c7a2019-08-21 14:25:39 -0700187 }
188 }
189
190 // Override from command line
191 if GlobalOptions.Server != "" {
192 GlobalConfig.Server = GlobalOptions.Server
193 }
Scott Bakered4efab2020-01-13 19:12:25 -0800194 if GlobalOptions.Kafka != "" {
195 GlobalConfig.Kafka = GlobalOptions.Kafka
196 }
Zack Williamse940c7a2019-08-21 14:25:39 -0700197 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 Bainbridgea6722342019-10-24 23:55:53 +0000206 Warn.Printf("Unable to discover the user's home directory: %s", err)
Zack Williamse940c7a2019-08-21 14:25:39 -0700207 home = "~"
208 }
209 GlobalOptions.K8sConfig = filepath.Join(home, ".kube", "config")
210 }
David Bainbridgea6722342019-10-24 23:55:53 +0000211
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 Williamse940c7a2019-08-21 14:25:39 -0700232}
233
234func NewConnection() (*grpc.ClientConn, error) {
235 ProcessGlobalOptions()
236 return grpc.Dial(GlobalConfig.Server, grpc.WithInsecure())
237}
238
239func 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 Bainbridge0f758d42019-10-26 05:17:48 +0000245 Error.Fatalf("Unable to parse specified output filter '%s': %s", result.Filter, err.Error())
Zack Williamse940c7a2019-08-21 14:25:39 -0700246 }
247 data, err = f.Process(data)
248 if err != nil {
David Bainbridge0f758d42019-10-26 05:17:48 +0000249 Error.Fatalf("Unexpected error while filtering command results: %s", err.Error())
Zack Williamse940c7a2019-08-21 14:25:39 -0700250 }
251 }
252 if result.OrderBy != "" {
253 s, err := order.Parse(result.OrderBy)
254 if err != nil {
David Bainbridge0f758d42019-10-26 05:17:48 +0000255 Error.Fatalf("Unable to parse specified sort specification '%s': %s", result.OrderBy, err.Error())
Zack Williamse940c7a2019-08-21 14:25:39 -0700256 }
257 data, err = s.Process(data)
258 if err != nil {
David Bainbridge0f758d42019-10-26 05:17:48 +0000259 Error.Fatalf("Unexpected error while sorting command result: %s", err.Error())
Zack Williamse940c7a2019-08-21 14:25:39 -0700260 }
261 }
262 if result.OutputAs == OUTPUT_TABLE {
263 tableFormat := format.Format(result.Format)
David Bainbridge12f036f2019-10-15 22:09:04 +0000264 if err := tableFormat.Execute(os.Stdout, true, result.NameLimit, data); err != nil {
David Bainbridge0f758d42019-10-26 05:17:48 +0000265 Error.Fatalf("Unexpected error while attempting to format results as table : %s", err.Error())
David Bainbridge12f036f2019-10-15 22:09:04 +0000266 }
Zack Williamse940c7a2019-08-21 14:25:39 -0700267 } else if result.OutputAs == OUTPUT_JSON {
268 asJson, err := json.Marshal(&data)
269 if err != nil {
David Bainbridge0f758d42019-10-26 05:17:48 +0000270 Error.Fatalf("Unexpected error while processing command results to JSON: %s", err.Error())
Zack Williamse940c7a2019-08-21 14:25:39 -0700271 }
272 fmt.Printf("%s", asJson)
273 } else if result.OutputAs == OUTPUT_YAML {
274 asYaml, err := yaml.Marshal(&data)
275 if err != nil {
David Bainbridge0f758d42019-10-26 05:17:48 +0000276 Error.Fatalf("Unexpected error while processing command results to YAML: %s", err.Error())
Zack Williamse940c7a2019-08-21 14:25:39 -0700277 }
278 fmt.Printf("%s", asYaml)
279 }
280 }
281}