aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Holst Swende <martin@swende.se>2018-12-14 18:08:11 +0800
committerGitHub <noreply@github.com>2018-12-14 18:08:11 +0800
commit3796751efcc3fab71799450f1bff370d081438ec (patch)
treedab2b72d919112ac4f9f285ca5f360710c6e1d3b
parente79821cabeda5c6907f03073d11fe6d83367f494 (diff)
downloadgo-tangerine-3796751efcc3fab71799450f1bff370d081438ec.tar
go-tangerine-3796751efcc3fab71799450f1bff370d081438ec.tar.gz
go-tangerine-3796751efcc3fab71799450f1bff370d081438ec.tar.bz2
go-tangerine-3796751efcc3fab71799450f1bff370d081438ec.tar.lz
go-tangerine-3796751efcc3fab71799450f1bff370d081438ec.tar.xz
go-tangerine-3796751efcc3fab71799450f1bff370d081438ec.tar.zst
go-tangerine-3796751efcc3fab71799450f1bff370d081438ec.zip
rpc: add application/json-rpc as accepted content type, fixes #18293 (#18310)
-rw-r--r--rpc/http.go27
1 files changed, 20 insertions, 7 deletions
diff --git a/rpc/http.go b/rpc/http.go
index af79858e2..674166fb3 100644
--- a/rpc/http.go
+++ b/rpc/http.go
@@ -36,11 +36,15 @@ import (
)
const (
- contentType = "application/json"
maxRequestContentLength = 1024 * 512
)
-var nullAddr, _ = net.ResolveTCPAddr("tcp", "127.0.0.1:0")
+var (
+ // https://www.jsonrpc.org/historical/json-rpc-over-http.html#id13
+ acceptedContentTypes = []string{"application/json", "application/json-rpc", "application/jsonrequest"}
+ contentType = acceptedContentTypes[0]
+ nullAddr, _ = net.ResolveTCPAddr("tcp", "127.0.0.1:0")
+)
type httpConn struct {
client *http.Client
@@ -263,12 +267,21 @@ func validateRequest(r *http.Request) (int, error) {
err := fmt.Errorf("content length too large (%d>%d)", r.ContentLength, maxRequestContentLength)
return http.StatusRequestEntityTooLarge, err
}
- mt, _, err := mime.ParseMediaType(r.Header.Get("content-type"))
- if r.Method != http.MethodOptions && (err != nil || mt != contentType) {
- err := fmt.Errorf("invalid content type, only %s is supported", contentType)
- return http.StatusUnsupportedMediaType, err
+ // Allow OPTIONS (regardless of content-type)
+ if r.Method == http.MethodOptions {
+ return 0, nil
+ }
+ // Check content-type
+ if mt, _, err := mime.ParseMediaType(r.Header.Get("content-type")); err == nil {
+ for _, accepted := range acceptedContentTypes {
+ if accepted == mt {
+ return 0, nil
+ }
+ }
}
- return 0, nil
+ // Invalid content-type
+ err := fmt.Errorf("invalid content type, only %s is supported", contentType)
+ return http.StatusUnsupportedMediaType, err
}
func newCorsHandler(srv *Server, allowedOrigins []string) http.Handler {