@@ -35,7 +35,7 @@ public function check(&$element, $schema = null, ?JsonPointer $path = null, $i =
35
35
36
36
switch ($ schema ->format ) {
37
37
case 'date ' :
38
- if (!$ date = $ this ->validateDateTime ($ element , 'Y-m-d ' )) {
38
+ if (is_string ( $ element ) && !$ date = $ this ->validateDateTime ($ element , 'Y-m-d ' )) {
39
39
$ this ->addError (ConstraintError::FORMAT_DATE (), $ path , [
40
40
'date ' => $ element ,
41
41
'format ' => $ schema ->format
@@ -45,7 +45,7 @@ public function check(&$element, $schema = null, ?JsonPointer $path = null, $i =
45
45
break ;
46
46
47
47
case 'time ' :
48
- if (!$ this ->validateDateTime ($ element , 'H:i:s ' )) {
48
+ if (is_string ( $ element ) && !$ this ->validateDateTime ($ element , 'H:i:s ' )) {
49
49
$ this ->addError (ConstraintError::FORMAT_TIME (), $ path , [
50
50
'time ' => json_encode ($ element ),
51
51
'format ' => $ schema ->format ,
@@ -55,7 +55,7 @@ public function check(&$element, $schema = null, ?JsonPointer $path = null, $i =
55
55
break ;
56
56
57
57
case 'date-time ' :
58
- if (null === Rfc3339::createFromString ($ element )) {
58
+ if (is_string ( $ element ) && null === Rfc3339::createFromString ($ element )) {
59
59
$ this ->addError (ConstraintError::FORMAT_DATE_TIME (), $ path , [
60
60
'dateTime ' => json_encode ($ element ),
61
61
'format ' => $ schema ->format
@@ -101,14 +101,14 @@ public function check(&$element, $schema = null, ?JsonPointer $path = null, $i =
101
101
break ;
102
102
103
103
case 'uri ' :
104
- if (null === filter_var ($ element , FILTER_VALIDATE_URL , FILTER_NULL_ON_FAILURE )) {
104
+ if (is_string ( $ element ) && null === filter_var ($ element , FILTER_VALIDATE_URL , FILTER_NULL_ON_FAILURE )) {
105
105
$ this ->addError (ConstraintError::FORMAT_URL (), $ path , ['format ' => $ schema ->format ]);
106
106
}
107
107
break ;
108
108
109
109
case 'uriref ' :
110
110
case 'uri-reference ' :
111
- if (null === filter_var ($ element , FILTER_VALIDATE_URL , FILTER_NULL_ON_FAILURE )) {
111
+ if (is_string ( $ element ) && null === filter_var ($ element , FILTER_VALIDATE_URL , FILTER_NULL_ON_FAILURE )) {
112
112
// FILTER_VALIDATE_URL does not conform to RFC-3986, and cannot handle relative URLs, but
113
113
// the json-schema spec uses RFC-3986, so need a bit of hackery to properly validate them.
114
114
// See https://tools.ietf.org/html/rfc3986#section-4.2 for additional information.
@@ -133,20 +133,20 @@ public function check(&$element, $schema = null, ?JsonPointer $path = null, $i =
133
133
break ;
134
134
135
135
case 'email ' :
136
- if (null === filter_var ($ element , FILTER_VALIDATE_EMAIL , FILTER_NULL_ON_FAILURE | FILTER_FLAG_EMAIL_UNICODE )) {
136
+ if (is_string ( $ element ) && null === filter_var ($ element , FILTER_VALIDATE_EMAIL , FILTER_NULL_ON_FAILURE | FILTER_FLAG_EMAIL_UNICODE )) {
137
137
$ this ->addError (ConstraintError::FORMAT_EMAIL (), $ path , ['format ' => $ schema ->format ]);
138
138
}
139
139
break ;
140
140
141
141
case 'ip-address ' :
142
142
case 'ipv4 ' :
143
- if (null === filter_var ($ element , FILTER_VALIDATE_IP , FILTER_NULL_ON_FAILURE | FILTER_FLAG_IPV4 )) {
143
+ if (is_string ( $ element ) && null === filter_var ($ element , FILTER_VALIDATE_IP , FILTER_NULL_ON_FAILURE | FILTER_FLAG_IPV4 )) {
144
144
$ this ->addError (ConstraintError::FORMAT_IP (), $ path , ['format ' => $ schema ->format ]);
145
145
}
146
146
break ;
147
147
148
148
case 'ipv6 ' :
149
- if (null === filter_var ($ element , FILTER_VALIDATE_IP , FILTER_NULL_ON_FAILURE | FILTER_FLAG_IPV6 )) {
149
+ if (is_string ( $ element ) && null === filter_var ($ element , FILTER_VALIDATE_IP , FILTER_NULL_ON_FAILURE | FILTER_FLAG_IPV6 )) {
150
150
$ this ->addError (ConstraintError::FORMAT_IP (), $ path , ['format ' => $ schema ->format ]);
151
151
}
152
152
break ;
@@ -186,11 +186,19 @@ protected function validateDateTime($datetime, $format)
186
186
187
187
protected function validateRegex ($ regex )
188
188
{
189
+ if (!is_string ($ regex )) {
190
+ return true ;
191
+ }
192
+
189
193
return false !== @preg_match (self ::jsonPatternToPhpRegex ($ regex ), '' );
190
194
}
191
195
192
196
protected function validateColor ($ color )
193
197
{
198
+ if (!is_string ($ color )) {
199
+ return true ;
200
+ }
201
+
194
202
if (in_array (strtolower ($ color ), ['aqua ' , 'black ' , 'blue ' , 'fuchsia ' ,
195
203
'gray ' , 'green ' , 'lime ' , 'maroon ' , 'navy ' , 'olive ' , 'orange ' , 'purple ' ,
196
204
'red ' , 'silver ' , 'teal ' , 'white ' , 'yellow ' ])) {
@@ -215,6 +223,10 @@ protected function validatePhone($phone)
215
223
216
224
protected function validateHostname ($ host )
217
225
{
226
+ if (!is_string ($ host )) {
227
+ return true ;
228
+ }
229
+
218
230
$ hostnameRegex = '/^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9])\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\-]*[A-Za-z0-9])$/i ' ;
219
231
220
232
return preg_match ($ hostnameRegex , $ host );
0 commit comments