EndpointParameterMiddleware.php 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?php
  2. namespace Aws;
  3. use Aws\Api\Service;
  4. use Psr\Http\Message\RequestInterface;
  5. use Psr\Log\InvalidArgumentException;
  6. /**
  7. * Used to update the host based on a modeled endpoint trait
  8. *
  9. * IMPORTANT: this middleware must be added after the "build" step.
  10. *
  11. * @internal
  12. */
  13. class EndpointParameterMiddleware
  14. {
  15. /** @var callable */
  16. private $nextHandler;
  17. /** @var Service */
  18. private $service;
  19. /**
  20. * Create a middleware wrapper function
  21. *
  22. * @param Service $service
  23. * @param array $args
  24. * @return \Closure
  25. */
  26. public static function wrap(Service $service)
  27. {
  28. return function (callable $handler) use ($service) {
  29. return new self($handler, $service);
  30. };
  31. }
  32. public function __construct(callable $nextHandler, Service $service)
  33. {
  34. $this->nextHandler = $nextHandler;
  35. $this->service = $service;
  36. }
  37. public function __invoke(CommandInterface $command, RequestInterface $request)
  38. {
  39. $nextHandler = $this->nextHandler;
  40. $operation = $this->service->getOperation($command->getName());
  41. if (!empty($operation['endpoint']['hostPrefix'])) {
  42. $prefix = $operation['endpoint']['hostPrefix'];
  43. // Captures endpoint parameters stored in the modeled host.
  44. // These are denoted by enclosure in braces, i.e. '{param}'
  45. preg_match_all("/\{([a-zA-Z0-9]+)}/", $prefix, $parameters);
  46. if (!empty($parameters[1])) {
  47. // Captured parameters without braces stored in $parameters[1],
  48. // which should correspond to members in the Command object
  49. foreach ($parameters[1] as $index => $parameter) {
  50. if (empty($command[$parameter])) {
  51. throw new \InvalidArgumentException(
  52. "The parameter '{$parameter}' must be set and not empty."
  53. );
  54. }
  55. // Captured parameters with braces stored in $parameters[0],
  56. // which are replaced by their corresponding Command value
  57. $prefix = str_replace(
  58. $parameters[0][$index],
  59. $command[$parameter],
  60. $prefix
  61. );
  62. }
  63. }
  64. $uri = $request->getUri();
  65. $host = $prefix . $uri->getHost();
  66. if (!\Aws\is_valid_hostname($host)) {
  67. throw new \InvalidArgumentException(
  68. "The supplied parameters result in an invalid hostname: '{$host}'."
  69. );
  70. }
  71. $request = $request->withUri($uri->withHost($host));
  72. }
  73. return $nextHandler($command, $request);
  74. }
  75. }