SSECMiddleware.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?php
  2. namespace Aws\S3;
  3. use Aws\CommandInterface;
  4. use Psr\Http\Message\RequestInterface;
  5. /**
  6. * Simplifies the SSE-C process by encoding and hashing the key.
  7. * @internal
  8. */
  9. class SSECMiddleware
  10. {
  11. private $endpointScheme;
  12. private $nextHandler;
  13. /**
  14. * Provide the URI scheme of the client sending requests.
  15. *
  16. * @param string $endpointScheme URI scheme (http/https).
  17. *
  18. * @return callable
  19. */
  20. public static function wrap($endpointScheme)
  21. {
  22. return function (callable $handler) use ($endpointScheme) {
  23. return new self($endpointScheme, $handler);
  24. };
  25. }
  26. public function __construct($endpointScheme, callable $nextHandler)
  27. {
  28. $this->nextHandler = $nextHandler;
  29. $this->endpointScheme = $endpointScheme;
  30. }
  31. public function __invoke(
  32. CommandInterface $command,
  33. RequestInterface $request = null
  34. ) {
  35. // Allows only HTTPS connections when using SSE-C
  36. if (($command['SSECustomerKey'] || $command['CopySourceSSECustomerKey'])
  37. && $this->endpointScheme !== 'https'
  38. ) {
  39. throw new \RuntimeException('You must configure your S3 client to '
  40. . 'use HTTPS in order to use the SSE-C features.');
  41. }
  42. // Prepare the normal SSE-CPK headers
  43. if ($command['SSECustomerKey']) {
  44. $this->prepareSseParams($command);
  45. }
  46. // If it's a copy operation, prepare the SSE-CPK headers for the source.
  47. if ($command['CopySourceSSECustomerKey']) {
  48. $this->prepareSseParams($command, 'CopySource');
  49. }
  50. $f = $this->nextHandler;
  51. return $f($command, $request);
  52. }
  53. private function prepareSseParams(CommandInterface $command, $prefix = '')
  54. {
  55. // Base64 encode the provided key
  56. $key = $command[$prefix . 'SSECustomerKey'];
  57. $command[$prefix . 'SSECustomerKey'] = base64_encode($key);
  58. // Base64 the provided MD5 or, generate an MD5 if not provided
  59. if ($md5 = $command[$prefix . 'SSECustomerKeyMD5']) {
  60. $command[$prefix . 'SSECustomerKeyMD5'] = base64_encode($md5);
  61. } else {
  62. $command[$prefix . 'SSECustomerKeyMD5'] = base64_encode(md5($key, true));
  63. }
  64. }
  65. }