BucketEndpointMiddleware.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <?php
  2. namespace Aws\S3;
  3. use Aws\CommandInterface;
  4. use Psr\Http\Message\RequestInterface;
  5. /**
  6. * Used to update the host used for S3 requests in the case of using a
  7. * "bucket endpoint" or CNAME bucket.
  8. *
  9. * IMPORTANT: this middleware must be added after the "build" step.
  10. *
  11. * @internal
  12. */
  13. class BucketEndpointMiddleware
  14. {
  15. private static $exclusions = ['GetBucketLocation' => true];
  16. private $nextHandler;
  17. /**
  18. * Create a middleware wrapper function.
  19. *
  20. * @return callable
  21. */
  22. public static function wrap()
  23. {
  24. return function (callable $handler) {
  25. return new self($handler);
  26. };
  27. }
  28. public function __construct(callable $nextHandler)
  29. {
  30. $this->nextHandler = $nextHandler;
  31. }
  32. public function __invoke(CommandInterface $command, RequestInterface $request)
  33. {
  34. $nextHandler = $this->nextHandler;
  35. $bucket = $command['Bucket'];
  36. if ($bucket && !isset(self::$exclusions[$command->getName()])) {
  37. $request = $this->modifyRequest($request, $command);
  38. }
  39. return $nextHandler($command, $request);
  40. }
  41. /**
  42. * Performs a one-time removal of Bucket from path, then if
  43. * the bucket name is duplicated in the path, performs additional
  44. * removal which is dependent on the number of occurrences of the bucket
  45. * name in a path-like format in the key name.
  46. *
  47. * @return string
  48. */
  49. private function removeBucketFromPath($path, $bucket, $key)
  50. {
  51. $occurrencesInKey = $this->getBucketNameOccurrencesInKey($key, $bucket);
  52. do {
  53. $len = strlen($bucket) + 1;
  54. if (substr($path, 0, $len) === "/{$bucket}") {
  55. $path = substr($path, $len);
  56. }
  57. } while (substr_count($path, "/{$bucket}") > $occurrencesInKey + 1);
  58. return $path ?: '/';
  59. }
  60. private function removeDuplicateBucketFromHost($host, $bucket)
  61. {
  62. if (substr_count($host, $bucket) > 1) {
  63. while (strpos($host, "{$bucket}.{$bucket}") === 0) {
  64. $hostArr = explode('.', $host);
  65. array_shift($hostArr);
  66. $host = implode('.', $hostArr);
  67. }
  68. }
  69. return $host;
  70. }
  71. private function getBucketNameOccurrencesInKey($key, $bucket)
  72. {
  73. $occurrences = 0;
  74. if (empty($key)) {
  75. return $occurrences;
  76. }
  77. $segments = explode('/', $key);
  78. foreach($segments as $segment) {
  79. if (strpos($segment, $bucket) === 0) {
  80. $occurrences++;
  81. }
  82. }
  83. return $occurrences;
  84. }
  85. private function modifyRequest(
  86. RequestInterface $request,
  87. CommandInterface $command
  88. ) {
  89. $key = isset($command['Key']) ? $command['Key'] : null;
  90. $uri = $request->getUri();
  91. $path = $uri->getPath();
  92. $host = $uri->getHost();
  93. $bucket = $command['Bucket'];
  94. $path = $this->removeBucketFromPath($path, $bucket, $key);
  95. $host = $this->removeDuplicateBucketFromHost($host, $bucket);
  96. // Modify the Key to make sure the key is encoded, but slashes are not.
  97. if ($key) {
  98. $path = S3Client::encodeKey(rawurldecode($path));
  99. }
  100. return $request->withUri(
  101. $uri->withHost($host)
  102. ->withPath($path)
  103. );
  104. }
  105. }