FileBag.php 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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 static $fileKeys = array('error', 'name', 'size', 'tmp_name', 'type');
  21. /**
  22. * @param array $parameters An array of HTTP files
  23. */
  24. public function __construct(array $parameters = array())
  25. {
  26. $this->replace($parameters);
  27. }
  28. /**
  29. * {@inheritdoc}
  30. */
  31. public function replace(array $files = array())
  32. {
  33. $this->parameters = array();
  34. $this->add($files);
  35. }
  36. /**
  37. * {@inheritdoc}
  38. */
  39. public function set($key, $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. * {@inheritdoc}
  48. */
  49. public function add(array $files = array())
  50. {
  51. foreach ($files as $key => $file) {
  52. $this->set($key, $file);
  53. }
  54. }
  55. /**
  56. * Converts uploaded files to UploadedFile instances.
  57. *
  58. * @param array|UploadedFile $file A (multi-dimensional) array of uploaded file information
  59. *
  60. * @return UploadedFile[]|UploadedFile|null A (multi-dimensional) array of UploadedFile instances
  61. */
  62. protected function convertFileInformation($file)
  63. {
  64. if ($file instanceof UploadedFile) {
  65. return $file;
  66. }
  67. $file = $this->fixPhpFilesArray($file);
  68. if (is_array($file)) {
  69. $keys = array_keys($file);
  70. sort($keys);
  71. if ($keys == self::$fileKeys) {
  72. if (UPLOAD_ERR_NO_FILE == $file['error']) {
  73. $file = null;
  74. } else {
  75. $file = new UploadedFile($file['tmp_name'], $file['name'], $file['type'], $file['error']);
  76. }
  77. } else {
  78. $file = array_map(array($this, 'convertFileInformation'), $file);
  79. if (array_keys($keys) === $keys) {
  80. $file = array_filter($file);
  81. }
  82. }
  83. }
  84. return $file;
  85. }
  86. /**
  87. * Fixes a malformed PHP $_FILES array.
  88. *
  89. * PHP has a bug that the format of the $_FILES array differs, depending on
  90. * whether the uploaded file fields had normal field names or array-like
  91. * field names ("normal" vs. "parent[child]").
  92. *
  93. * This method fixes the array to look like the "normal" $_FILES array.
  94. *
  95. * It's safe to pass an already converted array, in which case this method
  96. * just returns the original array unmodified.
  97. *
  98. * @return array
  99. */
  100. protected function fixPhpFilesArray($data)
  101. {
  102. if (!is_array($data)) {
  103. return $data;
  104. }
  105. $keys = array_keys($data);
  106. sort($keys);
  107. if (self::$fileKeys != $keys || !isset($data['name']) || !is_array($data['name'])) {
  108. return $data;
  109. }
  110. $files = $data;
  111. foreach (self::$fileKeys as $k) {
  112. unset($files[$k]);
  113. }
  114. foreach ($data['name'] as $key => $name) {
  115. $files[$key] = $this->fixPhpFilesArray(array(
  116. 'error' => $data['error'][$key],
  117. 'name' => $name,
  118. 'type' => $data['type'][$key],
  119. 'tmp_name' => $data['tmp_name'][$key],
  120. 'size' => $data['size'][$key],
  121. ));
  122. }
  123. return $files;
  124. }
  125. }