-
Notifications
You must be signed in to change notification settings - Fork 1
/
json.go
134 lines (119 loc) · 3.99 KB
/
json.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
// Copyright 2023 The Authors (see AUTHORS file)
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package renderer
import (
"bytes"
"encoding/json"
"fmt"
"net/http"
"strings"
)
// RenderJSON renders the interface as JSON. It attempts to gracefully handle
// any rendering errors to avoid partial responses sent to the response by
// writing to a buffer first, then flushing the buffer to the response.
//
// If the provided data is nil and the response code is a 2xx, the body will be
// empty. If the code is not a 2xx, the response will be of the format
// `{"error":"<val>"}` where val is the lowercase, JSON-escaped
// [http.StatusText] for the provided code.
//
// If rendering fails, a generic 500 JSON response is returned. In dev mode, the
// error is included in the payload. If flushing the buffer to the response
// fails, an error is logged, but no recovery is attempted.
//
// The buffers are fetched via a [sync.Pool] to reduce allocations and improve
// performance.
func (r *Renderer) RenderJSON(w http.ResponseWriter, code int, data any) {
// Avoid marshaling nil data.
if data == nil {
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(code)
// Return an OK response.
if code >= http.StatusOK && code < http.StatusMultipleChoices {
return
}
// Return an error with the generic HTTP text as the error.
msg := escapeJSON(strings.ToLower(http.StatusText(code)))
fmt.Fprintf(w, jsonErrTmpl, msg)
return
}
// Special-case errors.
switch typ := data.(type) {
case (interface {
// Go 1.20 error join
Unwrap() []error
}):
data = newMultiError(typ.Unwrap()...)
case (interface {
// hashicorp/go-multierror
WrappedErrors() []error
}):
data = newMultiError(typ.WrappedErrors()...)
case []error:
data = newMultiError(typ...)
case error:
data = newMultiError(typ)
}
// Acquire a renderer.
b, ok := r.rendererPool.Get().(*bytes.Buffer)
if !ok {
panic("rendererPool is not a *bytes.Buffer")
}
b.Reset()
defer r.rendererPool.Put(b)
// Render into the renderer.
if err := json.NewEncoder(b).Encode(data); err != nil {
r.onError(fmt.Errorf("failed to marshal json: %w", err))
msg := "An internal error occurred."
if r.debug {
msg = err.Error()
}
msg = escapeJSON(msg)
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(http.StatusInternalServerError)
fmt.Fprintf(w, jsonErrTmpl, msg)
return
}
// Rendering worked, flush to the response.
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(code)
if _, err := b.WriteTo(w); err != nil {
// We couldn't write the buffer. We can't change the response header or
// content type if we got this far, so the best option we have is to log the
// error.
r.onError(fmt.Errorf("failed to write json response: %w", err))
}
}
// escapeJSON does primitive JSON escaping.
func escapeJSON(s string) string {
return strings.ReplaceAll(s, `"`, `\"`)
}
// jsonErrTmpl is the template to use when returning a JSON error. It is
// rendered using Logf, not json.Encode, so values must be escaped by the
// caller.
const jsonErrTmpl = `{"errors":["%s"]}`
type multiError struct {
Errors []string `json:"errors,omitempty"`
}
// newMultiError constructs a multierror from the given errors. Any nil errors
// are discarded. Errors are added in the order in which they are given.
func newMultiError(errs ...error) *multiError {
msgs := make([]string, 0, len(errs))
for _, err := range errs {
if err != nil {
msgs = append(msgs, err.Error())
}
}
return &multiError{Errors: msgs}
}