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" |
| 20 | flags "github.com/jessevdk/go-flags" |
| 21 | "gopkg.in/yaml.v2" |
| 22 | ) |
| 23 | |
| 24 | const copyrightNotice = ` |
| 25 | # Copyright 2019-present Ciena Corporation |
| 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 |
| 37 | # limitations under the License. |
| 38 | # |
| 39 | ` |
| 40 | |
David Bainbridge | a672234 | 2019-10-24 23:55:53 +0000 | [diff] [blame] | 41 | type CommandOptionsDump struct{} |
| 42 | |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 43 | type ConfigOptions struct { |
David Bainbridge | a672234 | 2019-10-24 23:55:53 +0000 | [diff] [blame] | 44 | Commands CommandOptionsDump `command:"commands"` |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 45 | } |
| 46 | |
| 47 | func RegisterConfigCommands(parent *flags.Parser) { |
David Bainbridge | a672234 | 2019-10-24 23:55:53 +0000 | [diff] [blame] | 48 | if command, err := parent.AddCommand("config", "generate voltctl configuration", "Commands to generate voltctl configuration", &ConfigOptions{}); err != nil { |
| 49 | Error.Fatalf("Unexpected error while attempting to register config commands : %s", err) |
| 50 | } else { |
| 51 | command.SubcommandsOptional = true |
David Bainbridge | 12f036f | 2019-10-15 22:09:04 +0000 | [diff] [blame] | 52 | } |
Zack Williams | e940c7a | 2019-08-21 14:25:39 -0700 | [diff] [blame] | 53 | } |
| 54 | |
| 55 | func (options *ConfigOptions) Execute(args []string) error { |
| 56 | //GlobalConfig |
| 57 | ProcessGlobalOptions() |
| 58 | b, err := yaml.Marshal(GlobalConfig) |
| 59 | if err != nil { |
| 60 | return err |
| 61 | } |
| 62 | fmt.Println(copyrightNotice) |
| 63 | fmt.Println(string(b)) |
| 64 | return nil |
| 65 | } |
David Bainbridge | a672234 | 2019-10-24 23:55:53 +0000 | [diff] [blame] | 66 | |
| 67 | func (commands *CommandOptionsDump) Execute(args []string) error { |
| 68 | ProcessGlobalOptions() |
| 69 | b, err := yaml.Marshal(GlobalCommandOptions) |
| 70 | if err != nil { |
| 71 | return err |
| 72 | } |
| 73 | fmt.Println(copyrightNotice) |
| 74 | fmt.Println(string(b)) |
| 75 | return nil |
| 76 | } |