-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcommands.go
217 lines (192 loc) · 5.43 KB
/
commands.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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
// commands is where all cli logic is, including starting portal as a server.
package commands
import (
"crypto/tls"
"fmt"
"io"
"net/http"
"os"
"os/signal"
"strings"
"syscall"
"github.com/jcelliott/lumber"
"github.com/spf13/cobra"
"github.com/nanopack/portal/api"
"github.com/nanopack/portal/balance"
"github.com/nanopack/portal/cluster"
"github.com/nanopack/portal/config"
"github.com/nanopack/portal/core"
"github.com/nanopack/portal/database"
"github.com/nanopack/portal/proxymgr"
"github.com/nanopack/portal/vipmgr"
)
var (
// to be populated by linker
tag string
commit string
Portal = &cobra.Command{
Use: "portal",
Short: "load balancer/proxy",
Long: ``,
PersistentPreRunE: readConfig,
PreRunE: preFlight,
RunE: startPortal,
SilenceErrors: true,
SilenceUsage: true,
}
)
func init() {
config.AddFlags(Portal)
Portal.AddCommand(serviceAddCmd)
Portal.AddCommand(serviceRemoveCmd)
Portal.AddCommand(serviceShowCmd)
Portal.AddCommand(servicesShowCmd)
Portal.AddCommand(servicesSetCmd)
Portal.AddCommand(serviceSetCmd)
Portal.AddCommand(serverAddCmd)
Portal.AddCommand(serverRemoveCmd)
Portal.AddCommand(serverShowCmd)
Portal.AddCommand(serversShowCmd)
Portal.AddCommand(serversSetCmd)
Portal.AddCommand(routeAddCmd)
Portal.AddCommand(routesSetCmd)
Portal.AddCommand(routesShowCmd)
Portal.AddCommand(routeRemoveCmd)
Portal.AddCommand(certAddCmd)
Portal.AddCommand(certsSetCmd)
Portal.AddCommand(certsShowCmd)
Portal.AddCommand(certRemoveCmd)
Portal.AddCommand(vipAddCmd)
Portal.AddCommand(vipsSetCmd)
Portal.AddCommand(vipsShowCmd)
Portal.AddCommand(vipRemoveCmd)
}
func preFlight(ccmd *cobra.Command, args []string) error {
if config.Version {
return fmt.Errorf(fmt.Sprintf("portal %s (%s)", tag, commit))
}
if !config.Server {
ccmd.HelpFunc()(ccmd, args)
return fmt.Errorf("") // no error, just exit
}
return nil
}
func readConfig(ccmd *cobra.Command, args []string) error {
if err := config.LoadConfigFile(); err != nil {
return fmt.Errorf("ERROR: Failed to read config - %s", err)
}
return nil
}
func startPortal(ccmd *cobra.Command, args []string) error {
if config.LogFile == "" {
config.Log = lumber.NewConsoleLogger(lumber.LvlInt(config.LogLevel))
} else {
var err error
config.Log, err = lumber.NewFileLogger(config.LogFile, lumber.LvlInt(config.LogLevel), lumber.ROTATE, 5000, 9, 100)
if err != nil {
config.Log.Fatal("File logger init failed - %s", err)
return fmt.Errorf("")
}
}
// ensure proxy ports are unique. we need to check because tls will not listen
// until a cert is added. we want it to break sooner.
if config.RouteHttp == config.RouteTls {
config.Log.Fatal("Proxy addresses must be unique")
return fmt.Errorf("")
}
// need ':' in case tls is double apiport (8080, 80)
apiPort := fmt.Sprintf(":%s", config.ApiPort)
if strings.HasSuffix(config.RouteTls, apiPort) {
config.Log.Fatal("TLS proxy address must be unique")
return fmt.Errorf("")
}
// initialize database
err := database.Init()
if err != nil {
config.Log.Fatal("Database init failed - %s", err)
return fmt.Errorf("")
}
// initialize balancer
err = balance.Init()
if err != nil {
config.Log.Fatal("Balancer init failed - %s", err)
return fmt.Errorf("")
}
// initialize proxymgr
err = proxymgr.Init()
if err != nil {
config.Log.Fatal("Proxymgr init failed - %s", err)
return fmt.Errorf("")
}
// initialize vipmgr
err = vipmgr.Init()
if err != nil {
config.Log.Fatal("Vipmgr init failed - %s", err)
return fmt.Errorf("")
}
// initialize cluster
err = cluster.Init()
if err != nil {
config.Log.Fatal("Cluster init failed - %s", err)
return fmt.Errorf("")
}
go sigHandle()
// start api
err = api.StartApi()
if err != nil {
config.Log.Fatal("Api start failed - %s", err)
return fmt.Errorf("")
}
return nil
}
func sigHandle() {
sigs := make(chan os.Signal, 1)
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
go func() {
switch <-sigs {
default:
// clear balancer rules - (stop balancing if we are offline)
balance.SetServices(make([]core.Service, 0, 0))
// clear vips
vipmgr.SetVips(make([]core.Vip, 0, 0))
os.Exit(0)
}
}()
}
func rest(path string, method string, body io.Reader) (*http.Response, error) {
var client *http.Client
client = http.DefaultClient
uri := fmt.Sprintf("https://%s:%s/%s", config.ApiHost, config.ApiPort, path)
if config.Insecure {
http.DefaultTransport.(*http.Transport).TLSClientConfig = &tls.Config{InsecureSkipVerify: true}
}
req, err := http.NewRequest(method, uri, body)
if err != nil {
fmt.Printf("Failed to create request - %s\n", err)
}
req.Header.Add("X-AUTH-TOKEN", config.ApiToken)
res, err := client.Do(req)
if err != nil {
// if requesting `https://` failed, server may have been started with `-i`, try `http://`
uri = fmt.Sprintf("http://%s:%s/%s", config.ApiHost, config.ApiPort, path)
req, er := http.NewRequest(method, uri, body)
if er != nil {
fmt.Printf("Failed to create request - %s\n", er)
}
req.Header.Add("X-AUTH-TOKEN", config.ApiToken)
var err2 error
res, err2 = client.Do(req)
if err2 != nil {
// return original error to client
return nil, err
}
}
if res.StatusCode == 401 {
return nil, fmt.Errorf("401 Unauthorized. Please specify api token (-t 'token')")
}
return res, nil
}
func fail(format string, args ...interface{}) {
fmt.Printf(fmt.Sprintf("%s\n", format), args...)
os.Exit(1)
}