forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
uaa_gateway.go
41 lines (34 loc) · 1.06 KB
/
uaa_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"
"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 uaaErrorResponse struct {
Code string `json:"error"`
Description string `json:"error_description"`
}
var uaaErrorHandler = func(statusCode int, body []byte) error {
response := uaaErrorResponse{}
_ = json.Unmarshal(body, &response)
if response.Code == "invalid_token" {
return errors.NewInvalidTokenError(response.Description)
}
return errors.NewHTTPError(statusCode, response.Code, response.Description)
}
func NewUAAGateway(config coreconfig.Reader, ui terminal.UI, logger trace.Printer, envDialTimeout string) Gateway {
return Gateway{
errHandler: uaaErrorHandler,
config: config,
PollingThrottle: DefaultPollingThrottle,
warnings: &[]string{},
Clock: time.Now,
ui: ui,
logger: logger,
PollingEnabled: false,
DialTimeout: dialTimeout(envDialTimeout),
}
}