-
Notifications
You must be signed in to change notification settings - Fork 20
/
nlb_list.go
93 lines (72 loc) · 2.14 KB
/
nlb_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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package cmd
import (
"fmt"
"os"
"strings"
exoapi "github.com/exoscale/egoscale/v2/api"
"github.com/spf13/cobra"
)
type nlbListItemOutput struct {
ID string `json:"id"`
Name string `json:"name"`
Zone string `json:"zone"`
IPAddress string `json:"ip_address"`
}
type nlbListOutput []nlbListItemOutput
func (o *nlbListOutput) toJSON() { outputJSON(o) }
func (o *nlbListOutput) toText() { outputText(o) }
func (o *nlbListOutput) toTable() { outputTable(o) }
type nlbListCmd struct {
_ bool `cli-cmd:"list"`
Zone string `cli-short:"z" cli-usage:"zone to filter results to"`
}
func (c *nlbListCmd) cmdAliases() []string { return gListAlias }
func (c *nlbListCmd) cmdShort() string { return "List Network Load Balancers" }
func (c *nlbListCmd) cmdLong() string {
return fmt.Sprintf(`This command lists Network Load Balancers.
Supported output template annotations: %s`,
strings.Join(outputterTemplateAnnotations(&nlbListItemOutput{}), ", "))
}
func (c *nlbListCmd) cmdPreRun(cmd *cobra.Command, args []string) error {
return cliCommandDefaultPreRun(c, cmd, args)
}
func (c *nlbListCmd) cmdRun(_ *cobra.Command, _ []string) error {
var zones []string
if c.Zone != "" {
zones = []string{c.Zone}
} else {
zones = allZones
}
ctx := exoapi.WithEndpoint(gContext, exoapi.NewReqEndpoint(gCurrentAccount.Environment, c.Zone))
out := make(nlbListOutput, 0)
res := make(chan nlbListItemOutput)
defer close(res)
go func() {
for nlb := range res {
out = append(out, nlb)
}
}()
err := forEachZone(zones, func(zone string) error {
list, err := cs.ListNetworkLoadBalancers(ctx, zone)
if err != nil {
return fmt.Errorf("unable to list Network Load Balancers in zone %s: %v", zone, err)
}
for _, nlb := range list {
res <- nlbListItemOutput{
ID: *nlb.ID,
Name: *nlb.Name,
Zone: zone,
IPAddress: nlb.IPAddress.String(),
}
}
return nil
})
if err != nil {
_, _ = fmt.Fprintf(os.Stderr,
"warning: errors during listing, results might be incomplete.\n%s\n", err) // nolint:golint
}
return output(&out, nil)
}
func init() {
cobra.CheckErr(registerCLICommand(nlbCmd, &nlbListCmd{}))
}