mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 11:57:39 +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 (
|
||||
"bytes"
|
||||
"errors"
|
||||
"strings"
|
||||
|
||||
"github.com/sagernet/sing/common"
|
||||
|
@ -15,7 +16,8 @@ func UnmarshalExtended[T any](content []byte) (T, error) {
|
|||
if err == nil {
|
||||
return value, err
|
||||
}
|
||||
if syntaxError, isSyntaxError := err.(*SyntaxError); isSyntaxError {
|
||||
var syntaxError *SyntaxError
|
||||
if errors.As(err, &syntaxError) {
|
||||
prefix := string(content[:syntaxError.Offset])
|
||||
row := strings.Count(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