-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalidation.go
72 lines (63 loc) · 1.92 KB
/
validation.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
package arazzo
import (
"context"
"github.com/speakeasy-api/openapi/jsonschema/oas31"
"github.com/speakeasy-api/openapi/validation"
)
func validateJSONSchema(ctx context.Context, js oas31.JSONSchema, line, column int, opts ...validation.Option) []error {
errs := []error{}
o := validation.NewOptions(opts...)
a := validation.GetContextObject[Arazzo](o)
if a == nil {
return []error{
validation.Error{
Message: "An Arazzo object must be passed via validation options to validate a JSONSchema",
Line: line,
Column: column,
},
}
}
if js.IsRight() {
errs = append(errs, &validation.Error{
Message: "inputs schema must represent an object with specific properties for inputs",
Line: line,
Column: column,
})
} else {
errs = append(errs, js.Left.Validate(ctx, opts...)...)
if js.Left.Ref != nil {
// TODO we will need to dereference and validate
} else if js.Left.AllOf != nil {
// TODO we will want to try and deduce if this boils down to a compatible object but just assume it does for now
} else if js.Left.Type != nil {
if js.Left.Type != nil && js.Left.Type.IsLeft() {
types := js.Left.Type.GetLeft()
if len(types) != 1 || types[0] != "object" {
errs = append(errs, &validation.Error{
Message: "inputs schema must represent an object with specific properties for inputs",
Line: line,
Column: column,
})
}
}
if js.Left.Type.IsRight() {
if js.Left.Type.GetRight() != "object" {
errs = append(errs, &validation.Error{
Message: "inputs schema must represent an object with specific properties for inputs",
Line: line,
Column: column,
})
}
}
} else {
if js.Left.Properties.Len() == 0 {
errs = append(errs, &validation.Error{
Message: "inputs schema must represent an object with specific properties for inputs",
Line: line,
Column: column,
})
}
}
}
return errs
}