-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathschema.go
479 lines (399 loc) · 11 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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
package extractors
import (
"context"
"encoding"
"fmt"
"reflect"
"sort"
"strconv"
"strings"
"github.com/octohelm/courier/internal/jsonflags"
"github.com/octohelm/courier/pkg/openapi/jsonschema"
"github.com/octohelm/courier/pkg/validator"
contextx "github.com/octohelm/x/context"
reflectx "github.com/octohelm/x/reflect"
"k8s.io/apimachinery/pkg/runtime/schema"
)
type RuntimeDocer interface {
RuntimeDoc(names ...string) ([]string, bool)
}
var RuntimeDocerContext = contextx.New[RuntimeDocer]()
type TypeName string
func (t TypeName) RefString() string {
return string(t)
}
type Opt struct {
Decl bool
Doc map[string]string
EnumInDoc []string
}
func (o Opt) WithDecl(decl bool) Opt {
o.Decl = decl
return o
}
func (o Opt) WithDoc(doc map[string]string) Opt {
o.Doc = doc
return o
}
func (o Opt) WithEnumInDoc(enumInDoc []string) Opt {
o.EnumInDoc = enumInDoc
return o
}
func must[T any](ret T, err error) T {
if err != nil {
panic(err)
}
return ret
}
func SchemaFromType(ctx context.Context, t reflect.Type, opt Opt) (s jsonschema.Schema) {
sr := SchemaRegisterContext.From(ctx)
fill := func(typeRef string) {
if _, ok := s.(*jsonschema.RefType); !ok {
if v, ok := reflect.New(t).Interface().(validator.WithStructTagValidate); ok {
if rule := v.StructTagValidate(); rule != "" {
patched, err := PatchSchemaValidation(s, validator.Option{
Type: t,
Rule: v.StructTagValidate(),
})
if err != nil {
panic(err)
}
s = patched
}
}
}
if s != nil {
if !(strings.Contains(typeRef, "/internal/") || strings.Contains(typeRef, "/internal.")) {
s.GetMetadata().AddExtension(jsonschema.XGoVendorType, typeRef)
}
}
}
inst := reflect.New(t).Interface()
// named type
if pkgPath := t.PkgPath(); pkgPath != "" {
typeRef := fmt.Sprintf("%s.%s", pkgPath, t.Name())
defer fill(typeRef)
ref := sr.RefString(typeRef)
if ok := sr.Record(typeRef); ok {
return &jsonschema.RefType{
Ref: must(jsonschema.ParseURIReferenceString(ref)),
}
} else {
defer func() {
if n := len(opt.EnumInDoc); n > 0 {
e := &jsonschema.EnumType{}
e.Enum = make([]any, n)
for i := range e.Enum {
e.Enum[i] = opt.EnumInDoc[i]
}
if s != nil {
s.GetMetadata().DeepCopyInto(e.GetMetadata())
}
s = e
}
sr.RegisterSchema(ref, s)
if !opt.Decl {
s = &jsonschema.RefType{Ref: must(jsonschema.ParseURIReferenceString(ref))}
}
}()
}
if canDoc, ok := inst.(jsonschema.CanSwaggerDoc); ok {
opt = opt.WithDoc(canDoc.SwaggerDoc())
}
if canEnumValues, ok := inst.(jsonschema.GoEnumValues); ok {
defer func() {
values := canEnumValues.EnumValues()
labels := make([]string, 0)
e := &jsonschema.EnumType{}
for i := range values {
e.Enum = append(e.Enum, values[i])
if canLabel, ok := values[i].(interface{ Label() string }); ok {
labels = append(labels, canLabel.Label())
}
}
if len(labels) > 0 {
e.AddExtension(jsonschema.XEnumLabels, labels)
}
if s != nil {
s.GetMetadata().DeepCopyInto(e.GetMetadata())
}
s = e
}()
}
if docer, ok := inst.(RuntimeDocer); ok {
ctx = RuntimeDocerContext.Inject(ctx, docer)
defer func() {
if lines, ok := docer.RuntimeDoc(); ok {
SetTitleOrDescription(s.GetMetadata(), lines)
}
}()
}
defer fill(typeRef)
if g, ok := inst.(jsonschema.GoUnionType); ok {
if types := g.OneOf(); len(types) != 0 {
schemas := make([]jsonschema.Schema, len(types))
for i := range schemas {
schemas[i] = SchemaFromType(ctx, reflectx.Deref(reflect.TypeOf(types[i])), opt.WithDecl(false))
}
if len(schemas) == 1 {
return schemas[0]
}
return jsonschema.OneOf(schemas...)
}
}
if g, ok := inst.(jsonschema.GoTaggedUnionType); ok {
types := g.Mapping()
tags := make([]string, 0, len(types))
for tag := range types {
tags = append(tags, tag)
}
sort.Strings(tags)
schemas := make([]jsonschema.Schema, 0, len(types))
mapping := map[string]jsonschema.Schema{}
for _, tag := range tags {
s := SchemaFromType(
ctx,
reflectx.Deref(reflect.TypeOf(types[tag])),
opt.WithDecl(false),
)
schemas = append(schemas, s)
mapping[tag] = s
}
s := jsonschema.OneOf(schemas...)
s.Discriminator = &jsonschema.Discriminator{
PropertyName: g.Discriminator(),
Mapping: mapping,
}
return s
}
if g, ok := inst.(jsonschema.OpenAPISchemaFormatGetter); ok {
s := jsonschema.String()
s.Format = g.OpenAPISchemaFormat()
switch s.Format {
case "int-or-string":
return jsonschema.OneOf(jsonschema.Integer(), jsonschema.String())
}
return s
}
if g, ok := inst.(jsonschema.OpenAPISchemaTypeGetter); ok {
typ := g.OpenAPISchemaType()
if len(typ) > 0 && typ[0] != "" {
p := jsonschema.Payload{}
_ = p.UnmarshalJSON([]byte(fmt.Sprintf(`{"type":%q}`, typ[0])))
if p.Schema != nil {
return p.Schema
}
}
}
if g, ok := inst.(jsonschema.OpenAPISchemaGetter); ok {
s := g.OpenAPISchema()
return s
}
// TODO find better way
if typeRef == "mime/multipart.FileHeader" || typeRef == "io.ReadCloser" {
return jsonschema.Binary()
}
if _, ok := inst.(encoding.TextUnmarshaler); ok {
if _, ok := inst.(encoding.TextMarshaler); ok {
return jsonschema.String()
}
}
}
switch t.Kind() {
case reflect.Ptr:
count := 1
elem := t.Elem()
for {
if elem.Kind() == reflect.Ptr {
elem = elem.Elem()
count++
} else {
break
}
}
s := SchemaFromType(ctx, elem, opt.WithDecl(false))
patch := func(s jsonschema.Schema) jsonschema.Schema {
s.GetMetadata().AddExtension(jsonschema.XGoStarLevel, count)
return s
}
return patch(s)
case reflect.Interface:
return jsonschema.Any()
case reflect.String:
return jsonschema.String()
case reflect.Bool:
return jsonschema.Boolean()
case reflect.Float32:
st := &jsonschema.NumberType{
Type: "number",
}
st.AddExtension("x-format", "float32")
return st
case reflect.Float64:
st := &jsonschema.NumberType{
Type: "number",
}
st.AddExtension("x-format", "float64")
return st
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64,
reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
st := &jsonschema.NumberType{
Type: "integer",
}
st.AddExtension("x-format", t.Kind().String())
return st
case reflect.Array:
s := jsonschema.ArrayOf(SchemaFromType(ctx, t.Elem(), opt.WithDecl(false)))
n := uint64(t.Len())
s.MaxItems = &n
s.MinItems = &n
return s
case reflect.Slice:
if t.Elem().Kind() == reflect.Uint8 && t.Elem().PkgPath() == "" {
return jsonschema.Bytes()
}
itemSchema := SchemaFromType(ctx, t.Elem(), opt.WithDecl(false))
if itemSchema == nil {
itemSchema = jsonschema.Any()
}
return jsonschema.ArrayOf(itemSchema)
case reflect.Map:
keySchema := SchemaFromType(ctx, t.Key(), opt.WithDecl(false))
switch keySchema.(type) {
case *jsonschema.StringType:
break
case *jsonschema.RefType:
break
default:
if _, ok := keySchema.(*jsonschema.StringType); !ok {
panic(fmt.Errorf("only support string of map key, but got %s", keySchema))
}
}
return jsonschema.RecordOf(keySchema, SchemaFromType(ctx, t.Elem(), opt.WithDecl(false)))
case reflect.Struct:
structSchema := jsonschema.ObjectOf(nil)
fields, err := jsonflags.Structs.StructFields(t)
if err != nil {
panic(err)
}
for f := range fields.StructField() {
propSchema := toPropSchema(ctx, f, opt)
if propSchema != nil {
structSchema.SetProperty(f.Name, propSchema, !(f.Omitempty || f.Omitzero))
}
}
v := reflect.New(t).Interface()
if manifest, ok := v.(interface {
GetObjectKind() schema.ObjectKind
}); ok {
apiVersion, kind := manifest.GetObjectKind().GroupVersionKind().ToAPIVersionAndKind()
if kind != "" {
if _, ok := structSchema.Properties.Get("kind"); ok {
structSchema.SetProperty("kind", &jsonschema.EnumType{
Enum: []any{kind},
}, false)
}
}
if apiVersion != "" {
if _, ok := structSchema.Properties.Get("apiVersion"); ok {
structSchema.SetProperty("apiVersion", &jsonschema.EnumType{
Enum: []any{apiVersion},
}, false)
}
}
}
if manifest, ok := v.(interface{ GetKind() string }); ok {
if kind := manifest.GetKind(); kind != "" {
if _, ok := structSchema.Properties.Get("kind"); ok {
structSchema.SetProperty("kind", &jsonschema.EnumType{
Enum: []any{kind},
}, false)
}
}
}
if manifest, ok := v.(interface{ GetAPIVersion() string }); ok {
if apiVersion := manifest.GetAPIVersion(); apiVersion != "" {
if _, ok := structSchema.Properties.Get("apiVersion"); ok {
structSchema.SetProperty("apiVersion", &jsonschema.EnumType{
Enum: []any{apiVersion},
}, false)
}
}
}
return structSchema
default:
panic(fmt.Errorf("unsupported type %T", t))
}
return nil
}
func toPropSchema(ctx context.Context, sf *jsonflags.StructField, opt Opt) jsonschema.Schema {
if !FieldShouldPick(sf.Type, sf.FieldName) {
return nil
}
var fieldDoc []string
if opt.Doc != nil {
for _, name := range []string{
sf.FieldName,
sf.Name,
} {
if fieldDesc := opt.Doc[name]; fieldDesc != "" {
stringEnum := pickStringEnumFromDesc(fieldDesc)
if len(stringEnum) > 0 {
opt = opt.WithEnumInDoc(stringEnum)
}
if i := strings.Index(fieldDesc, "."); i > 0 {
fieldDoc = []string{fieldDesc[0:i], fieldDesc[i+1:]}
} else if i := strings.Index(fieldDesc, "\n"); i > 0 {
fieldDoc = []string{fieldDesc[0:i], fieldDesc[i+1:]}
} else {
fieldDoc = []string{fieldDesc, ""}
}
}
}
}
propSchema := SchemaFromType(ctx, sf.Type, opt.WithDecl(false))
if propSchema != nil {
s, err := PatchSchemaValidation(propSchema, validator.Option{
Type: sf.Type,
Rule: sf.Tag.Get("validate"),
})
if err != nil {
panic(fmt.Errorf("invalid validate %s: %w", sf.Tag.Get("validate"), err))
}
SetTitleOrDescription(s.GetMetadata(), fieldDoc)
if canRuntimeDoc, ok := RuntimeDocerContext.MayFrom(ctx); ok {
if lines, ok := canRuntimeDoc.RuntimeDoc(sf.FieldName); ok {
SetTitleOrDescription(s.GetMetadata(), lines)
}
}
s.GetMetadata().AddExtension(jsonschema.XGoFieldName, sf.FieldName)
return s
}
return nil
}
func pickStringEnumFromDesc(d string) []string {
parts := strings.Split(d, ".")
for _, p := range parts {
line := strings.TrimSpace(p)
if strings.HasPrefix(line, "One of") {
enumValues := strings.Split(line[len("One of")+1:], ",")
for i := range enumValues {
enumValues[i] = strings.TrimSpace(enumValues[i])
}
return enumValues
}
if strings.HasPrefix(line, "Can be") {
enumValues := strings.Split(line[len("Can be")+1:], " or ")
for i := range enumValues {
enumValues[i] = strings.TrimSpace(enumValues[i])
if len(enumValues[i]) > 0 {
if enumValues[i][0] == '"' {
enumValues[i], _ = strconv.Unquote(enumValues[i])
}
}
}
return enumValues
}
}
return nil
}