-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathschema.go
325 lines (271 loc) · 6.97 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
package oas
import (
"encoding/json"
)
func NewSchema(tpe Type, fmt string) *Schema {
return &Schema{
SchemaObject: SchemaObject{
Type: tpe,
Format: fmt,
},
}
}
func RefSchemaByRefer(refer Refer) *Schema {
return &Schema{
Reference: Reference{
Refer: refer,
},
}
}
func RefSchema(ref string) *Schema {
return RefSchemaByRefer(&StringRefer{
Ref: ref,
})
}
func Integer() *Schema {
return NewSchema(TypeInteger, "int32")
}
func Long() *Schema {
return NewSchema(TypeInteger, "int64")
}
func Float() *Schema {
return NewSchema(TypeNumber, "float")
}
func Double() *Schema {
return NewSchema(TypeNumber, "double")
}
func String() *Schema {
return NewSchema(TypeString, "")
}
func Byte() *Schema {
return NewSchema(TypeString, "byte")
}
func Binary() *Schema {
return NewSchema(TypeString, "binary")
}
func Date() *Schema {
return NewSchema(TypeString, "date")
}
func DateTime() *Schema {
return NewSchema(TypeString, "date-time")
}
func Password() *Schema {
return NewSchema(TypeString, "password")
}
func Boolean() *Schema {
return NewSchema(TypeBoolean, "")
}
func ItemsOf(items *Schema) *Schema {
return &Schema{
SchemaObject: SchemaObject{
Type: TypeArray,
Items: items,
},
}
}
type Props map[string]*Schema
func ObjectOf(props Props, required ...string) *Schema {
return &Schema{
SchemaObject: SchemaObject{
Type: TypeObject,
Properties: props,
SchemaValidation: SchemaValidation{
Required: required,
},
},
}
}
func MapOf(s *Schema) *Schema {
return KeyValueOf(nil, s)
}
func KeyValueOf(k *Schema, s *Schema) *Schema {
return &Schema{
SchemaObject: SchemaObject{
Type: TypeObject,
AdditionalProperties: &SchemaOrBool{
Allows: true,
Schema: s,
},
PropertyNames: k,
},
}
}
func AllOf(schemas ...*Schema) *Schema {
return &Schema{
SchemaObject: SchemaObject{
AllOf: schemas,
},
}
}
func AnyOf(schemas ...*Schema) *Schema {
return &Schema{
SchemaObject: SchemaObject{
AnyOf: schemas,
},
}
}
func OneOf(schemas ...*Schema) *Schema {
return &Schema{
SchemaObject: SchemaObject{
OneOf: schemas,
},
}
}
func Not(schema *Schema) *Schema {
return &Schema{
SchemaObject: SchemaObject{
Not: schema,
},
}
}
type Schema struct {
Reference
SchemaObject
SpecExtensions
}
func (s Schema) WithValidation(validation *SchemaValidation) *Schema {
s.Enum = validation.Enum
switch s.Type {
case TypeInteger, TypeNumber:
s.MultipleOf = validation.MultipleOf
s.Maximum = validation.Maximum
s.ExclusiveMaximum = validation.ExclusiveMaximum
s.Minimum = validation.Minimum
s.ExclusiveMinimum = validation.ExclusiveMinimum
case TypeString:
s.MaxLength = validation.MaxLength
s.MinLength = validation.MinLength
s.Pattern = validation.Pattern
case TypeArray:
s.MaxItems = validation.MaxItems
s.MinItems = validation.MinItems
s.UniqueItems = validation.UniqueItems
case TypeObject:
s.MaxProperties = validation.MaxProperties
s.MinProperties = validation.MinProperties
if len(s.Properties) > 0 {
s.Required = validation.Required
}
}
return &s
}
func (s *Schema) SetProperty(name string, propSchema *Schema, required bool) {
if s.Type != TypeObject {
return
}
if s.Properties == nil {
s.Properties = make(map[string]*Schema)
}
s.Properties[name] = propSchema
if required {
s.Required = append(s.Required, name)
}
}
func (s Schema) WithDesc(desc string) *Schema {
s.Description = desc
return &s
}
func (s Schema) WithTitle(title string) *Schema {
s.Title = title
return &s
}
func (s Schema) WithDiscriminator(discriminator *Discriminator) *Schema {
s.Discriminator = discriminator
return &s
}
func (s Schema) MarshalJSON() ([]byte, error) {
return s.MarshalJSONRefFirst(s.SchemaObject, s.SpecExtensions)
}
func (s *Schema) UnmarshalJSON(data []byte) error {
return s.UnmarshalJSONRefFirst(data, &s.SchemaObject, &s.SpecExtensions)
}
type SchemaValidation struct {
// numbers
MultipleOf *float64 `json:"multipleOf,omitempty"`
Maximum *float64 `json:"maximum,omitempty"`
ExclusiveMaximum bool `json:"exclusiveMaximum,omitempty"`
Minimum *float64 `json:"minimum,omitempty"`
ExclusiveMinimum bool `json:"exclusiveMinimum,omitempty"`
// string
MaxLength *uint64 `json:"maxLength,omitempty"`
MinLength *uint64 `json:"minLength,omitempty"`
Pattern string `json:"pattern,omitempty"`
// array
MaxItems *uint64 `json:"maxItems,omitempty"`
MinItems *uint64 `json:"minItems,omitempty"`
UniqueItems bool `json:"uniqueItems,omitempty"`
// object
MaxProperties *uint64 `json:"maxProperties,omitempty"`
MinProperties *uint64 `json:"minProperties,omitempty"`
Required []string `json:"required,omitempty"`
// any
Enum []interface{} `json:"enum,omitempty"`
}
type SchemaObject struct {
Title string `json:"title,omitempty"`
Type Type `json:"type,omitempty"`
Format string `json:"format,omitempty"`
Items *Schema `json:"items,omitempty"`
Properties map[string]*Schema `json:"properties,omitempty"`
AdditionalProperties *SchemaOrBool `json:"additionalProperties,omitempty"`
PropertyNames *Schema `json:"propertyNames,omitempty"`
SchemaValidation
AllOf []*Schema `json:"allOf,omitempty"`
AnyOf []*Schema `json:"anyOf,omitempty"`
OneOf []*Schema `json:"oneOf,omitempty"`
Not *Schema `json:"not,omitempty"`
Description string `json:"description,omitempty"`
Default interface{} `json:"default,omitempty"`
Nullable bool `json:"nullable,omitempty"`
Discriminator *Discriminator `json:"discriminator,omitempty"`
ReadOnly bool `json:"readOnly,omitempty"`
WriteOnly bool `json:"writeOnly,omitempty"`
XML *XML `json:"xml,omitempty"`
ExternalDocs *ExternalDoc `json:"external_docs,omitempty"`
Example interface{} `json:"example,omitempty"`
Deprecated bool `json:"deprecated,omitempty"`
}
type Discriminator struct {
PropertyName string `json:"propertyName"`
Mapping map[string]string `json:"mapping,omitempty"`
}
type XML struct {
Name string `json:"name,omitempty"`
Namespace string `json:"namespace,omitempty"`
Prefix string `json:"prefix,omitempty"`
Attribute bool `json:"attribute,omitempty"`
Wrapped bool `json:"wrapped,omitempty"`
}
type Type string
const (
TypeInteger Type = "integer"
TypeNumber Type = "number"
TypeString Type = "string"
TypeBoolean Type = "boolean"
TypeArray Type = "array"
TypeObject Type = "object"
)
type SchemaOrBool struct {
Allows bool
Schema *Schema
}
func (s *SchemaOrBool) UnmarshalJSON(data []byte) error {
s.Allows = true
if len(data) > 0 && data[0] == '{' {
var schema Schema
if err := json.Unmarshal(data, &schema); err != nil {
return err
}
s.Schema = &schema
}
return nil
}
func (s *SchemaOrBool) MarshalJSON() ([]byte, error) {
if s.Schema != nil {
return json.Marshal(s.Schema)
}
if s.Schema == nil && !s.Allows {
return []byte("false"), nil
}
return []byte("true"), nil
}