1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
| class MultipartFormDataParser { /** * Returns the maximum size of an uploaded file as configured in php.ini. * * @return int The maximum size of an uploaded file in bytes */ public static function getMaxFilesize() { $sizePostMax = self::parseFilesize(ini_get('post_max_size')); $sizeUploadMax = self::parseFilesize(ini_get('upload_max_filesize'));
return min($sizePostMax ?: PHP_INT_MAX, $sizeUploadMax ?: PHP_INT_MAX); }
/** * Returns the given size from an ini value in bytes. */ private static function parseFilesize($size): int { if ('' === $size) { return 0; }
$size = strtolower($size);
$max = ltrim($size, '+'); if (0 === strpos($max, '0x')) { $max = \intval($max, 16); } elseif (0 === strpos($max, '0')) { $max = \intval($max, 8); } else { $max = (int) $max; }
switch (substr($size, -1)) { case 't':$max *= 1024; // no break case 'g':$max *= 1024; // no break case 'm':$max *= 1024; // no break case 'k':$max *= 1024; }
return $max; }
/** * @var int upload file max size in bytes. */ private $uploadFileMaxSize;
/** * @var int maximum upload files count. */ private $uploadFileMaxCount;
/** * @var resource[] resources for temporary file, created during request parsing. */ private $tmpFileResources = [];
/** * @return int upload file max size in bytes. */ public function getUploadFileMaxSize(): int { if ($this->uploadFileMaxSize === null) { $this->uploadFileMaxSize = static::getMaxFilesize(); }
return $this->uploadFileMaxSize; }
/** * @param int $uploadFileMaxSize upload file max size in bytes. * @return static self reference. */ public function setUploadFileMaxSize(int $uploadFileMaxSize): self { $this->uploadFileMaxSize = $uploadFileMaxSize;
return $this; } /** * @return int maximum upload files count. */ public function getUploadFileMaxCount(): int { if ($this->uploadFileMaxCount === null) { $this->uploadFileMaxCount = ini_get('max_file_uploads'); }
return $this->uploadFileMaxCount; } /** * @param int $uploadFileMaxCount maximum upload files count. * @return static self reference. */ public function setUploadFileMaxCount(int $uploadFileMaxCount): self { $this->uploadFileMaxCount = $uploadFileMaxCount;
return $this; }
/** * Parses given request in case it holds 'multipart/form-data' content. * This method is immutable: it leaves passed request object intact, creating new one for parsed results. * This method returns original request in case it does not hold appropriate content type or has empty body. */ public function parse(array $headers, string $rawBody) { $contentType = $headers['content-type'] ?? ''; if (stripos($contentType, 'multipart/form-data') === false) { return false; } if (!preg_match('/boundary=(.*)$/is', $contentType, $matches)) { return false; } $boundary = $matches[1];
if (empty($rawBody)) { return false; }
$bodyParts = preg_split('/\\R?-+' . preg_quote($boundary, '/') . '/s', $rawBody); array_pop($bodyParts); // last block always has no data, contains boundary ending like `--`
$bodyParams = []; $uploadedFiles = []; $filesCount = 0; foreach ($bodyParts as $bodyPart) { if (empty($bodyPart)) { continue; }
[$headers, $value] = preg_split('/\\R\\R/', $bodyPart, 2); $headers = $this->parseHeaders($headers);
if (!isset($headers['content-disposition']['name'])) { continue; }
if (isset($headers['content-disposition']['filename'])) { // file upload: if ($filesCount >= $this->getUploadFileMaxCount()) { continue; }
$clientFilename = $headers['content-disposition']['filename']; $clientMediaType = $headers['content-type'] ?? 'application/octet-stream'; $size = mb_strlen($value, '8bit'); $error = UPLOAD_ERR_OK; $tempFilename = '';
if ($size > $this->getUploadFileMaxSize()) { $error = UPLOAD_ERR_INI_SIZE; } else { $tmpResource = tmpfile();
if ($tmpResource === false) { $error = UPLOAD_ERR_CANT_WRITE; } else { $tmpResourceMetaData = stream_get_meta_data($tmpResource); $tmpFileName = $tmpResourceMetaData['uri'];
if (empty($tmpFileName)) { $error = UPLOAD_ERR_CANT_WRITE; @fclose($tmpResource); } else { fwrite($tmpResource, $value); $tempFilename = $tmpFileName; $this->tmpFileResources[] = $tmpResource; // save file resource, otherwise it will be deleted } } }
$this->addValue( $uploadedFiles, $headers['content-disposition']['name'], $this->createUploadedFile( $tempFilename, $clientFilename, $clientMediaType, $error ) );
$filesCount++; } else { // regular parameter: $this->addValue($bodyParams, $headers['content-disposition']['name'], $value); } }
return $this->newRequest($bodyParams, $uploadedFiles); } /** * Creates new request instance from original one with parsed body parameters and uploaded files. * This method is called only in case original request has been successfully parsed as 'multipart/form-data'. * * @param \Illuminate\Http\Request $originalRequest original request instance being parsed. * @param array $bodyParams parsed body parameters. * @param array $uploadedFiles parsed uploaded files. * @return \Illuminate\Http\Request new request instance. */ protected function newRequest(array $bodyParams, array $uploadedFiles) { $request = []; $request['files'] = $uploadedFiles; $request['params'] = $bodyParams; return $request; } /** * Creates new uploaded file instance. * * @param string $tempFilename the full temporary path to the file. * @param string $clientFilename the filename sent by the client. * @param string|null $clientMediaType the media type sent by the client. * @param int|null $error the error associated with the uploaded file. */ protected function createUploadedFile(string $tempFilename, string $clientFilename, string $clientMediaType = null, int $error = null) { return [ 'name' => $clientFilename, 'type' => $clientMediaType, 'tmp_name' => $tempFilename, 'error' => $error, 'size' => (new \SplFileInfo($tempFilename))->getSize(), ]; }
/** * Parses content part headers. * * @param string $headerContent headers source content * @return array parsed headers. */ private function parseHeaders(string $headerContent): array { $headers = []; $headerParts = preg_split('/\\R/s', $headerContent, -1, PREG_SPLIT_NO_EMPTY);
foreach ($headerParts as $headerPart) { if (strpos($headerPart, ':') === false) { continue; }
[$headerName, $headerValue] = explode(':', $headerPart, 2); $headerName = strtolower(trim($headerName)); $headerValue = trim($headerValue);
if (strpos($headerValue, ';') === false) { $headers[$headerName] = $headerValue; } else { $headers[$headerName] = []; foreach (explode(';', $headerValue) as $part) { $part = trim($part); if (strpos($part, '=') === false) { $headers[$headerName][] = $part; } else { [$name, $value] = explode('=', $part, 2); $name = strtolower(trim($name)); $value = trim(trim($value), '"'); $headers[$headerName][$name] = $value; } } } }
return $headers; }
/** * Adds value to the array by input name, e.g. `Item[name]`. * * @param array $array array which should store value. * @param string $name input name specification. * @param mixed $value value to be added. */ private function addValue(&$array, $name, $value): void { $nameParts = preg_split('/\\]\\[|\\[/s', $name); $current = &$array; foreach ($nameParts as $namePart) { $namePart = trim($namePart, ']'); if ($namePart === '') { $current[] = []; $keys = array_keys($current); $lastKey = array_pop($keys); $current = &$current[$lastKey]; } else { if (!isset($current[$namePart])) { $current[$namePart] = []; } $current = &$current[$namePart]; } } $current = $value; } /** * Closes all temporary files associated with this parser instance. * * @return static self instance. */ public function closeTmpFiles(): self { foreach ($this->tmpFileResources as $resource) { @fclose($resource); }
$this->tmpFileResources = [];
return $this; } /** * Destructor. * Ensures all possibly created during parsing temporary files are gracefully closed and removed. */ public function __destruct() { $this->closeTmpFiles(); } }
// $body = <<<EOF // --cc51ab821e27f5818ba3662ab706787e6bcc6e4d // Content-Disposition: form-data; name="appid" // Content-Length: 20
// 8ovpzwzBKFzz88y60N22 // --cc51ab821e27f5818ba3662ab706787e6bcc6e4d // Content-Disposition: form-data; name="file2"; filename="upfile.txt" // Content-Length: 6 // Content-Type: text/plain
// upfile // --cc51ab821e27f5818ba3662ab706787e6bcc6e4d // Content-Disposition: form-data; name="file3"; filename="upfile.txt" // Content-Length: 6 // Content-Type: text/plain
// upfile // --cc51ab821e27f5818ba3662ab706787e6bcc6e4d--
// EOF;
// $header = [ // "content-length" => "516", // "content-type" => "multipart/form-data; boundary=cc51ab821e27f5818ba3662ab706787e6bcc6e4d", // ];
// (new MultipartFormDataParser)->parse($header, $body);
|