@@ -15,6 +15,8 @@ class TypeBuilder
15
15
'#/definitions '
16
16
];
17
17
18
+ public $ addNamePrefix = '' ;
19
+
18
20
public $ file = '' ;
19
21
20
22
public function __construct ()
@@ -38,37 +40,66 @@ public function getTypeString($schema, $path = '')
38
40
$ isString = false ;
39
41
$ isNumber = false ;
40
42
43
+ if ($ schema ->const !== null ) {
44
+ return '( ' . var_export ($ schema ->const , true ) . ') ' ;
45
+ }
46
+
47
+ if (!empty ($ schema ->enum )) {
48
+ $ res = '' ;
49
+ foreach ($ schema ->enum as $ value ) {
50
+ $ res .= var_export ($ value , true ) . '| ' ;
51
+ }
52
+ return '( ' . substr ($ res , 0 , -1 ) . ') ' ;
53
+ }
54
+
55
+ if (!empty ($ schema ->getFromRefs ())) {
56
+ $ refs = $ schema ->getFromRefs ();
57
+ $ path = $ refs [0 ];
58
+ }
59
+
41
60
$ type = $ schema ->type ;
61
+ if ($ type === null ) {
62
+ $ type = [];
63
+
64
+ if (!empty ($ schema ->properties ) || !empty ($ schema ->additionalProperties ) || !empty ($ schema ->patternProperties )) {
65
+ $ type [] = Schema::OBJECT ;
66
+ }
67
+
68
+ if (!empty ($ schema ->items ) || !empty ($ schema ->additionalItems )) {
69
+ $ type [] = Schema::_ARRAY ;
70
+ }
71
+ }
72
+
42
73
if (!is_array ($ type )) {
43
74
$ type = [$ type ];
44
75
}
45
76
46
77
$ or = [];
47
78
48
79
if ($ schema ->oneOf !== null ) {
49
- foreach ($ schema ->oneOf as $ item ) {
50
- $ or [] = $ this ->getTypeString ($ item );
80
+ foreach ($ schema ->oneOf as $ i => $ item ) {
81
+ $ or [] = $ this ->getTypeString ($ item, $ path . ' /oneOf/ ' . $ i );
51
82
}
52
83
}
53
84
54
85
if ($ schema ->anyOf !== null ) {
55
- foreach ($ schema ->anyOf as $ item ) {
56
- $ or [] = $ this ->getTypeString ($ item );
86
+ foreach ($ schema ->anyOf as $ i => $ item ) {
87
+ $ or [] = $ this ->getTypeString ($ item, $ path . ' /anyOf/ ' . $ i );
57
88
}
58
89
}
59
90
60
91
if ($ schema ->allOf !== null ) {
61
- foreach ($ schema ->allOf as $ item ) {
62
- $ or [] = $ this ->getTypeString ($ item );
92
+ foreach ($ schema ->allOf as $ i => $ item ) {
93
+ $ or [] = $ this ->getTypeString ($ item, $ path . ' /allOf/ ' . $ i );
63
94
}
64
95
}
65
96
66
97
if ($ schema ->then !== null ) {
67
- $ or [] = $ this ->getTypeString ($ schema ->then );
98
+ $ or [] = $ this ->getTypeString ($ schema ->then , $ path . ' /then ' );
68
99
}
69
100
70
101
if ($ schema ->else !== null ) {
71
- $ or [] = $ this ->getTypeString ($ schema ->else );
102
+ $ or [] = $ this ->getTypeString ($ schema ->else , $ path . ' /else ' );
72
103
}
73
104
74
105
foreach ($ type as $ i => $ t ) {
@@ -201,7 +232,7 @@ private function typeName(Schema $schema, $path)
201
232
}
202
233
}
203
234
204
- return PhpCode::makePhpName ($ path , false );
235
+ return PhpCode::makePhpName ($ this -> addNamePrefix . ' _ ' . $ path , false );
205
236
}
206
237
207
238
private function makeObjectTypeDef (Schema $ schema , $ path )
0 commit comments