mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 12:57:38 +03:00
json: Add UnmarshalDisallowUnknownFields
This commit is contained in:
parent
332e470075
commit
7893a74f75
4 changed files with 37 additions and 1 deletions
12
common/json/internal/contextjson/unmarshal.go
Normal file
12
common/json/internal/contextjson/unmarshal.go
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
package json
|
||||||
|
|
||||||
|
func UnmarshalDisallowUnknownFields(data []byte, v any) error {
|
||||||
|
var d decodeState
|
||||||
|
d.disallowUnknownFields = true
|
||||||
|
err := checkValid(data, &d.scan)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
d.init(data)
|
||||||
|
return d.unmarshal(v)
|
||||||
|
}
|
|
@ -2,6 +2,7 @@ package json
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
"errors"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/sagernet/sing/common"
|
"github.com/sagernet/sing/common"
|
||||||
|
@ -15,7 +16,8 @@ func UnmarshalExtended[T any](content []byte) (T, error) {
|
||||||
if err == nil {
|
if err == nil {
|
||||||
return value, err
|
return value, err
|
||||||
}
|
}
|
||||||
if syntaxError, isSyntaxError := err.(*SyntaxError); isSyntaxError {
|
var syntaxError *SyntaxError
|
||||||
|
if errors.As(err, &syntaxError) {
|
||||||
prefix := string(content[:syntaxError.Offset])
|
prefix := string(content[:syntaxError.Offset])
|
||||||
row := strings.Count(prefix, "\n") + 1
|
row := strings.Count(prefix, "\n") + 1
|
||||||
column := len(prefix) - strings.LastIndex(prefix, "\n") - 1
|
column := len(prefix) - strings.LastIndex(prefix, "\n") - 1
|
||||||
|
|
9
common/json/unmarshal_context.go
Normal file
9
common/json/unmarshal_context.go
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
//go:build go1.20 && !without_contextjson
|
||||||
|
|
||||||
|
package json
|
||||||
|
|
||||||
|
import (
|
||||||
|
json "github.com/sagernet/sing/common/json/internal/contextjson"
|
||||||
|
)
|
||||||
|
|
||||||
|
var UnmarshalDisallowUnknownFields = json.UnmarshalDisallowUnknownFields
|
13
common/json/unmarshal_std.go
Normal file
13
common/json/unmarshal_std.go
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
//go:build !go1.20 || without_contextjson
|
||||||
|
|
||||||
|
package json
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
)
|
||||||
|
|
||||||
|
func UnmarshalDisallowUnknownFields(content []byte, value any) error {
|
||||||
|
decoder := NewDecoder(bytes.NewReader(content))
|
||||||
|
decoder.DisallowUnknownFields()
|
||||||
|
return decoder.Decode(value)
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue