-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathschema.go
403 lines (378 loc) · 11.3 KB
/
schema.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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
package conflate
import (
"github.com/xeipuuv/gojsonreference"
"github.com/xeipuuv/gojsonschema"
"net/url"
"reflect"
"strings"
)
// Schema contains a JSON v4 schema
type Schema struct {
s interface{}
}
// NewSchemaFile loads a JSON v4 schema from the given path
func NewSchemaFile(path string) (*Schema, error) {
url, err := toURL(nil, path)
if err != nil {
return nil, wrapError(err, "Failed to obtain url to schema file")
}
return NewSchemaURL(url)
}
// NewSchemaURL loads a JSON v4 schema from the given URL
func NewSchemaURL(url url.URL) (*Schema, error) {
data, err := loadURL(url)
if err != nil {
return nil, wrapError(err, "Failed to load schema url %v", url)
}
return NewSchemaData(data)
}
// NewSchemaData loads a JSON v4 schema from the given data
func NewSchemaData(data []byte) (*Schema, error) {
var s interface{}
err := JSONUnmarshal(data, &s)
if err != nil {
return nil, wrapError(err, "Schema is not valid json")
}
return NewSchemaGo(s)
}
// NewSchemaGo creates a Schema instance from a schema represented as a golang object
func NewSchemaGo(s interface{}) (*Schema, error) {
err := validateSchema(s)
if err != nil {
return nil, wrapError(err, "The schema is not valid against the meta-schema http://json-schema.org/draft-04/schema")
}
return &Schema{s: s}, nil
}
// Validate checks the given golang data against the schema
func (s *Schema) Validate(data interface{}) error {
if s == nil {
return makeError("Schema is not set")
}
return validate(data, s.s)
}
// ApplyDefaults adds default values defined in the schema to the data pointed to by pData
func (s *Schema) ApplyDefaults(pData interface{}) error {
if s == nil {
return makeError("Schema is not set")
}
return applyDefaults(pData, s.s)
}
var metaSchema interface{}
func validateSchema(s interface{}) error {
if metaSchema == nil {
err := JSONUnmarshal(metaSchemaData, &metaSchema)
if err != nil {
return wrapError(err, "Could not load json meta-schema")
}
}
return validate(s, metaSchema)
}
func validate(data interface{}, schema interface{}) error {
dataLoader := gojsonschema.NewGoLoader(data)
schemaLoader := gojsonschema.NewGoLoader(schema)
formatErrs.clear()
result, err := gojsonschema.Validate(schemaLoader, dataLoader)
if err != nil {
return wrapError(err, "An error occurred during validation")
}
err = processResult(result)
return wrapError(err, "Schema validation failed")
}
func processResult(result *gojsonschema.Result) error {
if !result.Valid() {
err := makeError("The document is not valid against the schema")
for _, rerr := range result.Errors() {
ctx := convertJSONContext(rerr.Context().String())
ctxErr := makeContextError(ctx, rerr.Description())
ferr := formatErrs.get(rerr.Details()["format"], rerr.Value())
if ferr != nil {
ctxErr = detailError(ctxErr, ferr.Error())
}
err = wrapError(ctxErr, err.Error())
}
return err
}
return nil
}
func convertJSONContext(jsonCtx string) context {
parts := strings.Split(jsonCtx, ".")
return rootContext().add(parts[1:]...)
}
func applyDefaults(pData interface{}, schema interface{}) error {
err := applyDefaultsRecursive(rootContext(), schema, pData, schema)
return wrapError(err, "The defaults could not be applied")
}
func applyDefaultsRecursive(ctx context, rootSchema interface{}, pData interface{}, schema interface{}) error {
if pData == nil {
return makeContextError(ctx, "Destination value must not be nil")
}
pDataVal := reflect.ValueOf(pData)
if pDataVal.Kind() != reflect.Ptr {
return makeContextError(ctx, "Destination value must be a pointer")
}
dataVal := pDataVal.Elem()
data := dataVal.Interface()
schemaNode, ok := schema.(map[string]interface{})
if !ok {
return makeContextError(ctx, "Schema section is not a map")
}
val, ok := schemaNode["$ref"]
if ok {
ref, ok := val.(string)
if !ok {
return makeContextError(ctx, makeError("Reference is not a string '%v'", ref).Error())
}
jref, err := gojsonreference.NewJsonReference(ref)
if err != nil {
return makeContextError(ctx, wrapError(err, "Invalid reference '%v'", ref).Error())
}
subSchema, _, err := jref.GetPointer().Get(rootSchema)
if subSchema == nil || err != nil {
return makeContextError(ctx, wrapError(err, "Cannot find reference '%v'", ref).Error())
}
return applyDefaultsRecursive(ctx.add(ref), rootSchema, pData, subSchema)
}
schemaType, ok := schemaNode["type"]
if !ok {
if hasKey(schemaNode, "anyOf", "allOf", "oneOf", "not") {
// the schema is valid, so it is not an error, but we do not support these types of schema yet
return nil
}
return makeContextError(ctx, "Schema section does not have a valid 'type' attribute")
}
if value, ok := schemaNode["default"]; ok && data == nil {
defaultVal := reflect.ValueOf(value)
dataVal.Set(defaultVal)
data = dataVal.Interface()
}
var err error
switch schemaType {
case "object":
err = applyObjectDefaults(ctx, rootSchema, data, schemaNode)
case "array":
err = applyArrayDefaults(ctx, rootSchema, data, schemaNode)
}
return err
}
func hasKey(m map[string]interface{}, keys ...string) bool {
for _, key := range keys {
if _, ok := m[key]; ok {
return true
}
}
return false
}
func applyObjectDefaults(ctx context, rootSchema interface{}, data interface{}, schemaNode map[string]interface{}) error {
if data == nil {
return nil
}
dataProps, ok := data.(map[string]interface{})
if !ok {
return makeContextError(ctx, "Node should be an 'object'")
}
if dataProps == nil {
return nil
}
var schemaProps map[string]interface{}
if props, ok := schemaNode["properties"]; ok {
schemaProps = props.(map[string]interface{})
for name, schemaProp := range schemaProps {
dataProp := dataProps[name]
err := applyDefaultsRecursive(ctx.add(name), rootSchema, &dataProp, schemaProp)
if err != nil {
return wrapError(err, "Failed to apply defaults to object property")
}
if dataProp != nil {
dataProps[name] = dataProp
}
}
}
if addProps, ok := schemaNode["additionalProperties"]; ok {
if addProps, ok = addProps.(map[string]interface{}); ok {
for name, dataProp := range dataProps {
if schemaProps == nil || schemaProps[name] == nil {
err := applyDefaultsRecursive(ctx.add(name), rootSchema, &dataProp, addProps)
if err != nil {
return wrapError(err, "Failed to apply defaults to additional object property")
}
if dataProp != nil {
dataProps[name] = dataProp
}
}
}
}
}
return nil
}
func applyArrayDefaults(ctx context, rootSchema interface{}, data interface{}, schemaNode map[string]interface{}) error {
if data == nil {
return nil
}
dataItems, ok := data.([]interface{})
if !ok {
return makeContextError(ctx, "Node should be an 'array'")
}
if items, ok := schemaNode["items"]; ok {
schemaItem := items.(map[string]interface{})
for i, dataItem := range dataItems {
err := applyDefaultsRecursive(ctx.addInt(i), rootSchema, &dataItem, schemaItem)
if err != nil {
return wrapError(err, "Failed to apply defaults to array item")
}
if dataItem != nil {
dataItems[i] = dataItem
}
}
}
return nil
}
var metaSchemaData = []byte(`
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Core schema meta-schema",
"definitions": {
"schemaArray": {
"type": "array",
"minItems": 1,
"items": { "$ref": "#" }
},
"positiveInteger": {
"type": "integer",
"minimum": 0
},
"positiveIntegerDefault0": {
"allOf": [ { "$ref": "#/definitions/positiveInteger" }, { "default": 0 } ]
},
"simpleTypes": {
"enum": [ "array", "boolean", "integer", "null", "number", "object", "string" ]
},
"stringArray": {
"type": "array",
"items": { "type": "string" },
"minItems": 1,
"uniqueItems": true
}
},
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uri"
},
"$schema": {
"type": "string",
"format": "uri"
},
"title": {
"type": "string"
},
"description": {
"type": "string"
},
"default": {},
"multipleOf": {
"type": "number",
"minimum": 0,
"exclusiveMinimum": true
},
"maximum": {
"type": "number"
},
"exclusiveMaximum": {
"type": "boolean",
"default": false
},
"minimum": {
"type": "number"
},
"exclusiveMinimum": {
"type": "boolean",
"default": false
},
"maxLength": { "$ref": "#/definitions/positiveInteger" },
"minLength": { "$ref": "#/definitions/positiveIntegerDefault0" },
"pattern": {
"type": "string",
"format": "regex"
},
"additionalItems": {
"anyOf": [
{ "type": "boolean" },
{ "$ref": "#" }
],
"default": {}
},
"items": {
"anyOf": [
{ "$ref": "#" },
{ "$ref": "#/definitions/schemaArray" }
],
"default": {}
},
"maxItems": { "$ref": "#/definitions/positiveInteger" },
"minItems": { "$ref": "#/definitions/positiveIntegerDefault0" },
"uniqueItems": {
"type": "boolean",
"default": false
},
"maxProperties": { "$ref": "#/definitions/positiveInteger" },
"minProperties": { "$ref": "#/definitions/positiveIntegerDefault0" },
"required": { "$ref": "#/definitions/stringArray" },
"additionalProperties": {
"anyOf": [
{ "type": "boolean" },
{ "$ref": "#" }
],
"default": {}
},
"definitions": {
"type": "object",
"additionalProperties": { "$ref": "#" },
"default": {}
},
"properties": {
"type": "object",
"additionalProperties": { "$ref": "#" },
"default": {}
},
"patternProperties": {
"type": "object",
"additionalProperties": { "$ref": "#" },
"default": {}
},
"dependencies": {
"type": "object",
"additionalProperties": {
"anyOf": [
{ "$ref": "#" },
{ "$ref": "#/definitions/stringArray" }
]
}
},
"enum": {
"type": "array",
"minItems": 1,
"uniqueItems": true
},
"type": {
"anyOf": [
{ "$ref": "#/definitions/simpleTypes" },
{
"type": "array",
"items": { "$ref": "#/definitions/simpleTypes" },
"minItems": 1,
"uniqueItems": true
}
]
},
"allOf": { "$ref": "#/definitions/schemaArray" },
"anyOf": { "$ref": "#/definitions/schemaArray" },
"oneOf": { "$ref": "#/definitions/schemaArray" },
"not": { "$ref": "#" }
},
"dependencies": {
"exclusiveMaximum": [ "maximum" ],
"exclusiveMinimum": [ "minimum" ]
},
"default": {}
}`)