Skip to content

Commit 1a4bbe1

Browse files
committed
Rename ErrorResponse to Errored
It's the same name used in alias.go, and it produces less-verbose code without loss of readability.
1 parent 65a93df commit 1a4bbe1

File tree

9 files changed

+21
-21
lines changed

9 files changed

+21
-21
lines changed

example/mutatingwebhook.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ func (a *podAnnotator) Handle(ctx context.Context, req admission.Request) admiss
3838

3939
err := a.decoder.Decode(req, pod)
4040
if err != nil {
41-
return admission.ErrorResponse(http.StatusBadRequest, err)
41+
return admission.Errored(http.StatusBadRequest, err)
4242
}
4343

4444
if pod.Annotations == nil {
@@ -48,7 +48,7 @@ func (a *podAnnotator) Handle(ctx context.Context, req admission.Request) admiss
4848

4949
marshaledPod, err := json.Marshal(pod)
5050
if err != nil {
51-
return admission.ErrorResponse(http.StatusInternalServerError, err)
51+
return admission.Errored(http.StatusInternalServerError, err)
5252
}
5353

5454
return admission.PatchResponseFromRaw(req.AdmissionRequest.Object.Raw, marshaledPod)

example/validatingwebhook.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ func (v *podValidator) Handle(ctx context.Context, req admission.Request) admiss
3838

3939
err := v.decoder.Decode(req, pod)
4040
if err != nil {
41-
return admission.ErrorResponse(http.StatusBadRequest, err)
41+
return admission.Errored(http.StatusBadRequest, err)
4242
}
4343

4444
key := "example-mutating-admission-webhook"

pkg/webhook/admission/doc.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ The following snippet is an example implementation of mutating handler.
3232
pod := &corev1.Pod{}
3333
err := m.decoder.Decode(req, pod)
3434
if err != nil {
35-
return admission.ErrorResponse(http.StatusBadRequest, err)
35+
return admission.Errored(http.StatusBadRequest, err)
3636
}
3737
// Do deepcopy before actually mutate the object.
3838
copy := pod.DeepCopy()
3939
err = m.mutatePodsFn(ctx, copy)
4040
if err != nil {
41-
return admission.ErrorResponse(http.StatusInternalServerError, err)
41+
return admission.Errored(http.StatusInternalServerError, err)
4242
}
4343
return admission.PatchResponse(pod, copy)
4444
}
@@ -70,12 +70,12 @@ The following snippet is an example implementation of validating handler.
7070
pod := &corev1.Pod{}
7171
err := h.decoder.Decode(req, pod)
7272
if err != nil {
73-
return admission.ErrorResponse(http.StatusBadRequest, err)
73+
return admission.Errored(http.StatusBadRequest, err)
7474
}
7575
7676
allowed, reason, err := h.validatePodsFn(ctx, pod)
7777
if err != nil {
78-
return admission.ErrorResponse(http.StatusInternalServerError, err)
78+
return admission.Errored(http.StatusInternalServerError, err)
7979
}
8080
return admission.ValidationResponse(allowed, reason)
8181
}

