SchemaValidator.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. <?php
  2. namespace GuzzleHttp\Command\Guzzle;
  3. use GuzzleHttp\Command\ToArrayInterface;
  4. /**
  5. * Default parameter validator
  6. */
  7. class SchemaValidator
  8. {
  9. /**
  10. * Whether or not integers are converted to strings when an integer is
  11. * received for a string input
  12. *
  13. * @var bool
  14. */
  15. protected $castIntegerToStringType;
  16. /** @var array Errors encountered while validating */
  17. protected $errors;
  18. /**
  19. * @param bool $castIntegerToStringType Set to true to convert integers
  20. * into strings when a required type is a string and the input value is
  21. * an integer. Defaults to true.
  22. */
  23. public function __construct($castIntegerToStringType = true)
  24. {
  25. $this->castIntegerToStringType = $castIntegerToStringType;
  26. }
  27. /**
  28. * @param Parameter $param
  29. * @param $value
  30. * @return bool
  31. */
  32. public function validate(Parameter $param, &$value)
  33. {
  34. $this->errors = [];
  35. $this->recursiveProcess($param, $value);
  36. if (empty($this->errors)) {
  37. return true;
  38. } else {
  39. sort($this->errors);
  40. return false;
  41. }
  42. }
  43. /**
  44. * Get the errors encountered while validating
  45. *
  46. * @return array
  47. */
  48. public function getErrors()
  49. {
  50. return $this->errors ?: [];
  51. }
  52. /**
  53. * From the allowable types, determine the type that the variable matches
  54. *
  55. * @param string|array $type Parameter type
  56. * @param mixed $value Value to determine the type
  57. *
  58. * @return string|false Returns the matching type on
  59. */
  60. protected function determineType($type, $value)
  61. {
  62. foreach ((array) $type as $t) {
  63. if ($t == 'string'
  64. && (is_string($value) || (is_object($value) && method_exists($value, '__toString')))
  65. ) {
  66. return 'string';
  67. } elseif ($t == 'object' && (is_array($value) || is_object($value))) {
  68. return 'object';
  69. } elseif ($t == 'array' && is_array($value)) {
  70. return 'array';
  71. } elseif ($t == 'integer' && is_integer($value)) {
  72. return 'integer';
  73. } elseif ($t == 'boolean' && is_bool($value)) {
  74. return 'boolean';
  75. } elseif ($t == 'number' && is_numeric($value)) {
  76. return 'number';
  77. } elseif ($t == 'numeric' && is_numeric($value)) {
  78. return 'numeric';
  79. } elseif ($t == 'null' && !$value) {
  80. return 'null';
  81. } elseif ($t == 'any') {
  82. return 'any';
  83. }
  84. }
  85. return false;
  86. }
  87. /**
  88. * Recursively validate a parameter
  89. *
  90. * @param Parameter $param API parameter being validated
  91. * @param mixed $value Value to validate and validate. The value may
  92. * change during this validate.
  93. * @param string $path Current validation path (used for error reporting)
  94. * @param int $depth Current depth in the validation validate
  95. *
  96. * @return bool Returns true if valid, or false if invalid
  97. */
  98. protected function recursiveProcess(
  99. Parameter $param,
  100. &$value,
  101. $path = '',
  102. $depth = 0
  103. ) {
  104. // Update the value by adding default or static values
  105. $value = $param->getValue($value);
  106. $required = $param->isRequired();
  107. // if the value is null and the parameter is not required or is static,
  108. // then skip any further recursion
  109. if ((null === $value && !$required) || $param->isStatic()) {
  110. return true;
  111. }
  112. $type = $param->getType();
  113. // Attempt to limit the number of times is_array is called by tracking
  114. // if the value is an array
  115. $valueIsArray = is_array($value);
  116. // If a name is set then update the path so that validation messages
  117. // are more helpful
  118. if ($name = $param->getName()) {
  119. $path .= "[{$name}]";
  120. }
  121. if ($type == 'object') {
  122. // Determine whether or not this "value" has properties and should
  123. // be traversed
  124. $traverse = $temporaryValue = false;
  125. // Convert the value to an array
  126. if (!$valueIsArray && $value instanceof ToArrayInterface) {
  127. $value = $value->toArray();
  128. }
  129. if ($valueIsArray) {
  130. // Ensure that the array is associative and not numerically
  131. // indexed
  132. if (isset($value[0])) {
  133. $this->errors[] = "{$path} must be an array of properties. Got a numerically indexed array.";
  134. return false;
  135. }
  136. $traverse = true;
  137. } elseif ($value === null) {
  138. // Attempt to let the contents be built up by default values if
  139. // possible
  140. $value = [];
  141. $temporaryValue = $valueIsArray = $traverse = true;
  142. }
  143. if ($traverse) {
  144. if ($properties = $param->getProperties()) {
  145. // if properties were found, validate each property
  146. foreach ($properties as $property) {
  147. $name = $property->getName();
  148. if (isset($value[$name])) {
  149. $this->recursiveProcess($property, $value[$name], $path, $depth + 1);
  150. } else {
  151. $current = null;
  152. $this->recursiveProcess($property, $current, $path, $depth + 1);
  153. // Only set the value if it was populated
  154. if (null !== $current) {
  155. $value[$name] = $current;
  156. }
  157. }
  158. }
  159. }
  160. $additional = $param->getAdditionalProperties();
  161. if ($additional !== true) {
  162. // If additional properties were found, then validate each
  163. // against the additionalProperties attr.
  164. $keys = array_keys($value);
  165. // Determine the keys that were specified that were not
  166. // listed in the properties of the schema
  167. $diff = array_diff($keys, array_keys($properties));
  168. if (!empty($diff)) {
  169. // Determine which keys are not in the properties
  170. if ($additional instanceof Parameter) {
  171. foreach ($diff as $key) {
  172. $this->recursiveProcess($additional, $value[$key], "{$path}[{$key}]", $depth);
  173. }
  174. } else {
  175. // if additionalProperties is set to false and there
  176. // are additionalProperties in the values, then fail
  177. foreach ($diff as $prop) {
  178. $this->errors[] = sprintf('%s[%s] is not an allowed property', $path, $prop);
  179. }
  180. }
  181. }
  182. }
  183. // A temporary value will be used to traverse elements that
  184. // have no corresponding input value. This allows nested
  185. // required parameters with default values to bubble up into the
  186. // input. Here we check if we used a temp value and nothing
  187. // bubbled up, then we need to remote the value.
  188. if ($temporaryValue && empty($value)) {
  189. $value = null;
  190. $valueIsArray = false;
  191. }
  192. }
  193. } elseif ($type == 'array' && $valueIsArray && $param->getItems()) {
  194. foreach ($value as $i => &$item) {
  195. // Validate each item in an array against the items attribute of the schema
  196. $this->recursiveProcess($param->getItems(), $item, $path . "[{$i}]", $depth + 1);
  197. }
  198. }
  199. // If the value is required and the type is not null, then there is an
  200. // error if the value is not set
  201. if ($required && $value === null && $type != 'null') {
  202. $message = "{$path} is " . ($param->getType()
  203. ? ('a required ' . implode(' or ', (array) $param->getType()))
  204. : 'required');
  205. if ($param->has('description')) {
  206. $message .= ': ' . $param->getDescription();
  207. }
  208. $this->errors[] = $message;
  209. return false;
  210. }
  211. // Validate that the type is correct. If the type is string but an
  212. // integer was passed, the class can be instructed to cast the integer
  213. // to a string to pass validation. This is the default behavior.
  214. if ($type && (!$type = $this->determineType($type, $value))) {
  215. if ($this->castIntegerToStringType
  216. && $param->getType() == 'string'
  217. && is_integer($value)
  218. ) {
  219. $value = (string) $value;
  220. } else {
  221. $this->errors[] = "{$path} must be of type " . implode(' or ', (array) $param->getType());
  222. }
  223. }
  224. // Perform type specific validation for strings, arrays, and integers
  225. if ($type == 'string') {
  226. // Strings can have enums which are a list of predefined values
  227. if (($enum = $param->getEnum()) && !in_array($value, $enum)) {
  228. $this->errors[] = "{$path} must be one of " . implode(' or ', array_map(function ($s) {
  229. return '"' . addslashes($s) . '"';
  230. }, $enum));
  231. }
  232. // Strings can have a regex pattern that the value must match
  233. if (($pattern = $param->getPattern()) && !preg_match($pattern, $value)) {
  234. $this->errors[] = "{$path} must match the following regular expression: {$pattern}";
  235. }
  236. $strLen = null;
  237. if ($min = $param->getMinLength()) {
  238. $strLen = strlen($value);
  239. if ($strLen < $min) {
  240. $this->errors[] = "{$path} length must be greater than or equal to {$min}";
  241. }
  242. }
  243. if ($max = $param->getMaxLength()) {
  244. if (($strLen ?: strlen($value)) > $max) {
  245. $this->errors[] = "{$path} length must be less than or equal to {$max}";
  246. }
  247. }
  248. } elseif ($type == 'array') {
  249. $size = null;
  250. if ($min = $param->getMinItems()) {
  251. $size = count($value);
  252. if ($size < $min) {
  253. $this->errors[] = "{$path} must contain {$min} or more elements";
  254. }
  255. }
  256. if ($max = $param->getMaxItems()) {
  257. if (($size ?: count($value)) > $max) {
  258. $this->errors[] = "{$path} must contain {$max} or fewer elements";
  259. }
  260. }
  261. } elseif ($type == 'integer' || $type == 'number' || $type == 'numeric') {
  262. if (($min = $param->getMinimum()) && $value < $min) {
  263. $this->errors[] = "{$path} must be greater than or equal to {$min}";
  264. }
  265. if (($max = $param->getMaximum()) && $value > $max) {
  266. $this->errors[] = "{$path} must be less than or equal to {$max}";
  267. }
  268. }
  269. return empty($this->errors);
  270. }
  271. }