forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherrors.go
222 lines (202 loc) · 8.09 KB
/
errors.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
package ccv3
import (
"encoding/json"
"net/http"
"regexp"
"strings"
"code.cloudfoundry.org/cli/api/cloudcontroller"
"code.cloudfoundry.org/cli/api/cloudcontroller/ccerror"
)
const (
taskWorkersUnavailable = "CF-TaskWorkersUnavailable"
operationInProgress = "CF-AsyncServiceInstanceOperationInProgress"
)
// errorWrapper is the wrapper that converts responses with 4xx and 5xx status
// codes to an error.
type errorWrapper struct {
connection cloudcontroller.Connection
}
func newErrorWrapper() *errorWrapper {
return new(errorWrapper)
}
// Make creates a connection in the wrapped connection and handles errors
// that it returns.
func (e *errorWrapper) Make(request *cloudcontroller.Request, passedResponse *cloudcontroller.Response) error {
err := e.connection.Make(request, passedResponse)
if rawHTTPStatusErr, ok := err.(ccerror.RawHTTPStatusError); ok {
if rawHTTPStatusErr.StatusCode >= http.StatusInternalServerError {
return convert500(rawHTTPStatusErr)
}
return convert400(rawHTTPStatusErr, request)
}
return err
}
// Wrap wraps a Cloud Controller connection in this error handling wrapper.
func (e *errorWrapper) Wrap(innerconnection cloudcontroller.Connection) cloudcontroller.Connection {
e.connection = innerconnection
return e
}
func convert400(rawHTTPStatusErr ccerror.RawHTTPStatusError, request *cloudcontroller.Request) error {
firstErr, errorResponse, err := unmarshalFirstV3Error(rawHTTPStatusErr)
if err != nil {
return err
}
if len(errorResponse.Errors) > 1 {
return ccerror.MultiError{Errors: errorResponse.Errors, ResponseCode: rawHTTPStatusErr.StatusCode}
}
switch rawHTTPStatusErr.StatusCode {
case http.StatusBadRequest: // 400
return handleBadRequest(firstErr, request)
case http.StatusUnauthorized: // 401
if firstErr.Title == "CF-InvalidAuthToken" {
return ccerror.InvalidAuthTokenError{Message: firstErr.Detail}
}
return ccerror.UnauthorizedError{Message: firstErr.Detail}
case http.StatusForbidden: // 403
return ccerror.ForbiddenError{Message: firstErr.Detail}
case http.StatusNotFound: // 404
return handleNotFound(firstErr, request)
case http.StatusUnprocessableEntity: // 422
return handleUnprocessableEntity(firstErr)
case http.StatusServiceUnavailable: // 503
if firstErr.Title == taskWorkersUnavailable {
return ccerror.TaskWorkersUnavailableError{Message: firstErr.Detail}
}
return ccerror.ServiceUnavailableError{Message: firstErr.Detail}
case http.StatusConflict:
if firstErr.Title == operationInProgress {
return ccerror.ServiceInstanceOperationInProgressError{Message: firstErr.Detail}
}
}
return ccerror.V3UnexpectedResponseError{
ResponseCode: rawHTTPStatusErr.StatusCode,
RequestIDs: rawHTTPStatusErr.RequestIDs,
V3ErrorResponse: errorResponse,
}
}
func convert500(rawHTTPStatusErr ccerror.RawHTTPStatusError) error {
switch rawHTTPStatusErr.StatusCode {
case http.StatusServiceUnavailable: // 503
firstErr, _, err := unmarshalFirstV3Error(rawHTTPStatusErr)
if err != nil {
return err
}
if firstErr.Title == taskWorkersUnavailable {
return ccerror.TaskWorkersUnavailableError{Message: firstErr.Detail}
}
return ccerror.ServiceUnavailableError{Message: firstErr.Detail}
default:
return ccerror.V3UnexpectedResponseError{
ResponseCode: rawHTTPStatusErr.StatusCode,
RequestIDs: rawHTTPStatusErr.RequestIDs,
V3ErrorResponse: ccerror.V3ErrorResponse{
Errors: []ccerror.V3Error{{
Detail: string(rawHTTPStatusErr.RawResponse),
}},
},
}
}
}
func handleBadRequest(errorResponse ccerror.V3Error, _ *cloudcontroller.Request) error {
switch errorResponse.Detail {
case "Bad request: Cannot stage package whose state is not ready.":
return ccerror.InvalidStateError{}
case "This service does not support fetching service instance parameters.":
return ccerror.ServiceInstanceParametersFetchNotSupportedError{Message: errorResponse.Detail}
default:
return ccerror.BadRequestError{Message: errorResponse.Detail}
}
}
func handleNotFound(errorResponse ccerror.V3Error, request *cloudcontroller.Request) error {
switch errorResponse.Detail {
case "App not found":
return ccerror.ApplicationNotFoundError{}
case "Droplet not found":
return ccerror.DropletNotFoundError{}
case "Deployment not found":
return ccerror.DeploymentNotFoundError{}
case "Feature flag not found":
return ccerror.FeatureFlagNotFoundError{}
case "Instance not found":
return ccerror.InstanceNotFoundError{}
case "Process not found":
return ccerror.ProcessNotFoundError{}
case "User not found":
return ccerror.UserNotFoundError{}
case "Unknown request":
return ccerror.APINotFoundError{URL: request.URL.String()}
default:
return ccerror.ResourceNotFoundError{Message: errorResponse.Detail}
}
}
func handleUnprocessableEntity(errorResponse ccerror.V3Error) error {
//idea to make route already exist error flexible for all relevant error cases
errorString := errorResponse.Detail
err := ccerror.UnprocessableEntityError{Message: errorResponse.Detail}
appNameTakenRegexp := regexp.MustCompile(`App with the name '.*' already exists\.`)
orgNameTakenRegexp := regexp.MustCompile(`Organization '.*' already exists\.`)
roleExistsRegexp := regexp.MustCompile(`User '.*' already has '.*' role.*`)
quotaExistsRegexp := regexp.MustCompile(`.* Quota '.*' already exists\.`)
securityGroupExistsRegexp := regexp.MustCompile(`Security group with name '.*' already exists\.`)
// boolean switch case with partial/regex string matchers
switch {
case appNameTakenRegexp.MatchString(errorString) || strings.Contains(errorString, "name must be unique in space"):
return ccerror.NameNotUniqueInSpaceError{UnprocessableEntityError: err}
case strings.Contains(errorString,
"Name must be unique per organization"):
return ccerror.NameNotUniqueInOrgError{}
case strings.Contains(errorString,
"Route already exists"):
return ccerror.RouteNotUniqueError{UnprocessableEntityError: err}
case strings.Contains(errorString,
"Buildpack must be an existing admin buildpack or a valid git URI"):
return ccerror.InvalidBuildpackError{}
case strings.Contains(errorString,
"Assign a droplet before starting this app."):
return ccerror.InvalidStartError{}
case strings.Contains(errorString,
"The service instance name is taken"):
return ccerror.ServiceInstanceNameTakenError{Message: err.Message}
case orgNameTakenRegexp.MatchString(errorString):
return ccerror.OrganizationNameTakenError{UnprocessableEntityError: err}
case roleExistsRegexp.MatchString(errorString):
return ccerror.RoleAlreadyExistsError{UnprocessableEntityError: err}
case quotaExistsRegexp.MatchString(errorString):
return ccerror.QuotaAlreadyExists{Message: err.Message}
case securityGroupExistsRegexp.MatchString(errorString):
return ccerror.SecurityGroupAlreadyExists{Message: err.Message}
case strings.Contains(errorString,
"Ensure the space is bound to this security group."):
return ccerror.SecurityGroupNotBound{Message: err.Message}
case errorResponse.Title == "CF-ServiceInstanceAlreadyBoundToSameRoute":
return ccerror.ResourceAlreadyExistsError{Message: err.Message}
case strings.Contains(errorString,
"The app is already bound to the service instance"):
return ccerror.ResourceAlreadyExistsError{Message: err.Message}
case strings.Contains(errorString,
"Key binding names must be unique"):
return ccerror.ServiceKeyTakenError{Message: err.Message}
default:
return err
}
}
func unmarshalFirstV3Error(rawHTTPStatusErr ccerror.RawHTTPStatusError) (ccerror.V3Error, ccerror.V3ErrorResponse, error) {
// Try to unmarshal the raw error into a CC error. If unmarshaling fails,
// return the raw error.
var errorResponse ccerror.V3ErrorResponse
err := json.Unmarshal(rawHTTPStatusErr.RawResponse, &errorResponse)
if err != nil {
return ccerror.V3Error{}, errorResponse, ccerror.UnknownHTTPSourceError{
StatusCode: rawHTTPStatusErr.StatusCode,
RawResponse: rawHTTPStatusErr.RawResponse,
}
}
errors := errorResponse.Errors
if len(errors) == 0 {
return ccerror.V3Error{}, errorResponse, ccerror.V3UnexpectedResponseError{
ResponseCode: rawHTTPStatusErr.StatusCode,
V3ErrorResponse: errorResponse,
}
}
return errors[0], errorResponse, nil
}