forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cloud_controller_gateway.go
61 lines (49 loc) · 1.45 KB
/
cloud_controller_gateway.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
package net
import (
"encoding/json"
"strconv"
"time"
"code.cloudfoundry.org/cli/cf/configuration/coreconfig"
"code.cloudfoundry.org/cli/cf/errors"
"code.cloudfoundry.org/cli/cf/terminal"
"code.cloudfoundry.org/cli/cf/trace"
)
type ccErrorResponse struct {
Code int
Description string
}
type v3ErrorItem struct {
Code int
Title string
Detail string
}
type v3CCError struct {
Errors []v3ErrorItem
}
const invalidTokenCode = 1000
func cloudControllerErrorHandler(statusCode int, body []byte) error {
response := ccErrorResponse{}
_ = json.Unmarshal(body, &response)
if response.Code == invalidTokenCode {
return errors.NewInvalidTokenError(response.Description)
}
var v3response v3CCError
_ = json.Unmarshal(body, &v3response)
if len(v3response.Errors) > 0 && v3response.Errors[0].Code == invalidTokenCode {
return errors.NewInvalidTokenError(v3response.Errors[0].Detail)
}
return errors.NewHTTPError(statusCode, strconv.Itoa(response.Code), response.Description)
}
func NewCloudControllerGateway(config coreconfig.Reader, clock func() time.Time, ui terminal.UI, logger trace.Printer, envDialTimeout string) Gateway {
return Gateway{
errHandler: cloudControllerErrorHandler,
config: config,
PollingThrottle: DefaultPollingThrottle,
warnings: &[]string{},
Clock: clock,
ui: ui,
logger: logger,
PollingEnabled: true,
DialTimeout: dialTimeout(envDialTimeout),
}
}