-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathvip.go
144 lines (125 loc) · 2.96 KB
/
vip.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
139
140
141
142
143
144
package commands
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"github.com/spf13/cobra"
"github.com/nanopack/portal/core"
)
// add-vip
// remove-vip
// show-vips
// set-vips
var (
vipAddCmd = &cobra.Command{
Use: "add-vip",
Short: "Add vip",
Long: ``,
Run: vipAdd,
}
vipRemoveCmd = &cobra.Command{
Use: "remove-vip",
Short: "Remove vip",
Long: ``,
Run: vipRemove,
}
vipsShowCmd = &cobra.Command{
Use: "show-vips",
Short: "Show all vips",
Long: ``,
Run: vipsShow,
}
vipsSetCmd = &cobra.Command{
Use: "set-vips",
Short: "Set vip list",
Long: ``,
Run: vipsSet,
}
vipJsonString string
vip core.Vip
)
func init() {
vipFlags(vipAddCmd)
vipFlags(vipsSetCmd)
vipFlags(vipRemoveCmd)
}
func vipFlags(ccmd *cobra.Command) {
ccmd.Flags().StringVarP(&vipJsonString, "json", "j", "", "Json encoded data for vip(s)")
ccmd.Flags().StringVarP(&vip.Ip, "ip", "I", "", "Ip to add (ip/cidr)")
ccmd.Flags().StringVarP(&vip.Interface, "interface", "F", "", "Interface to add ip on")
ccmd.Flags().StringVarP(&vip.Alias, "alias", "A", "", "Alias for ip (used as service interface)")
}
func vipAdd(ccmd *cobra.Command, args []string) {
if vipJsonString != "" {
err := json.Unmarshal([]byte(vipJsonString), &vip)
if err != nil {
fail("Bad JSON syntax")
}
}
jsonBytes, err := json.Marshal(vip)
if err != nil {
fail("Bad values for vip")
}
res, err := rest("vips", "POST", bytes.NewBuffer(jsonBytes))
if err != nil {
fail("Could not contact portal - %s", err)
}
b, err := ioutil.ReadAll(res.Body)
if err != nil {
fail("Could not read portal's response - %s", err)
}
fmt.Print(string(b))
}
func vipRemove(ccmd *cobra.Command, args []string) {
if vipJsonString != "" {
err := json.Unmarshal([]byte(vipJsonString), &vip)
if err != nil {
fail("Bad JSON syntax")
}
}
jsonBytes, err := json.Marshal(vip)
if err != nil {
fail("Bad values for vip")
}
res, err := rest("vips", "DELETE", bytes.NewBuffer(jsonBytes))
if err != nil {
fail("Could not contact portal - %s", err)
}
b, err := ioutil.ReadAll(res.Body)
if err != nil {
fail("Could not read portal's response - %s", err)
}
fmt.Print(string(b))
}
func vipsShow(ccmd *cobra.Command, args []string) {
res, err := rest("vips", "GET", nil)
if err != nil {
fail("Could not contact portal - %s", err)
}
b, err := ioutil.ReadAll(res.Body)
if err != nil {
fail("Could not read portal's response - %s", err)
}
fmt.Print(string(b))
}
func vipsSet(ccmd *cobra.Command, args []string) {
vips := []core.Vip{}
err := json.Unmarshal([]byte(vipJsonString), &vips)
if err != nil {
fail("Bad JSON syntax")
}
jsonBytes, err := json.Marshal(vips)
if err != nil {
fail("Bad values for vip")
}
res, err := rest("vips", "PUT", bytes.NewBuffer(jsonBytes))
if err != nil {
fail("Could not contact portal - %s", err)
}
b, err := ioutil.ReadAll(res.Body)
if err != nil {
fail("Could not read portal's response - %s", err)
}
fmt.Print(string(b))
}