|
| 1 | +<?php |
| 2 | + |
| 3 | +namespace AsyncAws\Ses\ValueObject; |
| 4 | + |
| 5 | +use AsyncAws\Core\Exception\InvalidArgument; |
| 6 | +use AsyncAws\Ses\Enum\AttachmentContentDisposition; |
| 7 | +use AsyncAws\Ses\Enum\AttachmentContentTransferEncoding; |
| 8 | + |
| 9 | +/** |
| 10 | + * Contains metadata and attachment raw content. |
| 11 | + */ |
| 12 | +final class Attachment |
| 13 | +{ |
| 14 | + /** |
| 15 | + * The raw data of the attachment. It needs to be base64-encoded if you are accessing Amazon SES directly through the |
| 16 | + * HTTPS interface. If you are accessing Amazon SES using an Amazon Web Services SDK, the SDK takes care of the base |
| 17 | + * 64-encoding for you. |
| 18 | + * |
| 19 | + * @var string |
| 20 | + */ |
| 21 | + private $rawContent; |
| 22 | + |
| 23 | + /** |
| 24 | + * A standard descriptor indicating how the attachment should be rendered in the email. Supported values: `ATTACHMENT` |
| 25 | + * or `INLINE`. |
| 26 | + * |
| 27 | + * @var AttachmentContentDisposition::*|null |
| 28 | + */ |
| 29 | + private $contentDisposition; |
| 30 | + |
| 31 | + /** |
| 32 | + * The file name for the attachment as it will appear in the email. Amazon SES restricts certain file extensions. To |
| 33 | + * ensure attachments are accepted, check the Unsupported attachment types [^1] in the Amazon SES Developer Guide. |
| 34 | + * |
| 35 | + * [^1]: https://docs.aws.amazon.com/ses/latest/dg/mime-types.html |
| 36 | + * |
| 37 | + * @var string |
| 38 | + */ |
| 39 | + private $fileName; |
| 40 | + |
| 41 | + /** |
| 42 | + * A brief description of the attachment content. |
| 43 | + * |
| 44 | + * @var string|null |
| 45 | + */ |
| 46 | + private $contentDescription; |
| 47 | + |
| 48 | + /** |
| 49 | + * Unique identifier for the attachment, used for referencing attachments with INLINE disposition in HTML content. |
| 50 | + * |
| 51 | + * @var string|null |
| 52 | + */ |
| 53 | + private $contentId; |
| 54 | + |
| 55 | + /** |
| 56 | + * Specifies how the attachment is encoded. Supported values: `BASE64`, `QUOTED_PRINTABLE`, `SEVEN_BIT`. |
| 57 | + * |
| 58 | + * @var AttachmentContentTransferEncoding::*|null |
| 59 | + */ |
| 60 | + private $contentTransferEncoding; |
| 61 | + |
| 62 | + /** |
| 63 | + * The MIME type of the attachment. |
| 64 | + * |
| 65 | + * > Example: `application/pdf`, `image/jpeg` |
| 66 | + * |
| 67 | + * @var string|null |
| 68 | + */ |
| 69 | + private $contentType; |
| 70 | + |
| 71 | + /** |
| 72 | + * @param array{ |
| 73 | + * RawContent: string, |
| 74 | + * ContentDisposition?: null|AttachmentContentDisposition::*, |
| 75 | + * FileName: string, |
| 76 | + * ContentDescription?: null|string, |
| 77 | + * ContentId?: null|string, |
| 78 | + * ContentTransferEncoding?: null|AttachmentContentTransferEncoding::*, |
| 79 | + * ContentType?: null|string, |
| 80 | + * } $input |
| 81 | + */ |
| 82 | + public function __construct(array $input) |
| 83 | + { |
| 84 | + $this->rawContent = $input['RawContent'] ?? $this->throwException(new InvalidArgument('Missing required field "RawContent".')); |
| 85 | + $this->contentDisposition = $input['ContentDisposition'] ?? null; |
| 86 | + $this->fileName = $input['FileName'] ?? $this->throwException(new InvalidArgument('Missing required field "FileName".')); |
| 87 | + $this->contentDescription = $input['ContentDescription'] ?? null; |
| 88 | + $this->contentId = $input['ContentId'] ?? null; |
| 89 | + $this->contentTransferEncoding = $input['ContentTransferEncoding'] ?? null; |
| 90 | + $this->contentType = $input['ContentType'] ?? null; |
| 91 | + } |
| 92 | + |
| 93 | + /** |
| 94 | + * @param array{ |
| 95 | + * RawContent: string, |
| 96 | + * ContentDisposition?: null|AttachmentContentDisposition::*, |
| 97 | + * FileName: string, |
| 98 | + * ContentDescription?: null|string, |
| 99 | + * ContentId?: null|string, |
| 100 | + * ContentTransferEncoding?: null|AttachmentContentTransferEncoding::*, |
| 101 | + * ContentType?: null|string, |
| 102 | + * }|Attachment $input |
| 103 | + */ |
| 104 | + public static function create($input): self |
| 105 | + { |
| 106 | + return $input instanceof self ? $input : new self($input); |
| 107 | + } |
| 108 | + |
| 109 | + public function getContentDescription(): ?string |
| 110 | + { |
| 111 | + return $this->contentDescription; |
| 112 | + } |
| 113 | + |
| 114 | + /** |
| 115 | + * @return AttachmentContentDisposition::*|null |
| 116 | + */ |
| 117 | + public function getContentDisposition(): ?string |
| 118 | + { |
| 119 | + return $this->contentDisposition; |
| 120 | + } |
| 121 | + |
| 122 | + public function getContentId(): ?string |
| 123 | + { |
| 124 | + return $this->contentId; |
| 125 | + } |
| 126 | + |
| 127 | + /** |
| 128 | + * @return AttachmentContentTransferEncoding::*|null |
| 129 | + */ |
| 130 | + public function getContentTransferEncoding(): ?string |
| 131 | + { |
| 132 | + return $this->contentTransferEncoding; |
| 133 | + } |
| 134 | + |
| 135 | + public function getContentType(): ?string |
| 136 | + { |
| 137 | + return $this->contentType; |
| 138 | + } |
| 139 | + |
| 140 | + public function getFileName(): string |
| 141 | + { |
| 142 | + return $this->fileName; |
| 143 | + } |
| 144 | + |
| 145 | + public function getRawContent(): string |
| 146 | + { |
| 147 | + return $this->rawContent; |
| 148 | + } |
| 149 | + |
| 150 | + /** |
| 151 | + * @internal |
| 152 | + */ |
| 153 | + public function requestBody(): array |
| 154 | + { |
| 155 | + $payload = []; |
| 156 | + $v = $this->rawContent; |
| 157 | + $payload['RawContent'] = base64_encode($v); |
| 158 | + if (null !== $v = $this->contentDisposition) { |
| 159 | + if (!AttachmentContentDisposition::exists($v)) { |
| 160 | + throw new InvalidArgument(\sprintf('Invalid parameter "ContentDisposition" for "%s". The value "%s" is not a valid "AttachmentContentDisposition".', __CLASS__, $v)); |
| 161 | + } |
| 162 | + $payload['ContentDisposition'] = $v; |
| 163 | + } |
| 164 | + $v = $this->fileName; |
| 165 | + $payload['FileName'] = $v; |
| 166 | + if (null !== $v = $this->contentDescription) { |
| 167 | + $payload['ContentDescription'] = $v; |
| 168 | + } |
| 169 | + if (null !== $v = $this->contentId) { |
| 170 | + $payload['ContentId'] = $v; |
| 171 | + } |
| 172 | + if (null !== $v = $this->contentTransferEncoding) { |
| 173 | + if (!AttachmentContentTransferEncoding::exists($v)) { |
| 174 | + throw new InvalidArgument(\sprintf('Invalid parameter "ContentTransferEncoding" for "%s". The value "%s" is not a valid "AttachmentContentTransferEncoding".', __CLASS__, $v)); |
| 175 | + } |
| 176 | + $payload['ContentTransferEncoding'] = $v; |
| 177 | + } |
| 178 | + if (null !== $v = $this->contentType) { |
| 179 | + $payload['ContentType'] = $v; |
| 180 | + } |
| 181 | + |
| 182 | + return $payload; |
| 183 | + } |
| 184 | + |
| 185 | + /** |
| 186 | + * @return never |
| 187 | + */ |
| 188 | + private function throwException(\Throwable $exception) |
| 189 | + { |
| 190 | + throw $exception; |
| 191 | + } |
| 192 | +} |
0 commit comments