-
Notifications
You must be signed in to change notification settings - Fork 0
/
version.go
60 lines (50 loc) · 1.31 KB
/
version.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package cmd
import (
"github.com/davidalpert/go-contentstack/internal/version"
"github.com/davidalpert/go-printers/v1"
"github.com/spf13/cobra"
)
type VersionOptions struct {
*printers.PrinterOptions
VersionDetails *version.DetailStruct
}
func NewVersionOptions(s printers.IOStreams) *VersionOptions {
return &VersionOptions{
PrinterOptions: printers.NewPrinterOptions().WithStreams(s).WithDefaultOutput("text"),
VersionDetails: &version.Detail,
}
}
func NewCmdVersion(s printers.IOStreams) *cobra.Command {
o := NewVersionOptions(s)
var cmd = &cobra.Command{
Use: "version",
Short: "show version information",
Args: cobra.NoArgs,
RunE: func(cmd *cobra.Command, args []string) error {
if err := o.Complete(cmd, args); err != nil {
return err
}
if err := o.Validate(); err != nil {
return err
}
return o.Run()
},
}
o.AddPrinterFlags(cmd.Flags())
return cmd
}
// Complete the options
func (o *VersionOptions) Complete(cmd *cobra.Command, args []string) error {
return nil
}
// Validate the options
func (o *VersionOptions) Validate() error {
return o.PrinterOptions.Validate()
}
// Run the command
func (o *VersionOptions) Run() error {
if o.FormatCategory() == "table" || o.FormatCategory() == "csv" {
o.WithDefaultOutput("json")
}
return o.WriteOutput(o.VersionDetails)
}