PostObject.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. <?php
  2. namespace Aws\S3;
  3. use Aws\Credentials\CredentialsInterface;
  4. use GuzzleHttp\Psr7\Uri;
  5. /**
  6. * @deprecated
  7. */
  8. class PostObject
  9. {
  10. private $client;
  11. private $bucket;
  12. private $formAttributes;
  13. private $formInputs;
  14. private $jsonPolicy;
  15. /**
  16. * Constructs the PostObject.
  17. *
  18. * @param S3ClientInterface $client Client used with the POST object
  19. * @param string $bucket Bucket to use
  20. * @param array $formInputs Associative array of form input
  21. * fields.
  22. * @param string|array $jsonPolicy JSON encoded POST policy document.
  23. * The policy will be base64 encoded
  24. * and applied to the form on your
  25. * behalf.
  26. */
  27. public function __construct(
  28. S3ClientInterface $client,
  29. $bucket,
  30. array $formInputs,
  31. $jsonPolicy
  32. ) {
  33. $this->client = $client;
  34. $this->bucket = $bucket;
  35. if (is_array($jsonPolicy)) {
  36. $jsonPolicy = json_encode($jsonPolicy);
  37. }
  38. $this->jsonPolicy = $jsonPolicy;
  39. $this->formAttributes = [
  40. 'action' => $this->generateUri(),
  41. 'method' => 'POST',
  42. 'enctype' => 'multipart/form-data'
  43. ];
  44. $this->formInputs = $formInputs + ['key' => '${filename}'];
  45. $credentials = $client->getCredentials()->wait();
  46. $this->formInputs += $this->getPolicyAndSignature($credentials);
  47. }
  48. /**
  49. * Gets the S3 client.
  50. *
  51. * @return S3ClientInterface
  52. */
  53. public function getClient()
  54. {
  55. return $this->client;
  56. }
  57. /**
  58. * Gets the bucket name.
  59. *
  60. * @return string
  61. */
  62. public function getBucket()
  63. {
  64. return $this->bucket;
  65. }
  66. /**
  67. * Gets the form attributes as an array.
  68. *
  69. * @return array
  70. */
  71. public function getFormAttributes()
  72. {
  73. return $this->formAttributes;
  74. }
  75. /**
  76. * Set a form attribute.
  77. *
  78. * @param string $attribute Form attribute to set.
  79. * @param string $value Value to set.
  80. */
  81. public function setFormAttribute($attribute, $value)
  82. {
  83. $this->formAttributes[$attribute] = $value;
  84. }
  85. /**
  86. * Gets the form inputs as an array.
  87. *
  88. * @return array
  89. */
  90. public function getFormInputs()
  91. {
  92. return $this->formInputs;
  93. }
  94. /**
  95. * Set a form input.
  96. *
  97. * @param string $field Field name to set
  98. * @param string $value Value to set.
  99. */
  100. public function setFormInput($field, $value)
  101. {
  102. $this->formInputs[$field] = $value;
  103. }
  104. /**
  105. * Gets the raw JSON policy.
  106. *
  107. * @return string
  108. */
  109. public function getJsonPolicy()
  110. {
  111. return $this->jsonPolicy;
  112. }
  113. private function generateUri()
  114. {
  115. $uri = new Uri($this->client->getEndpoint());
  116. if ($this->client->getConfig('use_path_style_endpoint') === true
  117. || ($uri->getScheme() === 'https'
  118. && strpos($this->bucket, '.') !== false)
  119. ) {
  120. // Use path-style URLs
  121. $uri = $uri->withPath("/{$this->bucket}");
  122. } else {
  123. // Use virtual-style URLs
  124. $uri = $uri->withHost($this->bucket . '.' . $uri->getHost());
  125. }
  126. return (string) $uri;
  127. }
  128. protected function getPolicyAndSignature(CredentialsInterface $creds)
  129. {
  130. $jsonPolicy64 = base64_encode($this->jsonPolicy);
  131. return [
  132. 'AWSAccessKeyId' => $creds->getAccessKeyId(),
  133. 'policy' => $jsonPolicy64,
  134. 'signature' => base64_encode(hash_hmac(
  135. 'sha1',
  136. $jsonPolicy64,
  137. $creds->getSecretKey(),
  138. true
  139. ))
  140. ];
  141. }
  142. }