RawMessage.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Mime;
  11. use Symfony\Component\Mime\Exception\LogicException;
  12. /**
  13. * @author Fabien Potencier <fabien@symfony.com>
  14. */
  15. class RawMessage implements \Serializable
  16. {
  17. /**
  18. * @var iterable|string
  19. */
  20. private $message;
  21. /**
  22. * @param iterable|string $message
  23. */
  24. public function __construct($message)
  25. {
  26. $this->message = $message;
  27. }
  28. public function toString(): string
  29. {
  30. if (\is_string($this->message)) {
  31. return $this->message;
  32. }
  33. if ($this->message instanceof \Traversable) {
  34. $this->message = iterator_to_array($this->message, false);
  35. }
  36. return $this->message = implode('', $this->message);
  37. }
  38. public function toIterable(): iterable
  39. {
  40. if (\is_string($this->message)) {
  41. yield $this->message;
  42. return;
  43. }
  44. $message = '';
  45. foreach ($this->message as $chunk) {
  46. $message .= $chunk;
  47. yield $chunk;
  48. }
  49. $this->message = $message;
  50. }
  51. /**
  52. * @throws LogicException if the message is not valid
  53. */
  54. public function ensureValidity()
  55. {
  56. }
  57. /**
  58. * @internal
  59. */
  60. final public function serialize(): string
  61. {
  62. return serialize($this->__serialize());
  63. }
  64. /**
  65. * @internal
  66. */
  67. final public function unserialize($serialized)
  68. {
  69. $this->__unserialize(unserialize($serialized));
  70. }
  71. public function __serialize(): array
  72. {
  73. return [$this->toString()];
  74. }
  75. public function __unserialize(array $data): void
  76. {
  77. [$this->message] = $data;
  78. }
  79. }