-
Notifications
You must be signed in to change notification settings - Fork 20
/
json.go
106 lines (89 loc) · 2.69 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
package utils
import (
"encoding/json"
"fmt"
"strconv"
"github.com/buger/jsonparser"
)
// Convenience function to unmarshal an object and validate it
func UnmarshalAndValidate(data []byte, obj interface{}, objName string) error {
err := json.Unmarshal(data, obj)
if err != nil {
return err
}
err = ValidateAs(obj, objName)
if err != nil {
return err
}
return nil
}
func UnmarshalArray(data json.RawMessage) ([]json.RawMessage, error) {
var items []json.RawMessage
err := json.Unmarshal(data, &items)
return items, err
}
// EmptyJSONFragment is a fragment which has no values
var EmptyJSONFragment = JSONFragment{}
// JSONFragment is a thin wrapper around a byte array that takes care of allow key lookups
// into the json in that byte array
type JSONFragment []byte
// Default returns the default value for this JSON, which is the JSON itself
func (j JSONFragment) Default() interface{} {
return j
}
// Resolve resolves the passed in key, which is expected to be either an integer in the case
// that our JSON is an array or a key name if it is a map
func (j JSONFragment) Resolve(key string) interface{} {
_, err := strconv.Atoi(key)
// this is a numerical index, convert to jsonparser format
if err == nil {
jIdx := "[" + key + "]"
val, valType, _, err := jsonparser.Get(j, jIdx)
if err == nil {
if err == nil {
if valType == jsonparser.String {
strVal, err := jsonparser.ParseString(val)
if err == nil {
return strVal
}
}
return JSONFragment(val)
}
}
}
val, valType, _, err := jsonparser.Get(j, key)
if err != nil {
return fmt.Errorf("no such variable: %s", key)
}
if valType == jsonparser.String {
strVal, err := jsonparser.ParseString(val)
if err == nil {
return strVal
}
}
return JSONFragment(val)
}
var _ VariableResolver = EmptyJSONFragment
// String returns the string representation of this JSON, which is just the JSON itself
func (j JSONFragment) String() string {
return string(j)
}
//------------------------------------------------------------------------------------------
// JSON Encoding / Decoding
//------------------------------------------------------------------------------------------
// UnmarshalJSON reads a new JSONFragment from the passed in byte stream. We validate it looks
// like valid JSON then set our internal byte structure
func (j *JSONFragment) UnmarshalJSON(data []byte) error {
// try to parse the passed in data as JSON
var js interface{}
err := json.Unmarshal(data, &js)
if err != nil {
return err
}
*j = data
return nil
}
// MarshalJSON returns the JSON representation of our fragment, which is just our internal byte array
func (j JSONFragment) MarshalJSON() ([]byte, error) {
return j, nil
}