forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
routing_api_gateway.go
41 lines (35 loc) · 1.02 KB
/
routing_api_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
package net
import (
"encoding/json"
"net/http"
"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 errorResponse struct {
Name string
Message string
}
func errorHandler(statusCode int, body []byte) error {
response := errorResponse{}
err := json.Unmarshal(body, &response)
if err != nil {
return errors.NewHTTPError(http.StatusInternalServerError, "", "")
}
return errors.NewHTTPError(statusCode, response.Name, response.Message)
}
func NewRoutingAPIGateway(config coreconfig.Reader, clock func() time.Time, ui terminal.UI, logger trace.Printer, envDialTimeout string) Gateway {
return Gateway{
errHandler: errorHandler,
config: config,
PollingThrottle: DefaultPollingThrottle,
warnings: &[]string{},
Clock: clock,
ui: ui,
logger: logger,
PollingEnabled: true,
DialTimeout: dialTimeout(envDialTimeout),
}
}