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 | "fmt" |
David K. Bainbridge | 1d94644 | 2021-03-19 16:45:52 +0000 | [diff] [blame] | 20 | |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 21 | flags "github.com/jessevdk/go-flags" |
David K. Bainbridge | 1d94644 | 2021-03-19 16:45:52 +0000 | [diff] [blame] | 22 | yaml "gopkg.in/yaml.v2" |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 23 | ) |
| 24 | |
David K. Bainbridge | 1d94644 | 2021-03-19 16:45:52 +0000 | [diff] [blame] | 25 | const copyrightNotice = `# Copyright 2021-present Ciena Corporation |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 26 | # |
| 27 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 28 | # you may not use this file except in compliance with the License. |
| 29 | # You may obtain a copy of the License at |
| 30 | # |
| 31 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 32 | # |
| 33 | # Unless required by applicable law or agreed to in writing, software |
| 34 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 35 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 36 | # See the License for the specific language governing permissions and |
David K. Bainbridge | 1d94644 | 2021-03-19 16:45:52 +0000 | [diff] [blame] | 37 | # limitations under the License.` |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 38 | |
| 39 | type ConfigOptions struct { |
| 40 | } |
| 41 | |
| 42 | func RegisterConfigCommands(parent *flags.Parser) { |
David Bainbridge | a672234 | 2019-10-24 23:55:53 +0000 | [diff] [blame] | 43 | if command, err := parent.AddCommand("config", "generate voltctl configuration", "Commands to generate voltctl configuration", &ConfigOptions{}); err != nil { |
| 44 | Error.Fatalf("Unexpected error while attempting to register config commands : %s", err) |
| 45 | } else { |
| 46 | command.SubcommandsOptional = true |
David Bainbridge | 12f036f | 2019-10-15 22:09:04 +0000 | [diff] [blame] | 47 | } |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | func (options *ConfigOptions) Execute(args []string) error { |
David K. Bainbridge | 9189c63 | 2021-03-26 21:52:21 +0000 | [diff] [blame] | 51 | ReadConfig() |
| 52 | ApplyOptionOverrides(nil) |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 53 | b, err := yaml.Marshal(GlobalConfig) |
| 54 | if err != nil { |
| 55 | return err |
| 56 | } |
| 57 | fmt.Println(copyrightNotice) |
| 58 | fmt.Println(string(b)) |
| 59 | return nil |
| 60 | } |