S3Client.php 51 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109
  1. <?php
  2. namespace Aws\S3;
  3. use Aws\Api\ApiProvider;
  4. use Aws\Api\DocModel;
  5. use Aws\Api\Service;
  6. use Aws\AwsClient;
  7. use Aws\CacheInterface;
  8. use Aws\ClientResolver;
  9. use Aws\Command;
  10. use Aws\CommandInterface;
  11. use Aws\Configuration\ConfigurationResolver;
  12. use Aws\Exception\AwsException;
  13. use Aws\HandlerList;
  14. use Aws\Identity\S3\S3ExpressIdentityProvider;
  15. use Aws\InputValidationMiddleware;
  16. use Aws\Middleware;
  17. use Aws\ResultInterface;
  18. use Aws\Retry\QuotaManager;
  19. use Aws\RetryMiddleware;
  20. use Aws\RetryMiddlewareV2;
  21. use Aws\S3\RegionalEndpoint\ConfigurationProvider;
  22. use Aws\S3\UseArnRegion\Configuration;
  23. use Aws\S3\UseArnRegion\ConfigurationInterface;
  24. use Aws\S3\UseArnRegion\ConfigurationProvider as UseArnRegionConfigurationProvider;
  25. use GuzzleHttp\Exception\RequestException;
  26. use GuzzleHttp\Promise\PromiseInterface;
  27. use Psr\Http\Message\RequestInterface;
  28. /**
  29. * Client used to interact with **Amazon Simple Storage Service (Amazon S3)**.
  30. *
  31. * @method \Aws\Result abortMultipartUpload(array $args = [])
  32. * @method \GuzzleHttp\Promise\Promise abortMultipartUploadAsync(array $args = [])
  33. * @method \Aws\Result completeMultipartUpload(array $args = [])
  34. * @method \GuzzleHttp\Promise\Promise completeMultipartUploadAsync(array $args = [])
  35. * @method \Aws\Result copyObject(array $args = [])
  36. * @method \GuzzleHttp\Promise\Promise copyObjectAsync(array $args = [])
  37. * @method \Aws\Result createBucket(array $args = [])
  38. * @method \GuzzleHttp\Promise\Promise createBucketAsync(array $args = [])
  39. * @method \Aws\Result createMultipartUpload(array $args = [])
  40. * @method \GuzzleHttp\Promise\Promise createMultipartUploadAsync(array $args = [])
  41. * @method \Aws\Result createSession(array $args = [])
  42. * @method \GuzzleHttp\Promise\Promise createSessionAsync(array $args = [])
  43. * @method \Aws\Result deleteBucket(array $args = [])
  44. * @method \GuzzleHttp\Promise\Promise deleteBucketAsync(array $args = [])
  45. * @method \Aws\Result deleteBucketAnalyticsConfiguration(array $args = [])
  46. * @method \GuzzleHttp\Promise\Promise deleteBucketAnalyticsConfigurationAsync(array $args = [])
  47. * @method \Aws\Result deleteBucketCors(array $args = [])
  48. * @method \GuzzleHttp\Promise\Promise deleteBucketCorsAsync(array $args = [])
  49. * @method \Aws\Result deleteBucketEncryption(array $args = [])
  50. * @method \GuzzleHttp\Promise\Promise deleteBucketEncryptionAsync(array $args = [])
  51. * @method \Aws\Result deleteBucketIntelligentTieringConfiguration(array $args = [])
  52. * @method \GuzzleHttp\Promise\Promise deleteBucketIntelligentTieringConfigurationAsync(array $args = [])
  53. * @method \Aws\Result deleteBucketInventoryConfiguration(array $args = [])
  54. * @method \GuzzleHttp\Promise\Promise deleteBucketInventoryConfigurationAsync(array $args = [])
  55. * @method \Aws\Result deleteBucketLifecycle(array $args = [])
  56. * @method \GuzzleHttp\Promise\Promise deleteBucketLifecycleAsync(array $args = [])
  57. * @method \Aws\Result deleteBucketMetricsConfiguration(array $args = [])
  58. * @method \GuzzleHttp\Promise\Promise deleteBucketMetricsConfigurationAsync(array $args = [])
  59. * @method \Aws\Result deleteBucketOwnershipControls(array $args = [])
  60. * @method \GuzzleHttp\Promise\Promise deleteBucketOwnershipControlsAsync(array $args = [])
  61. * @method \Aws\Result deleteBucketPolicy(array $args = [])
  62. * @method \GuzzleHttp\Promise\Promise deleteBucketPolicyAsync(array $args = [])
  63. * @method \Aws\Result deleteBucketReplication(array $args = [])
  64. * @method \GuzzleHttp\Promise\Promise deleteBucketReplicationAsync(array $args = [])
  65. * @method \Aws\Result deleteBucketTagging(array $args = [])
  66. * @method \GuzzleHttp\Promise\Promise deleteBucketTaggingAsync(array $args = [])
  67. * @method \Aws\Result deleteBucketWebsite(array $args = [])
  68. * @method \GuzzleHttp\Promise\Promise deleteBucketWebsiteAsync(array $args = [])
  69. * @method \Aws\Result deleteObject(array $args = [])
  70. * @method \GuzzleHttp\Promise\Promise deleteObjectAsync(array $args = [])
  71. * @method \Aws\Result deleteObjectTagging(array $args = [])
  72. * @method \GuzzleHttp\Promise\Promise deleteObjectTaggingAsync(array $args = [])
  73. * @method \Aws\Result deleteObjects(array $args = [])
  74. * @method \GuzzleHttp\Promise\Promise deleteObjectsAsync(array $args = [])
  75. * @method \Aws\Result deletePublicAccessBlock(array $args = [])
  76. * @method \GuzzleHttp\Promise\Promise deletePublicAccessBlockAsync(array $args = [])
  77. * @method \Aws\Result getBucketAccelerateConfiguration(array $args = [])
  78. * @method \GuzzleHttp\Promise\Promise getBucketAccelerateConfigurationAsync(array $args = [])
  79. * @method \Aws\Result getBucketAcl(array $args = [])
  80. * @method \GuzzleHttp\Promise\Promise getBucketAclAsync(array $args = [])
  81. * @method \Aws\Result getBucketAnalyticsConfiguration(array $args = [])
  82. * @method \GuzzleHttp\Promise\Promise getBucketAnalyticsConfigurationAsync(array $args = [])
  83. * @method \Aws\Result getBucketCors(array $args = [])
  84. * @method \GuzzleHttp\Promise\Promise getBucketCorsAsync(array $args = [])
  85. * @method \Aws\Result getBucketEncryption(array $args = [])
  86. * @method \GuzzleHttp\Promise\Promise getBucketEncryptionAsync(array $args = [])
  87. * @method \Aws\Result getBucketIntelligentTieringConfiguration(array $args = [])
  88. * @method \GuzzleHttp\Promise\Promise getBucketIntelligentTieringConfigurationAsync(array $args = [])
  89. * @method \Aws\Result getBucketInventoryConfiguration(array $args = [])
  90. * @method \GuzzleHttp\Promise\Promise getBucketInventoryConfigurationAsync(array $args = [])
  91. * @method \Aws\Result getBucketLifecycle(array $args = [])
  92. * @method \GuzzleHttp\Promise\Promise getBucketLifecycleAsync(array $args = [])
  93. * @method \Aws\Result getBucketLifecycleConfiguration(array $args = [])
  94. * @method \GuzzleHttp\Promise\Promise getBucketLifecycleConfigurationAsync(array $args = [])
  95. * @method \Aws\Result getBucketLocation(array $args = [])
  96. * @method \GuzzleHttp\Promise\Promise getBucketLocationAsync(array $args = [])
  97. * @method \Aws\Result getBucketLogging(array $args = [])
  98. * @method \GuzzleHttp\Promise\Promise getBucketLoggingAsync(array $args = [])
  99. * @method \Aws\Result getBucketMetricsConfiguration(array $args = [])
  100. * @method \GuzzleHttp\Promise\Promise getBucketMetricsConfigurationAsync(array $args = [])
  101. * @method \Aws\Result getBucketNotification(array $args = [])
  102. * @method \GuzzleHttp\Promise\Promise getBucketNotificationAsync(array $args = [])
  103. * @method \Aws\Result getBucketNotificationConfiguration(array $args = [])
  104. * @method \GuzzleHttp\Promise\Promise getBucketNotificationConfigurationAsync(array $args = [])
  105. * @method \Aws\Result getBucketOwnershipControls(array $args = [])
  106. * @method \GuzzleHttp\Promise\Promise getBucketOwnershipControlsAsync(array $args = [])
  107. * @method \Aws\Result getBucketPolicy(array $args = [])
  108. * @method \GuzzleHttp\Promise\Promise getBucketPolicyAsync(array $args = [])
  109. * @method \Aws\Result getBucketPolicyStatus(array $args = [])
  110. * @method \GuzzleHttp\Promise\Promise getBucketPolicyStatusAsync(array $args = [])
  111. * @method \Aws\Result getBucketReplication(array $args = [])
  112. * @method \GuzzleHttp\Promise\Promise getBucketReplicationAsync(array $args = [])
  113. * @method \Aws\Result getBucketRequestPayment(array $args = [])
  114. * @method \GuzzleHttp\Promise\Promise getBucketRequestPaymentAsync(array $args = [])
  115. * @method \Aws\Result getBucketTagging(array $args = [])
  116. * @method \GuzzleHttp\Promise\Promise getBucketTaggingAsync(array $args = [])
  117. * @method \Aws\Result getBucketVersioning(array $args = [])
  118. * @method \GuzzleHttp\Promise\Promise getBucketVersioningAsync(array $args = [])
  119. * @method \Aws\Result getBucketWebsite(array $args = [])
  120. * @method \GuzzleHttp\Promise\Promise getBucketWebsiteAsync(array $args = [])
  121. * @method \Aws\Result getObject(array $args = [])
  122. * @method \GuzzleHttp\Promise\Promise getObjectAsync(array $args = [])
  123. * @method \Aws\Result getObjectAcl(array $args = [])
  124. * @method \GuzzleHttp\Promise\Promise getObjectAclAsync(array $args = [])
  125. * @method \Aws\Result getObjectAttributes(array $args = [])
  126. * @method \GuzzleHttp\Promise\Promise getObjectAttributesAsync(array $args = [])
  127. * @method \Aws\Result getObjectLegalHold(array $args = [])
  128. * @method \GuzzleHttp\Promise\Promise getObjectLegalHoldAsync(array $args = [])
  129. * @method \Aws\Result getObjectLockConfiguration(array $args = [])
  130. * @method \GuzzleHttp\Promise\Promise getObjectLockConfigurationAsync(array $args = [])
  131. * @method \Aws\Result getObjectRetention(array $args = [])
  132. * @method \GuzzleHttp\Promise\Promise getObjectRetentionAsync(array $args = [])
  133. * @method \Aws\Result getObjectTagging(array $args = [])
  134. * @method \GuzzleHttp\Promise\Promise getObjectTaggingAsync(array $args = [])
  135. * @method \Aws\Result getObjectTorrent(array $args = [])
  136. * @method \GuzzleHttp\Promise\Promise getObjectTorrentAsync(array $args = [])
  137. * @method \Aws\Result getPublicAccessBlock(array $args = [])
  138. * @method \GuzzleHttp\Promise\Promise getPublicAccessBlockAsync(array $args = [])
  139. * @method \Aws\Result headBucket(array $args = [])
  140. * @method \GuzzleHttp\Promise\Promise headBucketAsync(array $args = [])
  141. * @method \Aws\Result headObject(array $args = [])
  142. * @method \GuzzleHttp\Promise\Promise headObjectAsync(array $args = [])
  143. * @method \Aws\Result listBucketAnalyticsConfigurations(array $args = [])
  144. * @method \GuzzleHttp\Promise\Promise listBucketAnalyticsConfigurationsAsync(array $args = [])
  145. * @method \Aws\Result listBucketIntelligentTieringConfigurations(array $args = [])
  146. * @method \GuzzleHttp\Promise\Promise listBucketIntelligentTieringConfigurationsAsync(array $args = [])
  147. * @method \Aws\Result listBucketInventoryConfigurations(array $args = [])
  148. * @method \GuzzleHttp\Promise\Promise listBucketInventoryConfigurationsAsync(array $args = [])
  149. * @method \Aws\Result listBucketMetricsConfigurations(array $args = [])
  150. * @method \GuzzleHttp\Promise\Promise listBucketMetricsConfigurationsAsync(array $args = [])
  151. * @method \Aws\Result listBuckets(array $args = [])
  152. * @method \GuzzleHttp\Promise\Promise listBucketsAsync(array $args = [])
  153. * @method \Aws\Result listDirectoryBuckets(array $args = [])
  154. * @method \GuzzleHttp\Promise\Promise listDirectoryBucketsAsync(array $args = [])
  155. * @method \Aws\Result listMultipartUploads(array $args = [])
  156. * @method \GuzzleHttp\Promise\Promise listMultipartUploadsAsync(array $args = [])
  157. * @method \Aws\Result listObjectVersions(array $args = [])
  158. * @method \GuzzleHttp\Promise\Promise listObjectVersionsAsync(array $args = [])
  159. * @method \Aws\Result listObjects(array $args = [])
  160. * @method \GuzzleHttp\Promise\Promise listObjectsAsync(array $args = [])
  161. * @method \Aws\Result listObjectsV2(array $args = [])
  162. * @method \GuzzleHttp\Promise\Promise listObjectsV2Async(array $args = [])
  163. * @method \Aws\Result listParts(array $args = [])
  164. * @method \GuzzleHttp\Promise\Promise listPartsAsync(array $args = [])
  165. * @method \Aws\Result putBucketAccelerateConfiguration(array $args = [])
  166. * @method \GuzzleHttp\Promise\Promise putBucketAccelerateConfigurationAsync(array $args = [])
  167. * @method \Aws\Result putBucketAcl(array $args = [])
  168. * @method \GuzzleHttp\Promise\Promise putBucketAclAsync(array $args = [])
  169. * @method \Aws\Result putBucketAnalyticsConfiguration(array $args = [])
  170. * @method \GuzzleHttp\Promise\Promise putBucketAnalyticsConfigurationAsync(array $args = [])
  171. * @method \Aws\Result putBucketCors(array $args = [])
  172. * @method \GuzzleHttp\Promise\Promise putBucketCorsAsync(array $args = [])
  173. * @method \Aws\Result putBucketEncryption(array $args = [])
  174. * @method \GuzzleHttp\Promise\Promise putBucketEncryptionAsync(array $args = [])
  175. * @method \Aws\Result putBucketIntelligentTieringConfiguration(array $args = [])
  176. * @method \GuzzleHttp\Promise\Promise putBucketIntelligentTieringConfigurationAsync(array $args = [])
  177. * @method \Aws\Result putBucketInventoryConfiguration(array $args = [])
  178. * @method \GuzzleHttp\Promise\Promise putBucketInventoryConfigurationAsync(array $args = [])
  179. * @method \Aws\Result putBucketLifecycle(array $args = [])
  180. * @method \GuzzleHttp\Promise\Promise putBucketLifecycleAsync(array $args = [])
  181. * @method \Aws\Result putBucketLifecycleConfiguration(array $args = [])
  182. * @method \GuzzleHttp\Promise\Promise putBucketLifecycleConfigurationAsync(array $args = [])
  183. * @method \Aws\Result putBucketLogging(array $args = [])
  184. * @method \GuzzleHttp\Promise\Promise putBucketLoggingAsync(array $args = [])
  185. * @method \Aws\Result putBucketMetricsConfiguration(array $args = [])
  186. * @method \GuzzleHttp\Promise\Promise putBucketMetricsConfigurationAsync(array $args = [])
  187. * @method \Aws\Result putBucketNotification(array $args = [])
  188. * @method \GuzzleHttp\Promise\Promise putBucketNotificationAsync(array $args = [])
  189. * @method \Aws\Result putBucketNotificationConfiguration(array $args = [])
  190. * @method \GuzzleHttp\Promise\Promise putBucketNotificationConfigurationAsync(array $args = [])
  191. * @method \Aws\Result putBucketOwnershipControls(array $args = [])
  192. * @method \GuzzleHttp\Promise\Promise putBucketOwnershipControlsAsync(array $args = [])
  193. * @method \Aws\Result putBucketPolicy(array $args = [])
  194. * @method \GuzzleHttp\Promise\Promise putBucketPolicyAsync(array $args = [])
  195. * @method \Aws\Result putBucketReplication(array $args = [])
  196. * @method \GuzzleHttp\Promise\Promise putBucketReplicationAsync(array $args = [])
  197. * @method \Aws\Result putBucketRequestPayment(array $args = [])
  198. * @method \GuzzleHttp\Promise\Promise putBucketRequestPaymentAsync(array $args = [])
  199. * @method \Aws\Result putBucketTagging(array $args = [])
  200. * @method \GuzzleHttp\Promise\Promise putBucketTaggingAsync(array $args = [])
  201. * @method \Aws\Result putBucketVersioning(array $args = [])
  202. * @method \GuzzleHttp\Promise\Promise putBucketVersioningAsync(array $args = [])
  203. * @method \Aws\Result putBucketWebsite(array $args = [])
  204. * @method \GuzzleHttp\Promise\Promise putBucketWebsiteAsync(array $args = [])
  205. * @method \Aws\Result putObject(array $args = [])
  206. * @method \GuzzleHttp\Promise\Promise putObjectAsync(array $args = [])
  207. * @method \Aws\Result putObjectAcl(array $args = [])
  208. * @method \GuzzleHttp\Promise\Promise putObjectAclAsync(array $args = [])
  209. * @method \Aws\Result putObjectLegalHold(array $args = [])
  210. * @method \GuzzleHttp\Promise\Promise putObjectLegalHoldAsync(array $args = [])
  211. * @method \Aws\Result putObjectLockConfiguration(array $args = [])
  212. * @method \GuzzleHttp\Promise\Promise putObjectLockConfigurationAsync(array $args = [])
  213. * @method \Aws\Result putObjectRetention(array $args = [])
  214. * @method \GuzzleHttp\Promise\Promise putObjectRetentionAsync(array $args = [])
  215. * @method \Aws\Result putObjectTagging(array $args = [])
  216. * @method \GuzzleHttp\Promise\Promise putObjectTaggingAsync(array $args = [])
  217. * @method \Aws\Result putPublicAccessBlock(array $args = [])
  218. * @method \GuzzleHttp\Promise\Promise putPublicAccessBlockAsync(array $args = [])
  219. * @method \Aws\Result restoreObject(array $args = [])
  220. * @method \GuzzleHttp\Promise\Promise restoreObjectAsync(array $args = [])
  221. * @method \Aws\Result selectObjectContent(array $args = [])
  222. * @method \GuzzleHttp\Promise\Promise selectObjectContentAsync(array $args = [])
  223. * @method \Aws\Result uploadPart(array $args = [])
  224. * @method \GuzzleHttp\Promise\Promise uploadPartAsync(array $args = [])
  225. * @method \Aws\Result uploadPartCopy(array $args = [])
  226. * @method \GuzzleHttp\Promise\Promise uploadPartCopyAsync(array $args = [])
  227. * @method \Aws\Result writeGetObjectResponse(array $args = [])
  228. * @method \GuzzleHttp\Promise\Promise writeGetObjectResponseAsync(array $args = [])
  229. */
  230. class S3Client extends AwsClient implements S3ClientInterface
  231. {
  232. use S3ClientTrait;
  233. /** @var array */
  234. private static $mandatoryAttributes = ['Bucket', 'Key'];
  235. public static function getArguments()
  236. {
  237. $args = parent::getArguments();
  238. $args['retries']['fn'] = [__CLASS__, '_applyRetryConfig'];
  239. $args['api_provider']['fn'] = [__CLASS__, '_applyApiProvider'];
  240. return $args + [
  241. 'bucket_endpoint' => [
  242. 'type' => 'config',
  243. 'valid' => ['bool'],
  244. 'doc' => 'Set to true to send requests to a hardcoded '
  245. . 'bucket endpoint rather than create an endpoint as a '
  246. . 'result of injecting the bucket into the URL. This '
  247. . 'option is useful for interacting with CNAME endpoints.',
  248. ],
  249. 'use_arn_region' => [
  250. 'type' => 'config',
  251. 'valid' => [
  252. 'bool',
  253. Configuration::class,
  254. CacheInterface::class,
  255. 'callable'
  256. ],
  257. 'doc' => 'Set to true to allow passed in ARNs to override'
  258. . ' client region. Accepts...',
  259. 'fn' => [__CLASS__, '_apply_use_arn_region'],
  260. 'default' => [UseArnRegionConfigurationProvider::class, 'defaultProvider'],
  261. ],
  262. 'use_accelerate_endpoint' => [
  263. 'type' => 'config',
  264. 'valid' => ['bool'],
  265. 'doc' => 'Set to true to send requests to an S3 Accelerate'
  266. . ' endpoint by default. Can be enabled or disabled on'
  267. . ' individual operations by setting'
  268. . ' \'@use_accelerate_endpoint\' to true or false. Note:'
  269. . ' you must enable S3 Accelerate on a bucket before it can'
  270. . ' be accessed via an Accelerate endpoint.',
  271. 'default' => false,
  272. ],
  273. 'use_path_style_endpoint' => [
  274. 'type' => 'config',
  275. 'valid' => ['bool'],
  276. 'doc' => 'Set to true to send requests to an S3 path style'
  277. . ' endpoint by default.'
  278. . ' Can be enabled or disabled on individual operations by setting'
  279. . ' \'@use_path_style_endpoint\' to true or false.',
  280. 'default' => false,
  281. ],
  282. 'disable_multiregion_access_points' => [
  283. 'type' => 'config',
  284. 'valid' => ['bool'],
  285. 'doc' => 'Set to true to disable the usage of'
  286. . ' multi region access points. These are enabled by default.'
  287. . ' Can be enabled or disabled on individual operations by setting'
  288. . ' \'@disable_multiregion_access_points\' to true or false.',
  289. 'default' => false,
  290. ],
  291. 'disable_express_session_auth' => [
  292. 'type' => 'config',
  293. 'valid' => ['bool'],
  294. 'doc' => 'Set to true to disable the usage of'
  295. . ' s3 express session authentication. This is enabled by default.',
  296. 'default' => [__CLASS__, '_default_disable_express_session_auth'],
  297. ],
  298. 's3_express_identity_provider' => [
  299. 'type' => 'config',
  300. 'valid' => [
  301. 'bool',
  302. 'callable'
  303. ],
  304. 'doc' => 'Specifies the provider used to generate identities to sign s3 express requests. '
  305. . 'Set to `false` to disable s3 express auth, or a callable provider used to create s3 express '
  306. . 'identities or return null.',
  307. 'default' => [__CLASS__, '_default_s3_express_identity_provider'],
  308. ],
  309. ];
  310. }
  311. /**
  312. * {@inheritdoc}
  313. *
  314. * In addition to the options available to
  315. * {@see Aws\AwsClient::__construct}, S3Client accepts the following
  316. * options:
  317. *
  318. * - bucket_endpoint: (bool) Set to true to send requests to a
  319. * hardcoded bucket endpoint rather than create an endpoint as a result
  320. * of injecting the bucket into the URL. This option is useful for
  321. * interacting with CNAME endpoints. Note: if you are using version 2.243.0
  322. * and above and do not expect the bucket name to appear in the host, you will
  323. * also need to set `use_path_style_endpoint` to `true`.
  324. * - calculate_md5: (bool) Set to false to disable calculating an MD5
  325. * for all Amazon S3 signed uploads.
  326. * - s3_us_east_1_regional_endpoint:
  327. * (Aws\S3\RegionalEndpoint\ConfigurationInterface|Aws\CacheInterface\|callable|string|array)
  328. * Specifies whether to use regional or legacy endpoints for the us-east-1
  329. * region. Provide an Aws\S3\RegionalEndpoint\ConfigurationInterface object, an
  330. * instance of Aws\CacheInterface, a callable configuration provider used
  331. * to create endpoint configuration, a string value of `legacy` or
  332. * `regional`, or an associative array with the following keys:
  333. * endpoint_types: (string) Set to `legacy` or `regional`, defaults to
  334. * `legacy`
  335. * - use_accelerate_endpoint: (bool) Set to true to send requests to an S3
  336. * Accelerate endpoint by default. Can be enabled or disabled on
  337. * individual operations by setting '@use_accelerate_endpoint' to true or
  338. * false. Note: you must enable S3 Accelerate on a bucket before it can be
  339. * accessed via an Accelerate endpoint.
  340. * - use_arn_region: (Aws\S3\UseArnRegion\ConfigurationInterface,
  341. * Aws\CacheInterface, bool, callable) Set to true to enable the client
  342. * to use the region from a supplied ARN argument instead of the client's
  343. * region. Provide an instance of Aws\S3\UseArnRegion\ConfigurationInterface,
  344. * an instance of Aws\CacheInterface, a callable that provides a promise for
  345. * a Configuration object, or a boolean value. Defaults to false (i.e.
  346. * the SDK will not follow the ARN region if it conflicts with the client
  347. * region and instead throw an error).
  348. * - use_dual_stack_endpoint: (bool) Set to true to send requests to an S3
  349. * Dual Stack endpoint by default, which enables IPv6 Protocol.
  350. * Can be enabled or disabled on individual operations by setting
  351. * '@use_dual_stack_endpoint\' to true or false. Note:
  352. * you cannot use it together with an accelerate endpoint.
  353. * - use_path_style_endpoint: (bool) Set to true to send requests to an S3
  354. * path style endpoint by default.
  355. * Can be enabled or disabled on individual operations by setting
  356. * '@use_path_style_endpoint\' to true or false. Note:
  357. * you cannot use it together with an accelerate endpoint.
  358. * - disable_multiregion_access_points: (bool) Set to true to disable
  359. * sending multi region requests. They are enabled by default.
  360. * Can be enabled or disabled on individual operations by setting
  361. * '@disable_multiregion_access_points\' to true or false. Note:
  362. * you cannot use it together with an accelerate or dualstack endpoint.
  363. *
  364. * @param array $args
  365. */
  366. public function __construct(array $args)
  367. {
  368. if (
  369. !isset($args['s3_us_east_1_regional_endpoint'])
  370. || $args['s3_us_east_1_regional_endpoint'] instanceof CacheInterface
  371. ) {
  372. $args['s3_us_east_1_regional_endpoint'] = ConfigurationProvider::defaultProvider($args);
  373. }
  374. $this->addBuiltIns($args);
  375. parent::__construct($args);
  376. $stack = $this->getHandlerList();
  377. $stack->appendInit(SSECMiddleware::wrap($this->getEndpoint()->getScheme()), 's3.ssec');
  378. $stack->appendBuild(ApplyChecksumMiddleware::wrap($this->getApi()), 's3.checksum');
  379. $stack->appendBuild(
  380. Middleware::contentType(['PutObject', 'UploadPart']),
  381. 's3.content_type'
  382. );
  383. if ($this->getConfig('bucket_endpoint')) {
  384. $stack->appendBuild(BucketEndpointMiddleware::wrap(), 's3.bucket_endpoint');
  385. } elseif (!$this->isUseEndpointV2()) {
  386. $stack->appendBuild(
  387. S3EndpointMiddleware::wrap(
  388. $this->getRegion(),
  389. $this->getConfig('endpoint_provider'),
  390. [
  391. 'accelerate' => $this->getConfig('use_accelerate_endpoint'),
  392. 'path_style' => $this->getConfig('use_path_style_endpoint'),
  393. 'use_fips_endpoint' => $this->getConfig('use_fips_endpoint'),
  394. 'dual_stack' =>
  395. $this->getConfig('use_dual_stack_endpoint')->isUseDualStackEndpoint(),
  396. ]
  397. ),
  398. 's3.endpoint_middleware'
  399. );
  400. }
  401. $stack->appendBuild(
  402. BucketEndpointArnMiddleware::wrap(
  403. $this->getApi(),
  404. $this->getRegion(),
  405. [
  406. 'use_arn_region' => $this->getConfig('use_arn_region'),
  407. 'accelerate' => $this->getConfig('use_accelerate_endpoint'),
  408. 'path_style' => $this->getConfig('use_path_style_endpoint'),
  409. 'dual_stack' =>
  410. $this->getConfig('use_dual_stack_endpoint')->isUseDualStackEndpoint(),
  411. 'use_fips_endpoint' => $this->getConfig('use_fips_endpoint'),
  412. 'disable_multiregion_access_points' =>
  413. $this->getConfig('disable_multiregion_access_points'),
  414. 'endpoint' => $args['endpoint'] ?? null
  415. ],
  416. $this->isUseEndpointV2()
  417. ),
  418. 's3.bucket_endpoint_arn'
  419. );
  420. if ($this->getConfig('disable_express_session_auth')) {
  421. $stack->prependSign(
  422. $this->getDisableExpressSessionAuthMiddleware(),
  423. 's3.disable_express_session_auth'
  424. );
  425. }
  426. $stack->appendValidate(
  427. InputValidationMiddleware::wrap($this->getApi(), self::$mandatoryAttributes),
  428. 'input_validation_middleware'
  429. );
  430. $stack->appendSign(PutObjectUrlMiddleware::wrap(), 's3.put_object_url');
  431. $stack->appendSign(PermanentRedirectMiddleware::wrap(), 's3.permanent_redirect');
  432. $stack->appendInit(Middleware::sourceFile($this->getApi()), 's3.source_file');
  433. $stack->appendInit($this->getSaveAsParameter(), 's3.save_as');
  434. $stack->appendInit($this->getLocationConstraintMiddleware(), 's3.location');
  435. $stack->appendInit($this->getEncodingTypeMiddleware(), 's3.auto_encode');
  436. $stack->appendInit($this->getHeadObjectMiddleware(), 's3.head_object');
  437. if ($this->isUseEndpointV2()) {
  438. $this->processEndpointV2Model();
  439. $stack->after('builder',
  440. 's3.check_empty_path_with_query',
  441. $this->getEmptyPathWithQuery());
  442. }
  443. }
  444. /**
  445. * Determine if a string is a valid name for a DNS compatible Amazon S3
  446. * bucket.
  447. *
  448. * DNS compatible bucket names can be used as a subdomain in a URL (e.g.,
  449. * "<bucket>.s3.amazonaws.com").
  450. *
  451. * @param string $bucket Bucket name to check.
  452. *
  453. * @return bool
  454. */
  455. public static function isBucketDnsCompatible($bucket)
  456. {
  457. if (!is_string($bucket)) {
  458. return false;
  459. }
  460. $bucketLen = strlen($bucket);
  461. return ($bucketLen >= 3 && $bucketLen <= 63) &&
  462. // Cannot look like an IP address
  463. !filter_var($bucket, FILTER_VALIDATE_IP) &&
  464. preg_match('/^[a-z0-9]([a-z0-9\-\.]*[a-z0-9])?$/', $bucket);
  465. }
  466. public static function _apply_use_arn_region($value, array &$args, HandlerList $list)
  467. {
  468. if ($value instanceof CacheInterface) {
  469. $value = UseArnRegionConfigurationProvider::defaultProvider($args);
  470. }
  471. if (is_callable($value)) {
  472. $value = $value();
  473. }
  474. if ($value instanceof PromiseInterface) {
  475. $value = $value->wait();
  476. }
  477. if ($value instanceof ConfigurationInterface) {
  478. $args['use_arn_region'] = $value;
  479. } else {
  480. // The Configuration class itself will validate other inputs
  481. $args['use_arn_region'] = new Configuration($value);
  482. }
  483. }
  484. public function createPresignedRequest(CommandInterface $command, $expires, array $options = [])
  485. {
  486. $command = clone $command;
  487. $command->getHandlerList()->remove('signer');
  488. $request = \Aws\serialize($command);
  489. $signing_name = $command['@context']['signing_service']
  490. ?? $this->getSigningName($request->getUri()->getHost());
  491. $signature_version = $this->getSignatureVersionFromCommand($command);
  492. /** @var \Aws\Signature\SignatureInterface $signer */
  493. $signer = call_user_func(
  494. $this->getSignatureProvider(),
  495. $signature_version,
  496. $signing_name,
  497. $this->getConfig('signing_region')
  498. );
  499. if ($signature_version == 'v4-s3express') {
  500. $provider = $this->getConfig('s3_express_identity_provider');
  501. $credentials = $provider($command)->wait();
  502. } else {
  503. $credentials = $this->getCredentials()->wait();
  504. }
  505. return $signer->presign(
  506. $request,
  507. $credentials,
  508. $expires,
  509. $options
  510. );
  511. }
  512. /**
  513. * Returns the URL to an object identified by its bucket and key.
  514. *
  515. * The URL returned by this method is not signed nor does it ensure that the
  516. * bucket and key given to the method exist. If you need a signed URL, then
  517. * use the {@see \Aws\S3\S3Client::createPresignedRequest} method and get
  518. * the URI of the signed request.
  519. *
  520. * @param string $bucket The name of the bucket where the object is located
  521. * @param string $key The key of the object
  522. *
  523. * @return string The URL to the object
  524. */
  525. public function getObjectUrl($bucket, $key)
  526. {
  527. $command = $this->getCommand('GetObject', [
  528. 'Bucket' => $bucket,
  529. 'Key' => $key
  530. ]);
  531. return (string) \Aws\serialize($command)->getUri();
  532. }
  533. /**
  534. * Raw URL encode a key and allow for '/' characters
  535. *
  536. * @param string $key Key to encode
  537. *
  538. * @return string Returns the encoded key
  539. */
  540. public static function encodeKey($key)
  541. {
  542. return str_replace('%2F', '/', rawurlencode($key));
  543. }
  544. /**
  545. * Provides a middleware that removes the need to specify LocationConstraint on CreateBucket.
  546. *
  547. * @return \Closure
  548. */
  549. private function getLocationConstraintMiddleware()
  550. {
  551. $region = $this->getRegion();
  552. return static function (callable $handler) use ($region) {
  553. return function (Command $command, $request = null) use ($handler, $region) {
  554. if ($command->getName() === 'CreateBucket') {
  555. $locationConstraint = $command['CreateBucketConfiguration']['LocationConstraint']
  556. ?? null;
  557. if ($locationConstraint === 'us-east-1') {
  558. unset($command['CreateBucketConfiguration']);
  559. } elseif ('us-east-1' !== $region && empty($locationConstraint)) {
  560. $command['CreateBucketConfiguration'] = ['LocationConstraint' => $region];
  561. }
  562. }
  563. return $handler($command, $request);
  564. };
  565. };
  566. }
  567. /**
  568. * Provides a middleware that supports the `SaveAs` parameter.
  569. *
  570. * @return \Closure
  571. */
  572. private function getSaveAsParameter()
  573. {
  574. return static function (callable $handler) {
  575. return function (Command $command, $request = null) use ($handler) {
  576. if ($command->getName() === 'GetObject' && isset($command['SaveAs'])) {
  577. $command['@http']['sink'] = $command['SaveAs'];
  578. unset($command['SaveAs']);
  579. }
  580. return $handler($command, $request);
  581. };
  582. };
  583. }
  584. /**
  585. * Provides a middleware that disables content decoding on HeadObject
  586. * commands.
  587. *
  588. * @return \Closure
  589. */
  590. private function getHeadObjectMiddleware()
  591. {
  592. return static function (callable $handler) {
  593. return function (
  594. CommandInterface $command,
  595. RequestInterface $request = null
  596. ) use ($handler) {
  597. if ($command->getName() === 'HeadObject'
  598. && !isset($command['@http']['decode_content'])
  599. ) {
  600. $command['@http']['decode_content'] = false;
  601. }
  602. return $handler($command, $request);
  603. };
  604. };
  605. }
  606. /**
  607. * Provides a middleware that autopopulates the EncodingType parameter on
  608. * ListObjects commands.
  609. *
  610. * @return \Closure
  611. */
  612. private function getEncodingTypeMiddleware()
  613. {
  614. return static function (callable $handler) {
  615. return function (Command $command, $request = null) use ($handler) {
  616. $autoSet = false;
  617. if ($command->getName() === 'ListObjects'
  618. && empty($command['EncodingType'])
  619. ) {
  620. $command['EncodingType'] = 'url';
  621. $autoSet = true;
  622. }
  623. return $handler($command, $request)
  624. ->then(function (ResultInterface $result) use ($autoSet) {
  625. if ($result['EncodingType'] === 'url' && $autoSet) {
  626. static $topLevel = [
  627. 'Delimiter',
  628. 'Marker',
  629. 'NextMarker',
  630. 'Prefix',
  631. ];
  632. static $nested = [
  633. ['Contents', 'Key'],
  634. ['CommonPrefixes', 'Prefix'],
  635. ];
  636. foreach ($topLevel as $key) {
  637. if (isset($result[$key])) {
  638. $result[$key] = urldecode($result[$key]);
  639. }
  640. }
  641. foreach ($nested as $steps) {
  642. if (isset($result[$steps[0]])) {
  643. foreach ($result[$steps[0]] as $key => $part) {
  644. if (isset($part[$steps[1]])) {
  645. $result[$steps[0]][$key][$steps[1]]
  646. = urldecode($part[$steps[1]]);
  647. }
  648. }
  649. }
  650. }
  651. }
  652. return $result;
  653. });
  654. };
  655. };
  656. }
  657. /**
  658. * Provides a middleware that checks for an empty path and a
  659. * non-empty query string.
  660. *
  661. * @return \Closure
  662. */
  663. private function getEmptyPathWithQuery()
  664. {
  665. return static function (callable $handler) {
  666. return function (Command $command, RequestInterface $request) use ($handler) {
  667. $uri = $request->getUri();
  668. if (empty($uri->getPath()) && !empty($uri->getQuery())) {
  669. $uri = $uri->withPath('/');
  670. $request = $request->withUri($uri);
  671. }
  672. return $handler($command, $request);
  673. };
  674. };
  675. }
  676. /**
  677. * Provides a middleware that disables express session auth when
  678. * customers opt out of it.
  679. *
  680. * @return \Closure
  681. */
  682. private function getDisableExpressSessionAuthMiddleware()
  683. {
  684. return function (callable $handler) {
  685. return function (
  686. CommandInterface $command,
  687. RequestInterface $request = null
  688. ) use ($handler) {
  689. if (!empty($command['@context']['signature_version'])
  690. && $command['@context']['signature_version'] === 'v4-s3express'
  691. ) {
  692. $command['@context']['signature_version'] = 's3v4';
  693. }
  694. return $handler($command, $request);
  695. };
  696. };
  697. }
  698. /**
  699. * Special handling for when the service name is s3-object-lambda.
  700. * So, if the host contains s3-object-lambda, then the service name
  701. * returned is s3-object-lambda, otherwise the default signing service is returned.
  702. * @param string $host The host to validate if is a s3-object-lambda URL.
  703. * @return string returns the signing service name to be used
  704. */
  705. private function getSigningName($host)
  706. {
  707. if (strpos( $host, 's3-object-lambda')) {
  708. return 's3-object-lambda';
  709. }
  710. return $this->getConfig('signing_name');
  711. }
  712. public static function _default_disable_express_session_auth(array &$args) {
  713. return ConfigurationResolver::resolve(
  714. 's3_disable_express_session_auth',
  715. false,
  716. 'bool',
  717. $args
  718. );
  719. }
  720. public static function _default_s3_express_identity_provider(array $args)
  721. {
  722. if ($args['config']['disable_express_session_auth']) {
  723. return false;
  724. }
  725. return new S3ExpressIdentityProvider($args['region']);
  726. }
  727. /**
  728. * Modifies API definition to remove `Bucket` from request URIs.
  729. * This is now handled by the endpoint ruleset.
  730. *
  731. * @return void
  732. *
  733. * @internal
  734. */
  735. private function processEndpointV2Model()
  736. {
  737. $definition = $this->getApi()->getDefinition();
  738. foreach($definition['operations'] as &$operation) {
  739. if (isset($operation['http']['requestUri'])) {
  740. $requestUri = $operation['http']['requestUri'];
  741. if ($requestUri === "/{Bucket}") {
  742. $requestUri = str_replace('/{Bucket}', '/', $requestUri);
  743. } else {
  744. $requestUri = str_replace('/{Bucket}', '', $requestUri);
  745. }
  746. $operation['http']['requestUri'] = $requestUri;
  747. }
  748. }
  749. $this->getApi()->setDefinition($definition);
  750. }
  751. /**
  752. * Adds service-specific client built-in values
  753. *
  754. * @return void
  755. */
  756. private function addBuiltIns($args)
  757. {
  758. if (isset($args['region'])
  759. && $args['region'] !== 'us-east-1'
  760. ) {
  761. return false;
  762. }
  763. if (!isset($args['region'])
  764. && ConfigurationResolver::resolve('region', '', 'string') !== 'us-east-1'
  765. ) {
  766. return false;
  767. }
  768. $key = 'AWS::S3::UseGlobalEndpoint';
  769. $result = $args['s3_us_east_1_regional_endpoint'] instanceof \Closure ?
  770. $args['s3_us_east_1_regional_endpoint']()->wait() : $args['s3_us_east_1_regional_endpoint'];
  771. if (is_string($result)) {
  772. if ($result === 'regional') {
  773. $value = false;
  774. } else if ($result === 'legacy') {
  775. $value = true;
  776. } else {
  777. return;
  778. }
  779. } else {
  780. if ($result->isFallback()
  781. || $result->getEndpointsType() === 'legacy'
  782. ) {
  783. $value = true;
  784. } else {
  785. $value = false;
  786. }
  787. }
  788. $this->clientBuiltIns[$key] = $value;
  789. }
  790. /** @internal */
  791. public static function _applyRetryConfig($value, $args, HandlerList $list)
  792. {
  793. if ($value) {
  794. $config = \Aws\Retry\ConfigurationProvider::unwrap($value);
  795. if ($config->getMode() === 'legacy') {
  796. $maxRetries = $config->getMaxAttempts() - 1;
  797. $decider = RetryMiddleware::createDefaultDecider($maxRetries);
  798. $decider = function ($retries, $command, $request, $result, $error) use ($decider, $maxRetries) {
  799. $maxRetries = $command['@retries'] ?? $maxRetries;
  800. if ($decider($retries, $command, $request, $result, $error)) {
  801. return true;
  802. }
  803. if ($error instanceof AwsException
  804. && $retries < $maxRetries
  805. ) {
  806. if ($error->getResponse()
  807. && $error->getResponse()->getStatusCode() >= 400
  808. ) {
  809. return strpos(
  810. $error->getResponse()->getBody(),
  811. 'Your socket connection to the server'
  812. ) !== false;
  813. }
  814. if ($error->getPrevious() instanceof RequestException) {
  815. // All commands except CompleteMultipartUpload are
  816. // idempotent and may be retried without worry if a
  817. // networking error has occurred.
  818. return $command->getName() !== 'CompleteMultipartUpload';
  819. }
  820. }
  821. return false;
  822. };
  823. $delay = [RetryMiddleware::class, 'exponentialDelay'];
  824. $list->appendSign(Middleware::retry($decider, $delay), 'retry');
  825. } else {
  826. $defaultDecider = RetryMiddlewareV2::createDefaultDecider(
  827. new QuotaManager(),
  828. $config->getMaxAttempts()
  829. );
  830. $list->appendSign(
  831. RetryMiddlewareV2::wrap(
  832. $config,
  833. [
  834. 'collect_stats' => $args['stats']['retries'],
  835. 'decider' => function(
  836. $attempts,
  837. CommandInterface $cmd,
  838. $result
  839. ) use ($defaultDecider, $config) {
  840. $isRetryable = $defaultDecider($attempts, $cmd, $result);
  841. if (!$isRetryable
  842. && $result instanceof AwsException
  843. && $attempts < $config->getMaxAttempts()
  844. ) {
  845. if (!empty($result->getResponse())
  846. && $result->getResponse()->getStatusCode() >= 400
  847. ) {
  848. return strpos(
  849. $result->getResponse()->getBody(),
  850. 'Your socket connection to the server'
  851. ) !== false;
  852. }
  853. if ($result->getPrevious() instanceof RequestException
  854. && $cmd->getName() !== 'CompleteMultipartUpload'
  855. ) {
  856. $isRetryable = true;
  857. }
  858. }
  859. return $isRetryable;
  860. }
  861. ]
  862. ),
  863. 'retry'
  864. );
  865. }
  866. }
  867. }
  868. /** @internal */
  869. public static function _applyApiProvider($value, array &$args, HandlerList $list)
  870. {
  871. ClientResolver::_apply_api_provider($value, $args);
  872. $args['parser'] = new GetBucketLocationParser(
  873. new ValidateResponseChecksumParser(
  874. new AmbiguousSuccessParser(
  875. new RetryableMalformedResponseParser(
  876. $args['parser'],
  877. $args['exception_class']
  878. ),
  879. $args['error_parser'],
  880. $args['exception_class']
  881. ),
  882. $args['api']
  883. )
  884. );
  885. }
  886. /**
  887. * @internal
  888. * @codeCoverageIgnore
  889. */
  890. public static function applyDocFilters(array $api, array $docs)
  891. {
  892. $b64 = '<div class="alert alert-info">This value will be base64 encoded on your behalf.</div>';
  893. $opt = '<div class="alert alert-info">This value will be computed for you it is not supplied.</div>';
  894. // Add a note on the CopyObject docs
  895. $s3ExceptionRetryMessage = "<p>Additional info on response behavior: if there is"
  896. . " an internal error in S3 after the request was successfully recieved,"
  897. . " a 200 response will be returned with an <code>S3Exception</code> embedded"
  898. . " in it; this will still be caught and retried by"
  899. . " <code>RetryMiddleware.</code></p>";
  900. $docs['operations']['CopyObject'] .= $s3ExceptionRetryMessage;
  901. $docs['operations']['CompleteMultipartUpload'] .= $s3ExceptionRetryMessage;
  902. $docs['operations']['UploadPartCopy'] .= $s3ExceptionRetryMessage;
  903. $docs['operations']['UploadPart'] .= $s3ExceptionRetryMessage;
  904. // Add note about stream ownership in the putObject call
  905. $guzzleStreamMessage = "<p>Additional info on behavior of the stream"
  906. . " parameters: Psr7 takes ownership of streams and will automatically close"
  907. . " streams when this method is called with a stream as the <code>Body</code>"
  908. . " parameter. To prevent this, set the <code>Body</code> using"
  909. . " <code>GuzzleHttp\Psr7\stream_for</code> method with a is an instance of"
  910. . " <code>Psr\Http\Message\StreamInterface</code>, and it will be returned"
  911. . " unmodified. This will allow you to keep the stream in scope. </p>";
  912. $docs['operations']['PutObject'] .= $guzzleStreamMessage;
  913. // Add the SourceFile parameter.
  914. $docs['shapes']['SourceFile']['base'] = 'The path to a file on disk to use instead of the Body parameter.';
  915. $api['shapes']['SourceFile'] = ['type' => 'string'];
  916. $api['shapes']['PutObjectRequest']['members']['SourceFile'] = ['shape' => 'SourceFile'];
  917. $api['shapes']['UploadPartRequest']['members']['SourceFile'] = ['shape' => 'SourceFile'];
  918. // Add the ContentSHA256 parameter.
  919. $docs['shapes']['ContentSHA256']['base'] = 'A SHA256 hash of the body content of the request.';
  920. $api['shapes']['ContentSHA256'] = ['type' => 'string'];
  921. $api['shapes']['PutObjectRequest']['members']['ContentSHA256'] = ['shape' => 'ContentSHA256'];
  922. $api['shapes']['UploadPartRequest']['members']['ContentSHA256'] = ['shape' => 'ContentSHA256'];
  923. $docs['shapes']['ContentSHA256']['append'] = $opt;
  924. // Add the AddContentMD5 parameter.
  925. $docs['shapes']['AddContentMD5']['base'] = 'Set to true to calculate the ContentMD5 for the upload.';
  926. $api['shapes']['AddContentMD5'] = ['type' => 'boolean'];
  927. $api['shapes']['PutObjectRequest']['members']['AddContentMD5'] = ['shape' => 'AddContentMD5'];
  928. $api['shapes']['UploadPartRequest']['members']['AddContentMD5'] = ['shape' => 'AddContentMD5'];
  929. // Add the SaveAs parameter.
  930. $docs['shapes']['SaveAs']['base'] = 'The path to a file on disk to save the object data.';
  931. $api['shapes']['SaveAs'] = ['type' => 'string'];
  932. $api['shapes']['GetObjectRequest']['members']['SaveAs'] = ['shape' => 'SaveAs'];
  933. // Several SSECustomerKey documentation updates.
  934. $docs['shapes']['SSECustomerKey']['append'] = $b64;
  935. $docs['shapes']['CopySourceSSECustomerKey']['append'] = $b64;
  936. $docs['shapes']['SSECustomerKeyMd5']['append'] = $opt;
  937. // Add the ObjectURL to various output shapes and documentation.
  938. $docs['shapes']['ObjectURL']['base'] = 'The URI of the created object.';
  939. $api['shapes']['ObjectURL'] = ['type' => 'string'];
  940. $api['shapes']['PutObjectOutput']['members']['ObjectURL'] = ['shape' => 'ObjectURL'];
  941. $api['shapes']['CopyObjectOutput']['members']['ObjectURL'] = ['shape' => 'ObjectURL'];
  942. $api['shapes']['CompleteMultipartUploadOutput']['members']['ObjectURL'] = ['shape' => 'ObjectURL'];
  943. // Fix references to Location Constraint.
  944. unset($api['shapes']['CreateBucketRequest']['payload']);
  945. $api['shapes']['BucketLocationConstraint']['enum'] = [
  946. "ap-northeast-1",
  947. "ap-southeast-2",
  948. "ap-southeast-1",
  949. "cn-north-1",
  950. "eu-central-1",
  951. "eu-west-1",
  952. "us-east-1",
  953. "us-west-1",
  954. "us-west-2",
  955. "sa-east-1",
  956. ];
  957. // Add a note that the ContentMD5 is automatically computed, except for with PutObject and UploadPart
  958. $docs['shapes']['ContentMD5']['append'] = '<div class="alert alert-info">The value will be computed on '
  959. . 'your behalf.</div>';
  960. $docs['shapes']['ContentMD5']['excludeAppend'] = ['PutObjectRequest', 'UploadPartRequest'];
  961. //Add a note to ContentMD5 for PutObject and UploadPart that specifies the value is required
  962. // When uploading to a bucket with object lock enabled and that it is not computed automatically
  963. $objectLock = '<div class="alert alert-info">This value is required if uploading to a bucket '
  964. . 'which has Object Lock enabled. It will not be calculated for you automatically. If you wish to have '
  965. . 'the value calculated for you, use the `AddContentMD5` parameter.</div>';
  966. $docs['shapes']['ContentMD5']['appendOnly'] = [
  967. 'message' => $objectLock,
  968. 'shapes' => ['PutObjectRequest', 'UploadPartRequest']
  969. ];
  970. return [
  971. new Service($api, ApiProvider::defaultProvider()),
  972. new DocModel($docs)
  973. ];
  974. }
  975. /**
  976. * @internal
  977. * @codeCoverageIgnore
  978. */
  979. public static function addDocExamples($examples)
  980. {
  981. $getObjectExample = [
  982. 'input' => [
  983. 'Bucket' => 'arn:aws:s3:us-east-1:123456789012:accesspoint:myaccesspoint',
  984. 'Key' => 'my-key'
  985. ],
  986. 'output' => [
  987. 'Body' => 'class GuzzleHttp\Psr7\Stream#208 (7) {...}',
  988. 'ContentLength' => '11',
  989. 'ContentType' => 'application/octet-stream',
  990. ],
  991. 'comments' => [
  992. 'input' => '',
  993. 'output' => 'Simplified example output'
  994. ],
  995. 'description' => 'The following example retrieves an object by referencing the bucket via an S3 accesss point ARN. Result output is simplified for the example.',
  996. 'id' => '',
  997. 'title' => 'To get an object via an S3 access point ARN'
  998. ];
  999. if (isset($examples['GetObject'])) {
  1000. $examples['GetObject'] []= $getObjectExample;
  1001. } else {
  1002. $examples['GetObject'] = [$getObjectExample];
  1003. }
  1004. $putObjectExample = [
  1005. 'input' => [
  1006. 'Bucket' => 'arn:aws:s3:us-east-1:123456789012:accesspoint:myaccesspoint',
  1007. 'Key' => 'my-key',
  1008. 'Body' => 'my-body',
  1009. ],
  1010. 'output' => [
  1011. 'ObjectURL' => 'https://my-bucket.s3.us-east-1.amazonaws.com/my-key'
  1012. ],
  1013. 'comments' => [
  1014. 'input' => '',
  1015. 'output' => 'Simplified example output'
  1016. ],
  1017. 'description' => 'The following example uploads an object by referencing the bucket via an S3 accesss point ARN. Result output is simplified for the example.',
  1018. 'id' => '',
  1019. 'title' => 'To upload an object via an S3 access point ARN'
  1020. ];
  1021. if (isset($examples['PutObject'])) {
  1022. $examples['PutObject'] []= $putObjectExample;
  1023. } else {
  1024. $examples['PutObject'] = [$putObjectExample];
  1025. }
  1026. return $examples;
  1027. }
  1028. /**
  1029. * @param CommandInterface $command
  1030. * @return array|mixed|null
  1031. */
  1032. private function getSignatureVersionFromCommand(CommandInterface $command)
  1033. {
  1034. return $command['@context']['signature_version']
  1035. ?? $this->getConfig('signature_version');
  1036. }
  1037. }