-
Notifications
You must be signed in to change notification settings - Fork 20
/
private_network_list.go
99 lines (76 loc) · 2.36 KB
/
private_network_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
94
95
96
97
98
99
package cmd
import (
"fmt"
"os"
"strings"
exoapi "github.com/exoscale/egoscale/v2/api"
"github.com/spf13/cobra"
)
type privateNetworkListItemOutput struct {
ID string `json:"id"`
Name string `json:"name"`
Zone string `json:"zone"`
}
type privateNetworkListOutput []privateNetworkListItemOutput
func (o *privateNetworkListOutput) toJSON() { outputJSON(o) }
func (o *privateNetworkListOutput) toText() { outputText(o) }
func (o *privateNetworkListOutput) toTable() { outputTable(o) }
type privateNetworkListCmd struct {
cliCommandSettings `cli-cmd:"-"`
_ bool `cli-cmd:"list"`
Zone string `cli-short:"z" cli-usage:"zone to filter results to"`
}
func (c *privateNetworkListCmd) cmdAliases() []string { return gListAlias }
func (c *privateNetworkListCmd) cmdShort() string { return "List Private Networks" }
func (c *privateNetworkListCmd) cmdLong() string {
return fmt.Sprintf(`This command lists Compute instance Private Networks.
Supported output template annotations: %s`,
strings.Join(outputterTemplateAnnotations(&privateNetworkListItemOutput{}), ", "))
}
func (c *privateNetworkListCmd) cmdPreRun(cmd *cobra.Command, args []string) error {
return cliCommandDefaultPreRun(c, cmd, args)
}
func (c *privateNetworkListCmd) cmdRun(_ *cobra.Command, _ []string) error {
var zones []string
if c.Zone != "" {
zones = []string{c.Zone}
} else {
zones = allZones
}
out := make(privateNetworkListOutput, 0)
res := make(chan privateNetworkListItemOutput)
done := make(chan struct{})
go func() {
for nlb := range res {
out = append(out, nlb)
}
done <- struct{}{}
}()
err := forEachZone(zones, func(zone string) error {
ctx := exoapi.WithEndpoint(gContext, exoapi.NewReqEndpoint(gCurrentAccount.Environment, zone))
list, err := cs.ListPrivateNetworks(ctx, zone)
if err != nil {
return fmt.Errorf("unable to list Private Networks in zone %s: %w", zone, err)
}
for _, p := range list {
res <- privateNetworkListItemOutput{
ID: *p.ID,
Name: *p.Name,
Zone: zone,
}
}
return nil
})
if err != nil {
_, _ = fmt.Fprintf(os.Stderr,
"warning: errors during listing, results might be incomplete.\n%s\n", err) // nolint:golint
}
close(res)
<-done
return c.outputFunc(&out, nil)
}
func init() {
cobra.CheckErr(registerCLICommand(privateNetworkCmd, &privateNetworkListCmd{
cliCommandSettings: defaultCLICmdSettings(),
}))
}