pkg/webhook/admission/http.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@ func (wh Webhook) ServeHTTP(w http.ResponseWriter, r *http.Request) {
4949
if r.Body != nil {
5050
if body, err = ioutil.ReadAll(r.Body); err != nil {
5151
log.Error(err, "unable to read the body from the incoming request")
52-
reviewResponse = ErrorResponse(http.StatusBadRequest, err)
52+
reviewResponse = Errored(http.StatusBadRequest, err)
5353
wh.writeResponse(w, reviewResponse)
5454
return
5555
}
5656
} else {
5757
err = errors.New("request body is empty")
5858
log.Error(err, "bad request")
59-
reviewResponse = ErrorResponse(http.StatusBadRequest, err)
59+
reviewResponse = Errored(http.StatusBadRequest, err)
6060
wh.writeResponse(w, reviewResponse)
6161
return
6262
}
@@ -66,7 +66,7 @@ func (wh Webhook) ServeHTTP(w http.ResponseWriter, r *http.Request) {
6666
if contentType != "application/json" {
6767
err = fmt.Errorf("contentType=%s, expected application/json", contentType)
6868
log.Error(err, "unable to process a request with an unknown content type", "content type", contentType)
69-
reviewResponse = ErrorResponse(http.StatusBadRequest, err)
69+
reviewResponse = Errored(http.StatusBadRequest, err)
7070
wh.writeResponse(w, reviewResponse)
7171
return
7272
}
@@ -78,7 +78,7 @@ func (wh Webhook) ServeHTTP(w http.ResponseWriter, r *http.Request) {
7878
}
7979
if _, _, err := admissionCodecs.UniversalDeserializer().Decode(body, nil, &ar); err != nil {
8080
log.Error(err, "unable to decode the request")
81-
reviewResponse = ErrorResponse(http.StatusBadRequest, err)
81+
reviewResponse = Errored(http.StatusBadRequest, err)
8282
wh.writeResponse(w, reviewResponse)
8383
return
8484
}
@@ -96,6 +96,6 @@ func (wh *Webhook) writeResponse(w io.Writer, response Response) {
9696
err := encoder.Encode(responseAdmissionReview)
9797
if err != nil {
9898
log.Error(err, "unable to encode the response")
99-
wh.writeResponse(w, ErrorResponse(http.StatusInternalServerError, err))
99+
wh.writeResponse(w, Errored(http.StatusInternalServerError, err))
100100
}
101101
}

pkg/webhook/admission/multi.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ func (hs multiMutating) Handle(ctx context.Context, req Request) Response {
3838
return resp
3939
}
4040
if resp.PatchType != nil && *resp.PatchType != admissionv1beta1.PatchTypeJSONPatch {
41-
return ErrorResponse(http.StatusInternalServerError,
41+
return Errored(http.StatusInternalServerError,
4242
fmt.Errorf("unexpected patch type returned by the handler: %v, only allow: %v",
4343
resp.PatchType, admissionv1beta1.PatchTypeJSONPatch))
4444
}
@@ -47,7 +47,7 @@ func (hs multiMutating) Handle(ctx context.Context, req Request) Response {
4747
var err error
4848
marshaledPatch, err := json.Marshal(patches)
4949
if err != nil {
50-
return ErrorResponse(http.StatusBadRequest, fmt.Errorf("error when marshaling the patch: %v", err))
50+
return Errored(http.StatusBadRequest, fmt.Errorf("error when marshaling the patch: %v", err))
5151
}
5252
return Response{
5353
AdmissionResponse: admissionv1beta1.AdmissionResponse{

pkg/webhook/admission/response.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ func Patched(reason string, patches ...jsonpatch.JsonPatchOperation) Response {
4747
return resp
4848
}
4949

50-
// ErrorResponse creates a new Response for error-handling a request.
51-
func ErrorResponse(code int32, err error) Response {
50+
// Errored creates a new Response for error-handling a request.
51+
func Errored(code int32, err error) Response {
5252
return Response{
5353
AdmissionResponse: admissionv1beta1.AdmissionResponse{
5454
Allowed: false,
@@ -81,7 +81,7 @@ func ValidationResponse(allowed bool, reason string) Response {
8181
func PatchResponseFromRaw(original, current []byte) Response {
8282
patches, err := jsonpatch.CreatePatch(original, current)
8383
if err != nil {
84-
return ErrorResponse(http.StatusInternalServerError, err)
84+
return Errored(http.StatusInternalServerError, err)
8585
}
8686
return Response{
8787
Patches: patches,

pkg/webhook/admission/response_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ var _ = Describe("Admission Webhook Response Helpers", func() {
116116
})
117117
})
118118

119-
Describe("ErrorResponse", func() {
119+
Describe("Errored", func() {
120120
It("should return a denied response with an error", func() {
121121
err := errors.New("this is an error")
122122
expected := Response{
@@ -128,7 +128,7 @@ var _ = Describe("Admission Webhook Response Helpers", func() {
128128
},
129129
},
130130
}
131-
resp := ErrorResponse(http.StatusBadRequest, err)
131+
resp := Errored(http.StatusBadRequest, err)
132132
Expect(resp).To(Equal(expected))
133133
})
134134
})

pkg/webhook/admission/webhook.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ func (w *Webhook) Handle(ctx context.Context, req Request) Response {
122122
resp := w.Handler.Handle(ctx, req)
123123
if err := resp.Complete(req); err != nil {
124124
log.Error(err, "unable to encode response")
125-
return ErrorResponse(http.StatusInternalServerError, errUnableToEncodeResponse)
125+
return Errored(http.StatusInternalServerError, errUnableToEncodeResponse)
126126
}
127127

128128
return resp

pkg/webhook/alias.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,5 @@ var (
6363
Patched = admission.Patched
6464

6565
// Errored indicates that an error occurred in the admission request.
66-
Errored = admission.ErrorResponse
66+
Errored = admission.Errored
6767
)

0 commit comments

Comments
 (0)