FileBag.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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\HttpFoundation;
  11. use Symfony\Component\HttpFoundation\File\UploadedFile;
  12. /**
  13. * FileBag is a container for uploaded files.
  14. *
  15. * @author Fabien Potencier <fabien@symfony.com>
  16. * @author Bulat Shakirzyanov <mallluhuct@gmail.com>
  17. */
  18. class FileBag extends ParameterBag
  19. {
  20. private const FILE_KEYS = ['error', 'name', 'size', 'tmp_name', 'type'];
  21. /**
  22. * @param array|UploadedFile[] $parameters An array of HTTP files
  23. */
  24. public function __construct(array $parameters = [])
  25. {
  26. $this->replace($parameters);
  27. }
  28. /**
  29. * @return void
  30. */
  31. public function replace(array $files = [])
  32. {
  33. $this->parameters = [];
  34. $this->add($files);
  35. }
  36. /**
  37. * @return void
  38. */
  39. public function set(string $key, mixed $value)
  40. {
  41. if (!\is_array($value) && !$value instanceof UploadedFile) {
  42. throw new \InvalidArgumentException('An uploaded file must be an array or an instance of UploadedFile.');
  43. }
  44. parent::set($key, $this->convertFileInformation($value));
  45. }
  46. /**
  47. * @return void
  48. */
  49. public function add(array $files = [])
  50. {
  51. foreach ($files as $key => $file) {
  52. $this->set($key, $file);
  53. }
  54. }
  55. /**
  56. * Converts uploaded files to UploadedFile instances.
  57. *
  58. * @return UploadedFile[]|UploadedFile|null
  59. */
  60. protected function convertFileInformation(array|UploadedFile $file): array|UploadedFile|null
  61. {
  62. if ($file instanceof UploadedFile) {
  63. return $file;
  64. }
  65. $file = $this->fixPhpFilesArray($file);
  66. $keys = array_keys($file);
  67. sort($keys);
  68. if (self::FILE_KEYS == $keys) {
  69. if (\UPLOAD_ERR_NO_FILE == $file['error']) {
  70. $file = null;
  71. } else {
  72. $file = new UploadedFile($file['tmp_name'], $file['name'], $file['type'], $file['error'], false);
  73. }
  74. } else {
  75. $file = array_map(fn ($v) => $v instanceof UploadedFile || \is_array($v) ? $this->convertFileInformation($v) : $v, $file);
  76. if (array_keys($keys) === $keys) {
  77. $file = array_filter($file);
  78. }
  79. }
  80. return $file;
  81. }
  82. /**
  83. * Fixes a malformed PHP $_FILES array.
  84. *
  85. * PHP has a bug that the format of the $_FILES array differs, depending on
  86. * whether the uploaded file fields had normal field names or array-like
  87. * field names ("normal" vs. "parent[child]").
  88. *
  89. * This method fixes the array to look like the "normal" $_FILES array.
  90. *
  91. * It's safe to pass an already converted array, in which case this method
  92. * just returns the original array unmodified.
  93. */
  94. protected function fixPhpFilesArray(array $data): array
  95. {
  96. // Remove extra key added by PHP 8.1.
  97. unset($data['full_path']);
  98. $keys = array_keys($data);
  99. sort($keys);
  100. if (self::FILE_KEYS != $keys || !isset($data['name']) || !\is_array($data['name'])) {
  101. return $data;
  102. }
  103. $files = $data;
  104. foreach (self::FILE_KEYS as $k) {
  105. unset($files[$k]);
  106. }
  107. foreach ($data['name'] as $key => $name) {
  108. $files[$key] = $this->fixPhpFilesArray([
  109. 'error' => $data['error'][$key],
  110. 'name' => $name,
  111. 'type' => $data['type'][$key],
  112. 'tmp_name' => $data['tmp_name'][$key],
  113. 'size' => $data['size'][$key],
  114. ]);
  115. }
  116. return $files;
  117. }
  118. }