S3ObjectTrait.php 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2017 Robin Appelman <robin@icewind.nl>
  4. *
  5. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  6. * @author Florent <florent@coppint.com>
  7. * @author Morris Jobke <hey@morrisjobke.de>
  8. * @author Robin Appelman <robin@icewind.nl>
  9. * @author Roeland Jago Douma <roeland@famdouma.nl>
  10. *
  11. * @license GNU AGPL version 3 or any later version
  12. *
  13. * This program is free software: you can redistribute it and/or modify
  14. * it under the terms of the GNU Affero General Public License as
  15. * published by the Free Software Foundation, either version 3 of the
  16. * License, or (at your option) any later version.
  17. *
  18. * This program is distributed in the hope that it will be useful,
  19. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. * GNU Affero General Public License for more details.
  22. *
  23. * You should have received a copy of the GNU Affero General Public License
  24. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  25. *
  26. */
  27. namespace OC\Files\ObjectStore;
  28. use Aws\S3\Exception\S3MultipartUploadException;
  29. use Aws\S3\MultipartUploader;
  30. use Aws\S3\S3Client;
  31. use GuzzleHttp\Psr7\Utils;
  32. use OC\Files\Stream\SeekableHttpStream;
  33. use GuzzleHttp\Psr7;
  34. use Psr\Http\Message\StreamInterface;
  35. trait S3ObjectTrait {
  36. /**
  37. * Returns the connection
  38. *
  39. * @return S3Client connected client
  40. * @throws \Exception if connection could not be made
  41. */
  42. abstract protected function getConnection();
  43. abstract protected function getCertificateBundlePath(): ?string;
  44. /**
  45. * @param string $urn the unified resource name used to identify the object
  46. * @return resource stream with the read data
  47. * @throws \Exception when something goes wrong, message will be logged
  48. * @since 7.0.0
  49. */
  50. public function readObject($urn) {
  51. return SeekableHttpStream::open(function ($range) use ($urn) {
  52. $command = $this->getConnection()->getCommand('GetObject', [
  53. 'Bucket' => $this->bucket,
  54. 'Key' => $urn,
  55. 'Range' => 'bytes=' . $range,
  56. ]);
  57. $request = \Aws\serialize($command);
  58. $headers = [];
  59. foreach ($request->getHeaders() as $key => $values) {
  60. foreach ($values as $value) {
  61. $headers[] = "$key: $value";
  62. }
  63. }
  64. $opts = [
  65. 'http' => [
  66. 'protocol_version' => $request->getProtocolVersion(),
  67. 'header' => $headers,
  68. ]
  69. ];
  70. $bundle = $this->getCertificateBundlePath();
  71. if ($bundle) {
  72. $opts['ssl'] = [
  73. 'cafile' => $bundle
  74. ];
  75. }
  76. if ($this->getProxy()) {
  77. $opts['http']['proxy'] = $this->getProxy();
  78. $opts['http']['request_fulluri'] = true;
  79. }
  80. $context = stream_context_create($opts);
  81. return fopen($request->getUri(), 'r', false, $context);
  82. });
  83. }
  84. /**
  85. * Single object put helper
  86. *
  87. * @param string $urn the unified resource name used to identify the object
  88. * @param StreamInterface $stream stream with the data to write
  89. * @param string|null $mimetype the mimetype to set for the remove object @since 22.0.0
  90. * @throws \Exception when something goes wrong, message will be logged
  91. */
  92. protected function writeSingle(string $urn, StreamInterface $stream, string $mimetype = null): void {
  93. $this->getConnection()->putObject([
  94. 'Bucket' => $this->bucket,
  95. 'Key' => $urn,
  96. 'Body' => $stream,
  97. 'ACL' => 'private',
  98. 'ContentType' => $mimetype,
  99. ]);
  100. }
  101. /**
  102. * Multipart upload helper that tries to avoid orphaned fragments in S3
  103. *
  104. * @param string $urn the unified resource name used to identify the object
  105. * @param StreamInterface $stream stream with the data to write
  106. * @param string|null $mimetype the mimetype to set for the remove object
  107. * @throws \Exception when something goes wrong, message will be logged
  108. */
  109. protected function writeMultiPart(string $urn, StreamInterface $stream, string $mimetype = null): void {
  110. $uploader = new MultipartUploader($this->getConnection(), $stream, [
  111. 'bucket' => $this->bucket,
  112. 'key' => $urn,
  113. 'part_size' => $this->uploadPartSize,
  114. 'params' => [
  115. 'ContentType' => $mimetype
  116. ],
  117. ]);
  118. try {
  119. $uploader->upload();
  120. } catch (S3MultipartUploadException $e) {
  121. // if anything goes wrong with multipart, make sure that you don´t poison and
  122. // slow down s3 bucket with orphaned fragments
  123. $uploadInfo = $e->getState()->getId();
  124. if ($e->getState()->isInitiated() && (array_key_exists('UploadId', $uploadInfo))) {
  125. $this->getConnection()->abortMultipartUpload($uploadInfo);
  126. }
  127. throw new \OCA\DAV\Connector\Sabre\Exception\BadGateway("Error while uploading to S3 bucket", 0, $e);
  128. }
  129. }
  130. /**
  131. * @param string $urn the unified resource name used to identify the object
  132. * @param resource $stream stream with the data to write
  133. * @param string|null $mimetype the mimetype to set for the remove object @since 22.0.0
  134. * @throws \Exception when something goes wrong, message will be logged
  135. * @since 7.0.0
  136. */
  137. public function writeObject($urn, $stream, string $mimetype = null) {
  138. $psrStream = Utils::streamFor($stream);
  139. // ($psrStream->isSeekable() && $psrStream->getSize() !== null) evaluates to true for a On-Seekable stream
  140. // so the optimisation does not apply
  141. $buffer = new Psr7\Stream(fopen("php://memory", 'rwb+'));
  142. Utils::copyToStream($psrStream, $buffer, $this->putSizeLimit);
  143. $buffer->seek(0);
  144. if ($buffer->getSize() < $this->putSizeLimit) {
  145. // buffer is fully seekable, so use it directly for the small upload
  146. $this->writeSingle($urn, $buffer, $mimetype);
  147. } else {
  148. $loadStream = new Psr7\AppendStream([$buffer, $psrStream]);
  149. $this->writeMultiPart($urn, $loadStream, $mimetype);
  150. }
  151. }
  152. /**
  153. * @param string $urn the unified resource name used to identify the object
  154. * @return void
  155. * @throws \Exception when something goes wrong, message will be logged
  156. * @since 7.0.0
  157. */
  158. public function deleteObject($urn) {
  159. $this->getConnection()->deleteObject([
  160. 'Bucket' => $this->bucket,
  161. 'Key' => $urn,
  162. ]);
  163. }
  164. public function objectExists($urn) {
  165. return $this->getConnection()->doesObjectExist($this->bucket, $urn);
  166. }
  167. public function copyObject($from, $to) {
  168. $this->getConnection()->copy($this->getBucket(), $from, $this->getBucket(), $to);
  169. }
  170. }