-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson.go
62 lines (52 loc) · 1.71 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
package httpfw
import (
"encoding/json"
"errors"
"fmt"
"io"
"net/http"
"github.com/golang/gddo/httputil/header"
httperr "github.com/ahmedalhulaibi/httpfw/errors"
)
func DecodeJSONBody(w http.ResponseWriter, r *http.Request, dst interface{}) error {
if r.Header.Get("Content-Type") != "" {
value, _ := header.ParseValueAndParams(r.Header, "Content-Type")
if value != "application/json" {
msg := "Content-Type header is not application/json"
return httperr.UnsupportedMediaType(msg)
}
}
r.Body = http.MaxBytesReader(w, r.Body, 1048576)
dec := json.NewDecoder(r.Body)
dec.DisallowUnknownFields()
err := dec.Decode(&dst)
if err != nil {
var syntaxError *json.SyntaxError
var unmarshalTypeError *json.UnmarshalTypeError
switch {
case errors.As(err, &syntaxError):
msg := fmt.Sprintf("Request body contains badly-formed JSON (at position %d)", syntaxError.Offset)
return httperr.BadRequest(msg)
case errors.As(err, &unmarshalTypeError):
msg := fmt.Sprintf("Request body contains an invalid value for the %q field (at position %d)", unmarshalTypeError.Field, unmarshalTypeError.Offset)
return httperr.BadRequest(msg)
case errors.Is(err, io.ErrUnexpectedEOF):
msg := "Request body contains badly formed JSON"
return httperr.BadRequest(msg)
case errors.Is(err, io.EOF):
msg := "Request body must not be empty"
return httperr.BadRequest(msg)
case err.Error() == "http: request body too large":
msg := "Request body must not be larger than 1MB"
return httperr.RequestEntityTooLarge(msg)
default:
return err
}
}
err = dec.Decode(&struct{}{})
if err != io.EOF {
msg := "Request body must only contain a single JSON object"
return httperr.BadRequest(msg)
}
return nil
}