forked from cloudfoundry/rep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.go
332 lines (276 loc) · 7.99 KB
/
client.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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
package rep
import (
"bytes"
"crypto/tls"
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"net/http"
"net/url"
"strconv"
"time"
"code.cloudfoundry.org/bbs/models"
"code.cloudfoundry.org/cfhttp"
"code.cloudfoundry.org/lager"
"github.com/tedsuo/rata"
)
//go:generate counterfeiter -o repfakes/fake_client_factory.go . ClientFactory
type ClientFactory interface {
CreateClient(address, url string) (Client, error)
}
// capture the behavior described in the comment of this story
// https://www.pivotaltracker.com/story/show/130664747/comments/152863773
type TLSConfig struct {
RequireTLS bool
CertFile, KeyFile, CaCertFile string
ClientCacheSize int // the tls client cache size, 0 means use golang default value
}
// return true if all the certs files are set in the struct, i.e. not ""
func (config *TLSConfig) hasCreds() bool {
return config.CaCertFile != "" &&
config.KeyFile != "" &&
config.CertFile != ""
}
// pick either the old address or the new rep_url depending on the announced
// addresses and the tls config
func (config *TLSConfig) pickURL(address, repURL string) (string, error) {
secure := false
if repURL != "" {
url, err := url.Parse(repURL)
if err != nil {
return "", err
}
if url.Scheme == "https" {
secure = true
}
}
if !config.RequireTLS && !config.hasCreds() {
// cannot use tls
if secure {
return "", errors.New("https scheme not supported since certificates aren't provided")
}
// prefer repURL
if repURL != "" {
return repURL, nil
}
return address, nil
} else if !config.RequireTLS {
// prefer tls but don't require it
if repURL != "" {
return repURL, nil
}
return address, nil
} else {
// must use tls
if !secure {
return "", errors.New("https scheme is required but none of the addresses support it")
}
return repURL, nil
}
}
func (tlsConfig *TLSConfig) modifyTransport(client *http.Client) error {
if !tlsConfig.hasCreds() {
return nil
}
if transport, ok := client.Transport.(*http.Transport); ok {
config, err := cfhttp.NewTLSConfig(tlsConfig.CertFile, tlsConfig.KeyFile, tlsConfig.CaCertFile)
if err != nil {
return err
}
config.ClientSessionCache = tls.NewLRUClientSessionCache(tlsConfig.ClientCacheSize)
transport.TLSClientConfig = config
}
return nil
}
type clientFactory struct {
httpClient *http.Client
stateClient *http.Client
tlsConfig *TLSConfig
}
func NewClientFactory(httpClient, stateClient *http.Client, tlsConfig *TLSConfig) (ClientFactory, error) {
if tlsConfig == nil {
// zero values tls config
tlsConfig = &TLSConfig{}
}
if err := tlsConfig.modifyTransport(httpClient); err != nil {
return nil, err
}
if err := tlsConfig.modifyTransport(stateClient); err != nil {
return nil, err
}
return &clientFactory{
httpClient: httpClient,
stateClient: stateClient,
tlsConfig: tlsConfig,
}, nil
}
func (factory *clientFactory) CreateClient(address, url string) (Client, error) {
urlToUse, err := factory.tlsConfig.pickURL(address, url)
if err != nil {
return nil, err
}
return newClient(factory.httpClient, factory.stateClient, urlToUse), nil
}
//go:generate counterfeiter -o repfakes/fake_client.go . Client
type Client interface {
State(logger lager.Logger) (CellState, error)
Perform(logger lager.Logger, work Work) (Work, error)
StopLRPInstance(logger lager.Logger, key models.ActualLRPKey, instanceKey models.ActualLRPInstanceKey) error
CancelTask(logger lager.Logger, taskGuid string) error
SetStateClient(stateClient *http.Client)
StateClientTimeout() time.Duration
}
//go:generate counterfeiter -o repfakes/fake_sim_client.go . SimClient
type SimClient interface {
Client
Reset() error
}
type client struct {
client *http.Client
stateClient *http.Client
address string
requestGenerator *rata.RequestGenerator
}
func newClient(httpClient, stateClient *http.Client, address string) Client {
return &client{
client: httpClient,
stateClient: stateClient,
address: address,
requestGenerator: rata.NewRequestGenerator(address, Routes),
}
}
func (c *client) SetStateClient(stateClient *http.Client) {
c.stateClient = stateClient
}
func (c *client) StateClientTimeout() time.Duration {
return c.stateClient.Timeout
}
func (c *client) State(logger lager.Logger) (CellState, error) {
req, err := c.requestGenerator.CreateRequest(StateRoute, nil, nil)
if err != nil {
return CellState{}, err
}
resp, err := c.stateClient.Do(req)
if err != nil {
return CellState{}, err
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
return CellState{}, fmt.Errorf("unexpected status code: %d", resp.StatusCode)
}
var state CellState
bs, err := ioutil.ReadAll(resp.Body)
if err != nil {
return CellState{}, err
}
err = json.Unmarshal(bs, &state)
if err != nil {
return CellState{}, err
}
return state, nil
}
func (c *client) Perform(logger lager.Logger, work Work) (Work, error) {
body, err := json.Marshal(work)
if err != nil {
return Work{}, err
}
req, err := c.requestGenerator.CreateRequest(PerformRoute, nil, bytes.NewReader(body))
if err != nil {
return Work{}, err
}
resp, err := c.client.Do(req)
if err != nil {
return Work{}, err
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
return Work{}, fmt.Errorf("unexpected status code: %d", resp.StatusCode)
}
var failedWork Work
err = json.NewDecoder(resp.Body).Decode(&failedWork)
if err != nil {
return Work{}, err
}
return failedWork, nil
}
func (c *client) Reset() error {
req, err := c.requestGenerator.CreateRequest(Sim_ResetRoute, nil, nil)
if err != nil {
return err
}
resp, err := c.client.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
return fmt.Errorf("unexpected status code: %d", resp.StatusCode)
}
return nil
}
func (c *client) StopLRPInstance(
logger lager.Logger,
key models.ActualLRPKey,
instanceKey models.ActualLRPInstanceKey,
) error {
start := time.Now()
logger = logger.Session("stop-lrp", lager.Data{"process-guid": key.ProcessGuid,
"index": key.Index,
"domain": key.Domain,
"instance-key": instanceKey,
})
logger.Info("starting")
req, err := c.requestGenerator.CreateRequest(StopLRPInstanceRoute, stopParamsFromLRP(key, instanceKey), nil)
if err != nil {
logger.Error("connection-failed", err)
return err
}
req.Header.Set("Content-Type", "application/json")
resp, err := c.client.Do(req)
if err != nil {
logger.Error("request-failed", err)
return err
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusAccepted {
err := fmt.Errorf("http error: status code %d (%s)", resp.StatusCode, http.StatusText(resp.StatusCode))
logger.Error("failed-with-status", err, lager.Data{"status-code": resp.StatusCode, "msg": http.StatusText(resp.StatusCode)})
return err
}
logger.Info("completed", lager.Data{"duration": time.Since(start)})
return nil
}
func (c *client) CancelTask(logger lager.Logger, taskGuid string) error {
start := time.Now()
logger = logger.Session("cancel-task", lager.Data{"task-guid": taskGuid})
logger.Info("starting")
req, err := c.requestGenerator.CreateRequest(CancelTaskRoute, rata.Params{"task_guid": taskGuid}, nil)
if err != nil {
logger.Error("connection-failed", err)
return err
}
resp, err := c.client.Do(req)
if err != nil {
logger.Error("request-failed", err)
return err
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusAccepted {
err := fmt.Errorf("http error: status code %d (%s)", resp.StatusCode, http.StatusText(resp.StatusCode))
logger.Error("failed-with-status", err, lager.Data{"status-code": resp.StatusCode, "msg": http.StatusText(resp.StatusCode)})
return err
}
logger.Info("completed", lager.Data{"duration": time.Since(start)})
return nil
}
func stopParamsFromLRP(
key models.ActualLRPKey,
instanceKey models.ActualLRPInstanceKey,
) rata.Params {
return rata.Params{
"process_guid": key.ProcessGuid,
"instance_guid": instanceKey.InstanceGuid,
"index": strconv.Itoa(int(key.Index)),
}
}