bucket = $input['Bucket'] ?? null; $this->key = $input['Key'] ?? null; $this->multipartUpload = isset($input['MultipartUpload']) ? CompletedMultipartUpload::create($input['MultipartUpload']) : null; $this->uploadId = $input['UploadId'] ?? null; $this->checksumCrc32 = $input['ChecksumCRC32'] ?? null; $this->checksumCrc32C = $input['ChecksumCRC32C'] ?? null; $this->checksumSha1 = $input['ChecksumSHA1'] ?? null; $this->checksumSha256 = $input['ChecksumSHA256'] ?? null; $this->requestPayer = $input['RequestPayer'] ?? null; $this->expectedBucketOwner = $input['ExpectedBucketOwner'] ?? null; $this->sseCustomerAlgorithm = $input['SSECustomerAlgorithm'] ?? null; $this->sseCustomerKey = $input['SSECustomerKey'] ?? null; $this->sseCustomerKeyMd5 = $input['SSECustomerKeyMD5'] ?? null; parent::__construct($input); } public static function create($input): self { return $input instanceof self ? $input : new self($input); } public function getBucket(): ?string { return $this->bucket; } public function getChecksumCrc32(): ?string { return $this->checksumCrc32; } public function getChecksumCrc32C(): ?string { return $this->checksumCrc32C; } public function getChecksumSha1(): ?string { return $this->checksumSha1; } public function getChecksumSha256(): ?string { return $this->checksumSha256; } public function getExpectedBucketOwner(): ?string { return $this->expectedBucketOwner; } public function getKey(): ?string { return $this->key; } public function getMultipartUpload(): ?CompletedMultipartUpload { return $this->multipartUpload; } /** * @return RequestPayer::*|null */ public function getRequestPayer(): ?string { return $this->requestPayer; } public function getSseCustomerAlgorithm(): ?string { return $this->sseCustomerAlgorithm; } public function getSseCustomerKey(): ?string { return $this->sseCustomerKey; } public function getSseCustomerKeyMd5(): ?string { return $this->sseCustomerKeyMd5; } public function getUploadId(): ?string { return $this->uploadId; } /** * @internal */ public function request(): Request { // Prepare headers $headers = ['content-type' => 'application/xml']; if (null !== $this->checksumCrc32) { $headers['x-amz-checksum-crc32'] = $this->checksumCrc32; } if (null !== $this->checksumCrc32C) { $headers['x-amz-checksum-crc32c'] = $this->checksumCrc32C; } if (null !== $this->checksumSha1) { $headers['x-amz-checksum-sha1'] = $this->checksumSha1; } if (null !== $this->checksumSha256) { $headers['x-amz-checksum-sha256'] = $this->checksumSha256; } if (null !== $this->requestPayer) { if (!RequestPayer::exists($this->requestPayer)) { throw new InvalidArgument(sprintf('Invalid parameter "RequestPayer" for "%s". The value "%s" is not a valid "RequestPayer".', __CLASS__, $this->requestPayer)); } $headers['x-amz-request-payer'] = $this->requestPayer; } if (null !== $this->expectedBucketOwner) { $headers['x-amz-expected-bucket-owner'] = $this->expectedBucketOwner; } if (null !== $this->sseCustomerAlgorithm) { $headers['x-amz-server-side-encryption-customer-algorithm'] = $this->sseCustomerAlgorithm; } if (null !== $this->sseCustomerKey) { $headers['x-amz-server-side-encryption-customer-key'] = $this->sseCustomerKey; } if (null !== $this->sseCustomerKeyMd5) { $headers['x-amz-server-side-encryption-customer-key-MD5'] = $this->sseCustomerKeyMd5; } // Prepare query $query = []; if (null === $v = $this->uploadId) { throw new InvalidArgument(sprintf('Missing parameter "UploadId" for "%s". The value cannot be null.', __CLASS__)); } $query['uploadId'] = $v; // Prepare URI $uri = []; if (null === $v = $this->bucket) { throw new InvalidArgument(sprintf('Missing parameter "Bucket" for "%s". The value cannot be null.', __CLASS__)); } $uri['Bucket'] = $v; if (null === $v = $this->key) { throw new InvalidArgument(sprintf('Missing parameter "Key" for "%s". The value cannot be null.', __CLASS__)); } $uri['Key'] = $v; $uriString = '/' . rawurlencode($uri['Bucket']) . '/' . str_replace('%2F', '/', rawurlencode($uri['Key'])); // Prepare Body $document = new \DOMDocument('1.0', 'UTF-8'); $document->formatOutput = false; $this->requestBody($document, $document); $body = $document->hasChildNodes() ? $document->saveXML() : ''; // Return the Request return new Request('POST', $uriString, $query, $headers, StreamFactory::create($body)); } public function setBucket(?string $value): self { $this->bucket = $value; return $this; } public function setChecksumCrc32(?string $value): self { $this->checksumCrc32 = $value; return $this; } public function setChecksumCrc32C(?string $value): self { $this->checksumCrc32C = $value; return $this; } public function setChecksumSha1(?string $value): self { $this->checksumSha1 = $value; return $this; } public function setChecksumSha256(?string $value): self { $this->checksumSha256 = $value; return $this; } public function setExpectedBucketOwner(?string $value): self { $this->expectedBucketOwner = $value; return $this; } public function setKey(?string $value): self { $this->key = $value; return $this; } public function setMultipartUpload(?CompletedMultipartUpload $value): self { $this->multipartUpload = $value; return $this; } /** * @param RequestPayer::*|null $value */ public function setRequestPayer(?string $value): self { $this->requestPayer = $value; return $this; } public function setSseCustomerAlgorithm(?string $value): self { $this->sseCustomerAlgorithm = $value; return $this; } public function setSseCustomerKey(?string $value): self { $this->sseCustomerKey = $value; return $this; } public function setSseCustomerKeyMd5(?string $value): self { $this->sseCustomerKeyMd5 = $value; return $this; } public function setUploadId(?string $value): self { $this->uploadId = $value; return $this; } private function requestBody(\DOMNode $node, \DOMDocument $document): void { if (null !== $v = $this->multipartUpload) { $node->appendChild($child = $document->createElement('CompleteMultipartUpload')); $child->setAttribute('xmlns', 'http://s3.amazonaws.com/doc/2006-03-01/'); $v->requestBody($child, $document); } } }