-
Notifications
You must be signed in to change notification settings - Fork 28
/
json.go
248 lines (228 loc) · 6.35 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
package main
import (
firestore "cloud.google.com/go/firestore"
"encoding/base64"
"encoding/json"
latlng "google.golang.org/genproto/googleapis/type/latlng"
"io/ioutil"
"math"
"regexp"
"strings"
"time"
)
var rfc3339regex, _ = regexp.Compile("^" + rfc3339pattern + "$")
var firestoreDocumentsRoot, _ = regexp.Compile("^projects/.+/databases/.+/documents/")
// Return the corresponding firestore primitive value from an extended json
// primitive value, or nil if the value is not one of the extended json forms.
func extendedJsonValueToFirestoreValue(v map[string]interface{}, client *firestore.Client) interface{} {
if content, ok := v["$boolean"]; ok {
return content.(bool)
} else if content, ok := v["$date"]; ok {
typedContent := content.(string)
timestamp, err := time.Parse(time.RFC3339Nano, typedContent)
if err != nil {
panic("Unexpected error parsing rfc3339")
}
return timestamp
} else if content, ok := v["$numberDouble"]; ok {
return content.(float64)
} else if content, ok := v["$numberInt"]; ok {
typedContent := content.(float64)
return int64(math.Round(typedContent))
} else if content, ok := v["$string"]; ok {
return content.(string)
} else if content, ok := v["$geopoint"]; ok {
typedContent := content.(map[string]interface{})
longitude := typedContent["$longitude"].(float64)
latitude := typedContent["$latitude"].(float64)
return &latlng.LatLng{Latitude: latitude, Longitude: longitude}
} else if content, ok := v["$reference"]; ok {
return client.Doc(content.(string))
} else if content, ok := v["$binary"]; ok {
typedContent := content.(string)
data, err := base64.StdEncoding.DecodeString(typedContent)
if err != nil {
panic("Unexpected error decoding base64")
}
return data
} else {
return nil
}
}
// transformExtendedJsonMapToFirestoreMap traverses a map, replacing extended
// json values by the golang value used by the firestore library to represent
// the given type.
func transformExtendedJsonMapToFirestoreMap(m map[string]interface{}, client *firestore.Client) {
for k, v := range m {
switch v := v.(type) {
case []interface{}:
transformExtendedJsonArrayToFirestoreArray(v, client)
case map[string]interface{}:
if len(v) == 1 {
if transformedValue := extendedJsonValueToFirestoreValue(v, client); transformedValue != nil {
m[k] = transformedValue
} else {
transformExtendedJsonMapToFirestoreMap(v, client)
}
} else {
transformExtendedJsonMapToFirestoreMap(v, client)
}
}
}
}
// transformExtendedJsonArrayToFirestoreArray traverses a slice, replacing
// extended json values by the golang value used by the firestore library to
// represent the given type.
func transformExtendedJsonArrayToFirestoreArray(slice []interface{}, client *firestore.Client) {
for i, v := range slice {
switch v := v.(type) {
case []interface{}:
transformExtendedJsonArrayToFirestoreArray(v, client)
case map[string]interface{}:
if len(v) == 1 {
if transformedValue := extendedJsonValueToFirestoreValue(v, client); transformedValue != nil {
slice[i] = transformedValue
} else {
transformExtendedJsonMapToFirestoreMap(v, client)
}
} else {
transformExtendedJsonMapToFirestoreMap(v, client)
}
}
}
}
// Returns an extended json primitive value from a firestore primitive value.
func firestoreValueToExtendedJsonValue(v interface{}) interface{} {
switch v := v.(type) {
case float64:
if math.IsNaN(v) {
return map[string]interface{}{
"$numberDouble": nil,
}
} else {
return map[string]interface{}{
"$numberDouble": v,
}
}
case int64:
return map[string]interface{}{
"$numberInt": v,
}
case bool:
return map[string]interface{}{
"$boolean": v,
}
case time.Time:
return map[string]interface{}{
"$date": v.Format(time.RFC3339Nano),
}
case string:
return map[string]interface{}{
"$string": v,
}
case *latlng.LatLng:
return map[string]interface{}{
"$geopoint": map[string]interface{}{
"$latitude": v.Latitude,
"$longitude": v.Longitude,
},
}
case *firestore.DocumentRef:
return map[string]interface{}{
"$reference": firestoreDocumentsRoot.ReplaceAllString(v.Path, ""),
}
case []byte:
return map[string]interface{}{
"$binary": base64.StdEncoding.EncodeToString(v),
}
default:
return v
}
}
// transformFirestoreMapToExtendedJsonMap transforms a firestore map to an extended json map.
func transformFirestoreMapToExtendedJsonMap(m map[string]interface{}) {
for k, v := range m {
switch v := v.(type) {
case []interface{}:
transformFirestoreArrayToExtendedJsonArray(v)
case map[string]interface{}:
transformFirestoreMapToExtendedJsonMap(v)
default:
m[k] = firestoreValueToExtendedJsonValue(v)
}
}
}
func transformFirestoreArrayToExtendedJsonArray(slice []interface{}) {
for i, v := range slice {
switch v := v.(type) {
case []interface{}:
transformFirestoreArrayToExtendedJsonArray(v)
case map[string]interface{}:
transformFirestoreMapToExtendedJsonMap(v)
default:
slice[i] = firestoreValueToExtendedJsonValue(v)
}
}
}
// Replaces all NaN values in an array by null, recursively.
func unNaNSlice(slice []interface{}) {
for i, v := range slice {
switch v := v.(type) {
case []interface{}:
unNaNSlice(v)
case map[string]interface{}:
unNaNMap(v)
case float64:
if math.IsNaN(v) {
slice[i] = nil
}
}
}
}
// Replaces all NaN values in an object by null, recursively.
func unNaNMap(m map[string]interface{}) {
for k, v := range m {
switch v := v.(type) {
case []interface{}:
unNaNSlice(v)
case map[string]interface{}:
unNaNMap(v)
case float64:
if math.IsNaN(v) {
m[k] = nil
}
}
}
}
// unmarshall data
func unmarshallData(data string) (map[string]interface{}, error) {
trimmed := strings.TrimSpace(data)
var buffer []byte
if strings.HasPrefix(trimmed, "{") {
buffer = []byte(trimmed)
} else {
var err error
buffer, err = ioutil.ReadFile(data)
if err != nil {
return nil, err
}
}
var object map[string]interface{}
err := json.Unmarshal(buffer, &object)
if err != nil {
return nil, err
}
return object, nil
}
func marshallData(object map[string]interface{}, extended bool) (string, error) {
if extended {
transformFirestoreMapToExtendedJsonMap(object)
} else {
unNaNMap(object)
}
buffer, err := json.MarshalIndent(object, "", " ")
if err != nil {
return "", err
}
return string(buffer), nil
}