S3ObjectTrait.php 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  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;
  32. use GuzzleHttp\Psr7\Utils;
  33. use OC\Files\Stream\SeekableHttpStream;
  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. abstract protected function getSSECParameters(bool $copy = false): array;
  45. /**
  46. * @param string $urn the unified resource name used to identify the object
  47. *
  48. * @return resource stream with the read data
  49. * @throws \Exception when something goes wrong, message will be logged
  50. * @since 7.0.0
  51. */
  52. public function readObject($urn) {
  53. $fh = SeekableHttpStream::open(function ($range) use ($urn) {
  54. $command = $this->getConnection()->getCommand('GetObject', [
  55. 'Bucket' => $this->bucket,
  56. 'Key' => $urn,
  57. 'Range' => 'bytes=' . $range,
  58. ] + $this->getSSECParameters());
  59. $request = \Aws\serialize($command);
  60. $headers = [];
  61. foreach ($request->getHeaders() as $key => $values) {
  62. foreach ($values as $value) {
  63. $headers[] = "$key: $value";
  64. }
  65. }
  66. $opts = [
  67. 'http' => [
  68. 'protocol_version' => $request->getProtocolVersion(),
  69. 'header' => $headers,
  70. ]
  71. ];
  72. $bundle = $this->getCertificateBundlePath();
  73. if ($bundle) {
  74. $opts['ssl'] = [
  75. 'cafile' => $bundle
  76. ];
  77. }
  78. if ($this->getProxy()) {
  79. $opts['http']['proxy'] = $this->getProxy();
  80. $opts['http']['request_fulluri'] = true;
  81. }
  82. $context = stream_context_create($opts);
  83. return fopen($request->getUri(), 'r', false, $context);
  84. });
  85. if (!$fh) {
  86. throw new \Exception("Failed to read object $urn");
  87. }
  88. return $fh;
  89. }
  90. /**
  91. * Single object put helper
  92. *
  93. * @param string $urn the unified resource name used to identify the object
  94. * @param StreamInterface $stream stream with the data to write
  95. * @param string|null $mimetype the mimetype to set for the remove object @since 22.0.0
  96. * @throws \Exception when something goes wrong, message will be logged
  97. */
  98. protected function writeSingle(string $urn, StreamInterface $stream, string $mimetype = null): void {
  99. $this->getConnection()->putObject([
  100. 'Bucket' => $this->bucket,
  101. 'Key' => $urn,
  102. 'Body' => $stream,
  103. 'ACL' => 'private',
  104. 'ContentType' => $mimetype,
  105. 'StorageClass' => $this->storageClass,
  106. ] + $this->getSSECParameters());
  107. }
  108. /**
  109. * Multipart upload helper that tries to avoid orphaned fragments in S3
  110. *
  111. * @param string $urn the unified resource name used to identify the object
  112. * @param StreamInterface $stream stream with the data to write
  113. * @param string|null $mimetype the mimetype to set for the remove object
  114. * @throws \Exception when something goes wrong, message will be logged
  115. */
  116. protected function writeMultiPart(string $urn, StreamInterface $stream, string $mimetype = null): void {
  117. $uploader = new MultipartUploader($this->getConnection(), $stream, [
  118. 'bucket' => $this->bucket,
  119. 'key' => $urn,
  120. 'part_size' => $this->uploadPartSize,
  121. 'params' => [
  122. 'ContentType' => $mimetype,
  123. 'StorageClass' => $this->storageClass,
  124. ] + $this->getSSECParameters(),
  125. ]);
  126. try {
  127. $uploader->upload();
  128. } catch (S3MultipartUploadException $e) {
  129. // if anything goes wrong with multipart, make sure that you don´t poison and
  130. // slow down s3 bucket with orphaned fragments
  131. $uploadInfo = $e->getState()->getId();
  132. if ($e->getState()->isInitiated() && (array_key_exists('UploadId', $uploadInfo))) {
  133. $this->getConnection()->abortMultipartUpload($uploadInfo);
  134. }
  135. throw new \OCA\DAV\Connector\Sabre\Exception\BadGateway("Error while uploading to S3 bucket", 0, $e);
  136. }
  137. }
  138. /**
  139. * @param string $urn the unified resource name used to identify the object
  140. * @param resource $stream stream with the data to write
  141. * @param string|null $mimetype the mimetype to set for the remove object @since 22.0.0
  142. * @throws \Exception when something goes wrong, message will be logged
  143. * @since 7.0.0
  144. */
  145. public function writeObject($urn, $stream, string $mimetype = null) {
  146. $psrStream = Utils::streamFor($stream);
  147. // ($psrStream->isSeekable() && $psrStream->getSize() !== null) evaluates to true for a On-Seekable stream
  148. // so the optimisation does not apply
  149. $buffer = new Psr7\Stream(fopen("php://memory", 'rwb+'));
  150. Utils::copyToStream($psrStream, $buffer, $this->putSizeLimit);
  151. $buffer->seek(0);
  152. if ($buffer->getSize() < $this->putSizeLimit) {
  153. // buffer is fully seekable, so use it directly for the small upload
  154. $this->writeSingle($urn, $buffer, $mimetype);
  155. } else {
  156. $loadStream = new Psr7\AppendStream([$buffer, $psrStream]);
  157. $this->writeMultiPart($urn, $loadStream, $mimetype);
  158. }
  159. }
  160. /**
  161. * @param string $urn the unified resource name used to identify the object
  162. * @return void
  163. * @throws \Exception when something goes wrong, message will be logged
  164. * @since 7.0.0
  165. */
  166. public function deleteObject($urn) {
  167. $this->getConnection()->deleteObject([
  168. 'Bucket' => $this->bucket,
  169. 'Key' => $urn,
  170. ]);
  171. }
  172. public function objectExists($urn) {
  173. return $this->getConnection()->doesObjectExist($this->bucket, $urn, $this->getSSECParameters());
  174. }
  175. public function copyObject($from, $to) {
  176. $this->getConnection()->copy($this->getBucket(), $from, $this->getBucket(), $to, 'private', [
  177. 'params' => $this->getSSECParameters() + $this->getSSECParameters(true)
  178. ]);
  179. }
  180. }