-
Notifications
You must be signed in to change notification settings - Fork 20
/
eip_show.go
138 lines (117 loc) · 4 KB
/
eip_show.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
package cmd
import (
"fmt"
"os"
"strings"
"github.com/exoscale/cli/pkg/globalstate"
"github.com/exoscale/cli/pkg/output"
"github.com/exoscale/cli/table"
"github.com/exoscale/egoscale"
"github.com/spf13/cobra"
)
type eipHealthcheckShowOutput struct {
Mode string `json:"mode,omitempty"`
Path string `json:"path,omitempty"`
Port int64 `json:"port,omitempty"`
Interval int64 `json:"interval,omitempty"`
Timeout int64 `json:"timeout,omitempty"`
StrikesOk int64 `json:"strikes_ok,omitempty"`
StrikesFail int64 `json:"strikes_fail,omitempty"`
TLSSkipVerify bool `json:"tls_skip_verify"`
TLSSNI string `json:"tls_sni,omitempty"`
}
type eipShowOutput struct {
ID string `json:"id"`
Zone string `json:"zone"`
IPAddress string `json:"ip_address"`
Description string `json:"description"`
Healthcheck *eipHealthcheckShowOutput `json:"healthcheck"`
Instances []string `json:"instances"`
}
func (o *eipShowOutput) ToJSON() { output.JSON(o) }
func (o *eipShowOutput) ToText() { output.Text(o) }
func (o *eipShowOutput) ToTable() {
t := table.NewTable(os.Stdout)
t.SetHeader([]string{"Elastic IP"})
t.Append([]string{"ID", o.ID})
t.Append([]string{"Zone", o.Zone})
t.Append([]string{"IP Address", o.IPAddress})
t.Append([]string{"Description", o.Description})
if o.Healthcheck != nil {
t.Append([]string{"Healthcheck Mode", o.Healthcheck.Mode})
t.Append([]string{"Healthcheck Port", fmt.Sprint(o.Healthcheck.Port)})
if strings.HasPrefix(o.Healthcheck.Mode, "http") {
t.Append([]string{"Healthcheck Path", o.Healthcheck.Path})
}
t.Append([]string{"Healthcheck Interval", fmt.Sprint(o.Healthcheck.Interval)})
t.Append([]string{"Healthcheck Timeout", fmt.Sprint(o.Healthcheck.Timeout)})
t.Append([]string{"Healthcheck Strikes OK", fmt.Sprint(o.Healthcheck.StrikesOk)})
t.Append([]string{"Healthcheck Strikes Fail", fmt.Sprint(o.Healthcheck.StrikesFail)})
if o.Healthcheck.Mode == "https" {
t.Append([]string{"Healthcheck TLS Skip Verification", fmt.Sprintf("%t", o.Healthcheck.TLSSkipVerify)})
t.Append([]string{"Healthcheck TLS SNI", fmt.Sprint(o.Healthcheck.TLSSNI)})
}
}
if len(o.Instances) > 0 {
t.Append([]string{"Instances", strings.Join(o.Instances, "\n")})
}
t.Render()
}
func init() {
eipCmd.AddCommand(&cobra.Command{
Use: "show IP-ADDRESS|ID",
Short: "Show an Elastic IP details",
Long: fmt.Sprintf(`This command shows an Elastic IP details.
Supported output template annotations: %s`,
strings.Join(output.TemplateAnnotations(&eipShowOutput{}), ", ")),
Aliases: gShowAlias,
RunE: func(cmd *cobra.Command, args []string) error {
if len(args) < 1 {
return cmd.Usage()
}
return printOutput(showEIP(args[0]))
},
})
}
func showEIP(v string) (output.Outputter, error) {
eip, err := getElasticIPByAddressOrID(v)
if err != nil {
return nil, err
}
out := eipShowOutput{
ID: eip.ID.String(),
Zone: eip.ZoneName,
Description: eip.Description,
IPAddress: eip.IPAddress.String(),
}
if eip.Healthcheck != nil {
out.Healthcheck = &eipHealthcheckShowOutput{
Mode: eip.Healthcheck.Mode,
Path: eip.Healthcheck.Path,
Port: eip.Healthcheck.Port,
Interval: eip.Healthcheck.Interval,
Timeout: eip.Healthcheck.Timeout,
StrikesOk: eip.Healthcheck.StrikesOk,
StrikesFail: eip.Healthcheck.StrikesFail,
TLSSkipVerify: eip.Healthcheck.TLSSkipVerify,
TLSSNI: eip.Healthcheck.TLSSNI,
}
}
res, err := globalstate.EgoscaleClient.ListWithContext(gContext, &egoscale.VirtualMachine{ZoneID: eip.ZoneID})
if err != nil {
return nil, err
}
for _, item := range res {
vm := item.(*egoscale.VirtualMachine)
nic := vm.DefaultNic()
if nic == nil {
continue
}
for _, sIP := range nic.SecondaryIP {
if sIP.IPAddress.Equal(eip.IPAddress) {
out.Instances = append(out.Instances, vm.Name)
}
}
}
return &out, nil
}