forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cloud_controller_gateway.go
44 lines (36 loc) · 1.13 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
package net
import (
"encoding/json"
"strconv"
"time"
"github.com/cloudfoundry/cli/cf/configuration/coreconfig"
"github.com/cloudfoundry/cli/cf/errors"
"github.com/cloudfoundry/cli/cf/terminal"
"github.com/cloudfoundry/cli/cf/trace"
)
type ccErrorResponse struct {
Code int
Description string
}
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)
}
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),
}
}