PsrHttpFactory.php 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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\Bridge\PsrHttpMessage\Factory;
  11. use Psr\Http\Message\ResponseFactoryInterface;
  12. use Psr\Http\Message\ServerRequestFactoryInterface;
  13. use Psr\Http\Message\StreamFactoryInterface;
  14. use Psr\Http\Message\UploadedFileFactoryInterface;
  15. use Psr\Http\Message\UploadedFileInterface;
  16. use Symfony\Bridge\PsrHttpMessage\HttpMessageFactoryInterface;
  17. use Symfony\Component\HttpFoundation\BinaryFileResponse;
  18. use Symfony\Component\HttpFoundation\File\UploadedFile;
  19. use Symfony\Component\HttpFoundation\Request;
  20. use Symfony\Component\HttpFoundation\Response;
  21. use Symfony\Component\HttpFoundation\StreamedResponse;
  22. /**
  23. * Builds Psr\HttpMessage instances using a PSR-17 implementation.
  24. *
  25. * @author Antonio J. García Lagar <aj@garcialagar.es>
  26. */
  27. class PsrHttpFactory implements HttpMessageFactoryInterface
  28. {
  29. private $serverRequestFactory;
  30. private $streamFactory;
  31. private $uploadedFileFactory;
  32. private $responseFactory;
  33. public function __construct(ServerRequestFactoryInterface $serverRequestFactory, StreamFactoryInterface $streamFactory, UploadedFileFactoryInterface $uploadedFileFactory, ResponseFactoryInterface $responseFactory)
  34. {
  35. $this->serverRequestFactory = $serverRequestFactory;
  36. $this->streamFactory = $streamFactory;
  37. $this->uploadedFileFactory = $uploadedFileFactory;
  38. $this->responseFactory = $responseFactory;
  39. }
  40. /**
  41. * {@inheritdoc}
  42. */
  43. public function createRequest(Request $symfonyRequest)
  44. {
  45. $request = $this->serverRequestFactory->createServerRequest(
  46. $symfonyRequest->getMethod(),
  47. $symfonyRequest->getUri(),
  48. $symfonyRequest->server->all()
  49. );
  50. foreach ($symfonyRequest->headers->all() as $name => $value) {
  51. $request = $request->withHeader($name, $value);
  52. }
  53. $body = $this->streamFactory->createStreamFromResource($symfonyRequest->getContent(true));
  54. $request = $request
  55. ->withBody($body)
  56. ->withUploadedFiles($this->getFiles($symfonyRequest->files->all()))
  57. ->withCookieParams($symfonyRequest->cookies->all())
  58. ->withQueryParams($symfonyRequest->query->all())
  59. ->withParsedBody($symfonyRequest->request->all())
  60. ;
  61. foreach ($symfonyRequest->attributes->all() as $key => $value) {
  62. $request = $request->withAttribute($key, $value);
  63. }
  64. return $request;
  65. }
  66. /**
  67. * Converts Symfony uploaded files array to the PSR one.
  68. *
  69. * @return array
  70. */
  71. private function getFiles(array $uploadedFiles)
  72. {
  73. $files = [];
  74. foreach ($uploadedFiles as $key => $value) {
  75. if (null === $value) {
  76. $files[$key] = $this->uploadedFileFactory->createUploadedFile($this->streamFactory->createStream(), 0, UPLOAD_ERR_NO_FILE);
  77. continue;
  78. }
  79. if ($value instanceof UploadedFile) {
  80. $files[$key] = $this->createUploadedFile($value);
  81. } else {
  82. $files[$key] = $this->getFiles($value);
  83. }
  84. }
  85. return $files;
  86. }
  87. /**
  88. * Creates a PSR-7 UploadedFile instance from a Symfony one.
  89. *
  90. * @return UploadedFileInterface
  91. */
  92. private function createUploadedFile(UploadedFile $symfonyUploadedFile)
  93. {
  94. return $this->uploadedFileFactory->createUploadedFile(
  95. $this->streamFactory->createStreamFromFile(
  96. $symfonyUploadedFile->getRealPath()
  97. ),
  98. (int) $symfonyUploadedFile->getSize(),
  99. $symfonyUploadedFile->getError(),
  100. $symfonyUploadedFile->getClientOriginalName(),
  101. $symfonyUploadedFile->getClientMimeType()
  102. );
  103. }
  104. /**
  105. * {@inheritdoc}
  106. */
  107. public function createResponse(Response $symfonyResponse)
  108. {
  109. $response = $this->responseFactory->createResponse($symfonyResponse->getStatusCode(), Response::$statusTexts[$symfonyResponse->getStatusCode()] ?? '');
  110. if ($symfonyResponse instanceof BinaryFileResponse) {
  111. $stream = $this->streamFactory->createStreamFromFile(
  112. $symfonyResponse->getFile()->getPathname()
  113. );
  114. } else {
  115. $stream = $this->streamFactory->createStreamFromFile('php://temp', 'wb+');
  116. if ($symfonyResponse instanceof StreamedResponse) {
  117. ob_start(function ($buffer) use ($stream) {
  118. $stream->write($buffer);
  119. return '';
  120. });
  121. $symfonyResponse->sendContent();
  122. ob_end_clean();
  123. } else {
  124. $stream->write($symfonyResponse->getContent());
  125. }
  126. }
  127. $response = $response->withBody($stream);
  128. $headers = $symfonyResponse->headers->all();
  129. $cookies = $symfonyResponse->headers->getCookies();
  130. if (!empty($cookies)) {
  131. $headers['Set-Cookie'] = [];
  132. foreach ($cookies as $cookie) {
  133. $headers['Set-Cookie'][] = $cookie->__toString();
  134. }
  135. }
  136. foreach ($headers as $name => $value) {
  137. $response = $response->withHeader($name, $value);
  138. }
  139. $protocolVersion = $symfonyResponse->getProtocolVersion();
  140. $response = $response->withProtocolVersion($protocolVersion);
  141. return $response;
  142. }
  143. }