-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathserver.go
198 lines (169 loc) · 4.8 KB
/
server.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
package commands
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"github.com/spf13/cobra"
"github.com/nanopack/portal/core"
)
// server-add
// server-remove
// server-show
// servers-show
// servers-set
var (
serverAddCmd = &cobra.Command{
Use: "add-server",
Short: "Add server to a service",
Long: ``,
Run: serverAdd,
}
serverRemoveCmd = &cobra.Command{
Use: "remove-server",
Short: "Remove server from a service",
Long: ``,
Run: serverRemove,
}
serverShowCmd = &cobra.Command{
Use: "show-server",
Short: "Show server on a service",
Long: ``,
Run: serverShow,
}
serversShowCmd = &cobra.Command{
Use: "show-servers",
Short: "Show all servers on a service",
Long: ``,
Run: serversShow,
}
serversSetCmd = &cobra.Command{
Use: "set-servers",
Short: "Set server list on a service",
Long: ``,
Run: serversSet,
}
server core.Server
serverJsonString string
)
func init() {
serviceSimpleFlags(serverAddCmd)
serverComplexFlags(serverAddCmd)
serviceSimpleFlags(serverRemoveCmd)
serverSimpleFlags(serverRemoveCmd)
serviceSimpleFlags(serverShowCmd)
serverSimpleFlags(serverShowCmd)
serviceSimpleFlags(serversShowCmd)
serviceSimpleFlags(serversSetCmd)
serversSetCmd.Flags().StringVarP(&serverJsonString, "json", "j", "", "Json encoded data for servers")
serverAddCmd.Flags().StringVarP(&serverJsonString, "json", "j", "", "Json encoded data for servers")
}
func serverSimpleFlags(ccmd *cobra.Command) {
ccmd.Flags().StringVarP(&server.Id, "server-id", "S", "",
"Id of down-stream server")
ccmd.Flags().StringVarP(&server.Host, "server-host", "o", "",
"Host of down-stream server")
ccmd.Flags().IntVarP(&server.Port, "server-port", "p", 0,
"Port of down-stream server")
}
func serverComplexFlags(ccmd *cobra.Command) {
serverSimpleFlags(ccmd)
ccmd.Flags().StringVarP(&server.Forwarder, "server-forwarder", "f", "g", "Forwarder method [g i m]")
ccmd.Flags().IntVarP(&server.Weight, "server-weight", "w", 1, "weight of down-stream server")
ccmd.Flags().IntVarP(&server.UpperThreshold, "server-upper-threshold", "u", 0, "Upper threshold of down-stream server")
ccmd.Flags().IntVarP(&server.LowerThreshold, "server-lower-threshold", "l", 0, "Lower threshold of down-stream server")
}
func serverAdd(ccmd *cobra.Command, args []string) {
svcValidate(&service)
if serverJsonString != "" {
err := json.Unmarshal([]byte(serverJsonString), &server)
if err != nil {
fail("Bad JSON syntax")
}
}
jsonBytes, err := json.Marshal(server)
if err != nil {
fail("Bad values for server")
}
path := fmt.Sprintf("services/%s/servers", service.Id)
res, err := rest(path, "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 serverRemove(ccmd *cobra.Command, args []string) {
svcValidate(&service)
srvValidate(&server)
path := fmt.Sprintf("services/%s/servers/%s", service.Id, server.Id)
res, err := rest(path, "DELETE", 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 serverShow(ccmd *cobra.Command, args []string) {
svcValidate(&service)
srvValidate(&server)
path := fmt.Sprintf("services/%s/servers/%s", service.Id, server.Id)
res, err := rest(path, "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 serversShow(ccmd *cobra.Command, args []string) {
svcValidate(&service)
path := fmt.Sprintf("services/%s/servers", service.Id)
res, err := rest(path, "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 serversSet(ccmd *cobra.Command, args []string) {
svcValidate(&service)
var servers []core.Server
err := json.Unmarshal([]byte(serverJsonString), &servers)
if err != nil {
fail("Bad JSON syntax")
}
jsonBytes, err := json.Marshal(servers)
if err != nil {
fail("Bad values for server")
}
path := fmt.Sprintf("services/%s/servers", service.Id)
res, err := rest(path, "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))
}
func srvValidate(server *core.Server) {
if server.Id == "" {
server.GenId()
if server.Host == "" || int(server.Port) == 0 {
fail("Must enter host and port combo or id of server")
}
}
}