InputValidationMiddleware.php 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?php
  2. namespace Aws;
  3. use Aws\Api\Service;
  4. /**
  5. * Validates the required input parameters of commands are non empty
  6. *
  7. * @internal
  8. */
  9. class InputValidationMiddleware
  10. {
  11. /** @var callable */
  12. private $nextHandler;
  13. /** @var array */
  14. private $mandatoryAttributeList;
  15. /** @var Service */
  16. private $service;
  17. /**
  18. * Create a middleware wrapper function.
  19. *
  20. * @param Service $service
  21. * @param array $mandatoryAttributeList
  22. * @return callable */
  23. public static function wrap(Service $service, $mandatoryAttributeList) {
  24. if (!is_array($mandatoryAttributeList) ||
  25. array_filter($mandatoryAttributeList, 'is_string') !== $mandatoryAttributeList
  26. ) {
  27. throw new \InvalidArgumentException(
  28. "The mandatory attribute list must be an array of strings"
  29. );
  30. }
  31. return function (callable $handler) use ($service, $mandatoryAttributeList) {
  32. return new self($handler, $service, $mandatoryAttributeList);
  33. };
  34. }
  35. public function __construct(
  36. callable $nextHandler,
  37. Service $service,
  38. $mandatoryAttributeList
  39. ) {
  40. $this->service = $service;
  41. $this->nextHandler = $nextHandler;
  42. $this->mandatoryAttributeList = $mandatoryAttributeList;
  43. }
  44. public function __invoke(CommandInterface $cmd) {
  45. $nextHandler = $this->nextHandler;
  46. $op = $this->service->getOperation($cmd->getName())->toArray();
  47. if (!empty($op['input']['shape'])) {
  48. $service = $this->service->toArray();
  49. if (!empty($input = $service['shapes'][$op['input']['shape']])) {
  50. if (!empty($input['required'])) {
  51. foreach ($input['required'] as $key => $member) {
  52. if (in_array($member, $this->mandatoryAttributeList)) {
  53. $argument = is_string($cmd[$member]) ? trim($cmd[$member]) : $cmd[$member];
  54. if ($argument === '' || $argument === null) {
  55. $commandName = $cmd->getName();
  56. throw new \InvalidArgumentException(
  57. "The {$commandName} operation requires non-empty parameter: {$member}"
  58. );
  59. }
  60. }
  61. }
  62. }
  63. }
  64. }
  65. return $nextHandler($cmd);
  66. }
  67. }