-
Notifications
You must be signed in to change notification settings - Fork 20
/
config_list.go
69 lines (53 loc) · 1.28 KB
/
config_list.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
61
62
63
64
65
66
67
68
69
package cmd
import (
"fmt"
"os"
"strings"
"github.com/exoscale/cli/table"
"github.com/spf13/cobra"
)
type configListItemOutput struct {
Name string `json:"name"`
Default bool `json:"default"`
}
type configListOutput []configListItemOutput
func (o *configListOutput) toJSON() { outputJSON(o) }
func (o *configListOutput) toText() { outputText(o) }
func (o *configListOutput) toTable() {
t := table.NewTable(os.Stdout)
t.SetHeader([]string{"Accounts"})
for _, i := range *o {
a := i.Name
if i.Default {
a += "*"
}
t.Append([]string{a})
}
t.Render()
}
func init() {
configCmd.AddCommand(&cobra.Command{
Use: "list",
Short: "List available accounts",
Long: fmt.Sprintf(`This command lists configured Exoscale accounts. The default account is marked with (*).
Supported output template annotations: %s`,
strings.Join(outputterTemplateAnnotations(&configListOutput{}), ", ")),
Aliases: gListAlias,
RunE: func(cmd *cobra.Command, args []string) error {
return output(listConfigs(), nil)
},
})
}
func listConfigs() outputter {
out := configListOutput{}
if gAllAccount == nil {
return &out
}
for _, a := range gAllAccount.Accounts {
out = append(out, configListItemOutput{
Name: a.Name,
Default: a.IsDefault(),
})
}
return &out
}