-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathJsonSchema.java
More file actions
554 lines (450 loc) · 16 KB
/
Copy pathJsonSchema.java
File metadata and controls
554 lines (450 loc) · 16 KB
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
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
package fr.maif.json;
import tools.jackson.databind.JsonNode;
import tools.jackson.databind.node.ObjectNode;
import tools.jackson.databind.node.StringNode;
import io.vavr.collection.List;
import io.vavr.control.Option;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import static fr.maif.json.Json.$$;
import static fr.maif.json.JsonWrite.$list;
import static fr.maif.json.JsonWrite.$string;
import static io.vavr.API.*;
import static io.vavr.Predicates.instanceOf;
import static java.util.function.Function.identity;
public interface JsonSchema {
EmptySchema EMPTY_SCHEMA = new EmptySchema();
StringSchema STRING_SCHEMA = new StringSchema();
IntegerSchema INTEGER_SCHEMA = new IntegerSchema();
NumberSchema NUMBER_SCHEMA = new NumberSchema();
DateTimeSchema DATE_TIME_SCHEMA = new DateTimeSchema();
DateSchema DATE_SCHEMA = new DateSchema();
BooleanSchema BOOLEAN_SCHEMA = new BooleanSchema();
ObjectNode toJson();
default RootSchema toRoot() {
if (this instanceof RootSchema) {
return (RootSchema) this;
} else {
return RootSchema.empty(this);
}
}
static EmptySchema emptySchema() {
return EMPTY_SCHEMA;
}
static StringSchema stringSchema() {
return STRING_SCHEMA;
}
static <E extends Enum<E>> EnumSchema<E> enumSchema(Class<E> clazz) {
return new EnumSchema<>(clazz);
}
static EnumSchemaFromStrings enumSchema(List<String> values) {
return new EnumSchemaFromStrings(values);
}
static DateTimeSchema dateTimeSchema() {
return DATE_TIME_SCHEMA;
}
static JsonSchema dateSchema() {
return DATE_SCHEMA;
}
static BooleanSchema booleanSchema() {
return BOOLEAN_SCHEMA;
}
static JsonSchema numberSchema() {
return NUMBER_SCHEMA;
}
static JsonSchema integerSchema() {
return INTEGER_SCHEMA;
}
static ArraySchema arraySchema() {
return new ArraySchema(null);
}
static ArraySchema arraySchema(JsonSchema items) {
return new ArraySchema(items);
}
static ObjectSchema objectSchema() {
return new ObjectSchema(List.empty());
}
static ObjectSchema objectSchema(List<Property> properties) {
return new ObjectSchema(properties);
}
static ObjectSchema objectSchema(Property... properties) {
return new ObjectSchema(List(properties));
}
static ObjectSchema objectSchema(String field, JsonSchema type) {
return new ObjectSchema(List(propertySchema(field, type)));
}
default JsonSchema computeSchema() {
if (this instanceof Property) {
return new ObjectSchema(List((Property) this));
} else {
return this;
}
}
static ObjectSchema objectSchema(String field, JsonSchema type, Boolean required) {
return new ObjectSchema(List(propertySchema(field, type).withRequired(required)));
}
static DefinitionsSchema definitionsSchema(List<Property> properties) {
return new DefinitionsSchema(properties);
}
static RefSchema refSchema(String ref) {
return new RefSchema(ref);
}
static Property propertySchema(String field, JsonSchema... type) {
return new Property(field, Option.of(type).map(List::of).toList().flatMap(identity()), true);
}
static Property propertySchema(String field, List<JsonSchema> types) {
return new Property(field, types, true);
}
static OneOfSchema oneOf(List<JsonSchema> schemas) {
return new OneOfSchema(schemas);
}
static OneOfSchema oneOf(JsonSchema... schemas) {
return new OneOfSchema(List(schemas));
}
static AnyOfSchema anyOf(List<JsonSchema> schemas) {
return new AnyOfSchema(schemas);
}
static AllOfSchema allOf(List<JsonSchema> schemas) {
return new AllOfSchema(schemas);
}
default JsonSchema and(JsonSchema jsonSchema) {
return Match(this).of(
Case($(instanceOf(EmptySchema.class)), obj -> jsonSchema),
Case($(instanceOf(ObjectSchema.class)), obj -> obj.and(jsonSchema)),
Case($(instanceOf(Property.class)), obj -> new ObjectSchema(List.of(obj)).and(jsonSchema)),
Case($(), __ -> this)
);
}
default JsonSchema id(String id) {
return this.toRoot().withId(id);
}
default JsonSchema title(String title) {
return this.toRoot().withTitle(title);
}
default JsonSchema description(String description) {
return this.toRoot().withDescription(description);
}
default JsonSchema schema(String schema) {
return this.toRoot().withSchema(schema);
}
default JsonSchema exemples(List<JsonNode> exemples) {
return this.toRoot().withExemples(exemples);
}
@ToString
@EqualsAndHashCode
class RootSchema implements JsonSchema {
private final Option<String> schema;
private final Option<String> id;
private final Option<String> title;
private final Option<String> description;
private final List<JsonNode> exemples;
private final JsonSchema embeddedSchema;
public RootSchema(Option<String> schema, Option<String> id, Option<String> title, Option<String> description, List<JsonNode> exemples, JsonSchema embeddedSchema) {
this.schema = schema == null ? Option.none(): schema;
this.id = id == null ? Option.none(): id;
this.title = title == null ? Option.none(): title;
this.description = description == null ? Option.none(): description;
this.exemples = exemples == null ? List.empty(): exemples;
this.embeddedSchema = embeddedSchema;
}
public static RootSchema empty(JsonSchema embeddedSchema) {
return new RootSchema(Option.none(), Option.none(), Option.none(), Option.none(), List.empty(), embeddedSchema);
}
public RootSchema withSchema(String schema) {
if (embeddedSchema instanceof RootSchema) {
return ((RootSchema)embeddedSchema).withSchema(schema);
}
return new RootSchema(Option.of(schema), id, title, description, exemples, embeddedSchema);
}
public RootSchema withId(String id) {
if (embeddedSchema instanceof RootSchema) {
return ((RootSchema)embeddedSchema).withId(id);
}
return new RootSchema(schema, Option.of(id), title, description, exemples, embeddedSchema);
}
public RootSchema withTitle(String title) {
if (embeddedSchema instanceof RootSchema) {
return ((RootSchema)embeddedSchema).withTitle(title);
}
return new RootSchema(schema, id, Option.of(title), description, exemples, embeddedSchema);
}
public RootSchema withDescription(String description) {
if (embeddedSchema instanceof RootSchema) {
return ((RootSchema)embeddedSchema).withDescription(description);
}
return new RootSchema(schema, id, title, Option.of(description), exemples, embeddedSchema);
}
public RootSchema withExemples(List<JsonNode> exemples) {
if (embeddedSchema instanceof RootSchema) {
return ((RootSchema)embeddedSchema).withExemples(exemples);
}
return new RootSchema(schema, id, title, description, Option.of(exemples).toList().flatMap(identity()), embeddedSchema);
}
@Override
public ObjectNode toJson() {
ObjectNode currentSchema = embeddedSchema.toJson();
return Json.obj(currentSchema,
$$("$schema", schema),
$$("$id", id),
$$("title", title),
$$("description", description),
$$("exemples", Json.arr(exemples.toJavaArray(JsonNode[]::new)))
);
}
}
@ToString
@EqualsAndHashCode
class EmptySchema implements JsonSchema {
@Override
public ObjectNode toJson() {
return Json.obj();
}
}
@ToString
@EqualsAndHashCode
class StringSchema implements JsonSchema {
@Override
public ObjectNode toJson() {
return Json.obj($$("type", "string"));
}
}
@ToString
@EqualsAndHashCode
class OneOfSchema implements JsonSchema {
private final List<JsonSchema> schemas;
public OneOfSchema(List<JsonSchema> schemas) {
this.schemas = schemas.distinct();
}
@Override
public ObjectNode toJson() {
return Json.obj($$("oneOf", Json.arr(schemas.map(JsonSchema::toJson))));
}
}
@ToString
@EqualsAndHashCode
class AnyOfSchema implements JsonSchema {
private final List<JsonSchema> schemas;
public AnyOfSchema(List<JsonSchema> schemas) {
this.schemas = schemas;
}
@Override
public ObjectNode toJson() {
return Json.obj($$("anyOf", Json.arr(schemas.map(JsonSchema::toJson))));
}
}
@ToString
@EqualsAndHashCode
class AllOfSchema implements JsonSchema {
private final List<JsonSchema> schemas;
public AllOfSchema(List<JsonSchema> schemas) {
this.schemas = schemas;
}
@Override
public ObjectNode toJson() {
return Json.obj($$("allOf", Json.arr(schemas.map(JsonSchema::toJson))));
}
}
@ToString
@EqualsAndHashCode
class EnumSchema<E extends Enum<E>> implements JsonSchema {
private final Class<E> enumClass;
public EnumSchema(Class<E> enumClass) {
this.enumClass = enumClass;
}
@Override
public ObjectNode toJson() {
return Json.obj(
$$("type", "string"),
$$("enum", Json.arr(List.of(enumClass.getEnumConstants()).map(Enum::name).map(StringNode::new)))
);
}
}
@ToString
@EqualsAndHashCode
class EnumSchemaFromStrings implements JsonSchema {
private final List<String> values;
public EnumSchemaFromStrings(List<String> values) {
this.values = values;
}
@Override
public ObjectNode toJson() {
return Json.obj(
$$("type", "string"),
$$("enum", values, $list($string()))
);
}
}
@ToString
@EqualsAndHashCode
class DateSchema implements JsonSchema {
@Override
public ObjectNode toJson() {
return Json.obj(
$$("type", "string"),
$$("format", "date")
);
}
}
@ToString
@EqualsAndHashCode
class DateTimeSchema implements JsonSchema {
@Override
public ObjectNode toJson() {
return Json.obj(
$$("type", "string"),
$$("format", "date-time")
);
}
}
@ToString
@EqualsAndHashCode
class BooleanSchema implements JsonSchema {
@Override
public ObjectNode toJson() {
return Json.obj($$("type", "boolean"));
}
}
@ToString
@EqualsAndHashCode
class IntegerSchema implements JsonSchema {
@Override
public ObjectNode toJson() {
return Json.obj($$("type", "integer"));
}
}
@ToString
@EqualsAndHashCode
class NumberSchema implements JsonSchema {
@Override
public ObjectNode toJson() {
return Json.obj($$("type", "number"));
}
}
@ToString
@EqualsAndHashCode
class ArraySchema implements JsonSchema {
private final JsonSchema items;
public ArraySchema(JsonSchema items) {
this.items = items;
}
@Override
public ObjectNode toJson() {
if (items == null) {
return Json.obj($$("type", "array"));
} else {
return Json.obj(
$$("type", "array"),
$$("items", this.items.toJson())
);
}
}
}
@ToString
@EqualsAndHashCode
class ObjectSchema implements JsonSchema {
private final List<Property> properties;
public ObjectSchema(List<Property> properties) {
this.properties = properties;
}
public ObjectSchema and(JsonSchema jsonSchema) {
return Match(jsonSchema).of(
Case($(instanceOf(ObjectSchema.class)), obj -> new ObjectSchema(properties.appendAll(obj.properties))),
Case($(instanceOf(Property.class)), obj -> new ObjectSchema(properties.append(obj))),
Case($(), __ -> this)
);
}
@Override
public ObjectNode toJson() {
if (properties.isEmpty()) {
return Json.obj(
$$("type", "object")
);
} else {
List<String> required = properties.filter(p -> p.required).map(p -> p.name);
return Json.obj(
$$("type", "object"),
$$("required", Json.arr(required.sorted().toJavaArray(String[]::new))),
$$("properties", properties.map(Property::toJson).fold(Json.obj(), Json::merge))
);
}
}
}
@ToString
@EqualsAndHashCode
class DefinitionsSchema implements JsonSchema {
private final List<Property> properties;
public DefinitionsSchema(List<Property> properties) {
this.properties = properties;
}
@Override
public ObjectNode toJson() {
if (properties.isEmpty()) {
return Json.obj(
$$("definitions", Json.obj())
);
} else {
return Json.obj(
$$("definitions", properties.map(Property::toJson).fold(Json.obj(), Json::merge))
);
}
}
}
@ToString
@EqualsAndHashCode
class RefSchema implements JsonSchema {
private final String ref;
public RefSchema(String ref) {
this.ref = ref;
}
@Override
public ObjectNode toJson() {
return Json.obj($$("$ref", ref));
}
}
@ToString
@EqualsAndHashCode
class Property implements JsonSchema {
private final String name;
private final List<JsonSchema> schema;
private final Boolean required;
public Property(String name, List<JsonSchema> schema, Boolean required) {
this.name = name;
this.schema = schema;
this.required = required;
}
public Property withRequired(Boolean required) {
return new Property(name, schema, required);
}
public Property notRequired() {
return new Property(name, schema, false);
}
@Override
public Property id(String id) {
return new Property(name, schema.map(s -> s.id(id)), required);
}
@Override
public Property title(String title) {
return new Property(name, schema.map(s -> s.title(title)), required);
}
@Override
public Property description(String description) {
return new Property(name, schema.map(s -> s.description(description)), required);
}
@Override
public Property schema(String schema) {
return new Property(name, this.schema.map(s -> s.schema(schema)), required);
}
@Override
public Property exemples(List<JsonNode> exemples) {
return new Property(name, schema.map(s -> s.exemples(exemples)), required);
}
@Override
public ObjectNode toJson() {
if (schema.length() == 1) {
return Json.obj($$(name, schema.head().toJson()));
} else {
return Json.obj($$(name, Json.arr(schema.map(JsonSchema::toJson).toJavaArray(ObjectNode[]::new))));
}
}
}
}