mirror of https://github.com/flightphp/core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
158 lines
4.3 KiB
158 lines
4.3 KiB
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace flight\net;
|
|
|
|
use Exception;
|
|
|
|
class UploadedFile
|
|
{
|
|
/**
|
|
* @var string $name The name of the uploaded file.
|
|
*/
|
|
private string $name;
|
|
|
|
/**
|
|
* @var string $mimeType The MIME type of the uploaded file.
|
|
*/
|
|
private string $mimeType;
|
|
|
|
/**
|
|
* @var int $size The size of the uploaded file in bytes.
|
|
*/
|
|
private int $size;
|
|
|
|
/**
|
|
* @var string $tmpName The temporary name of the uploaded file.
|
|
*/
|
|
private string $tmpName;
|
|
|
|
/**
|
|
* @var int $error The error code associated with the uploaded file.
|
|
*/
|
|
private int $error;
|
|
|
|
/**
|
|
* Constructs a new UploadedFile object.
|
|
*
|
|
* @param string $name The name of the uploaded file.
|
|
* @param string $mimeType The MIME type of the uploaded file.
|
|
* @param int $size The size of the uploaded file in bytes.
|
|
* @param string $tmpName The temporary name of the uploaded file.
|
|
* @param int $error The error code associated with the uploaded file.
|
|
*/
|
|
public function __construct(string $name, string $mimeType, int $size, string $tmpName, int $error)
|
|
{
|
|
$this->name = $name;
|
|
$this->mimeType = $mimeType;
|
|
$this->size = $size;
|
|
$this->tmpName = $tmpName;
|
|
$this->error = $error;
|
|
}
|
|
|
|
/**
|
|
* Retrieves the client-side filename of the uploaded file.
|
|
*
|
|
* @return string The client-side filename.
|
|
*/
|
|
public function getClientFilename(): string
|
|
{
|
|
return $this->name;
|
|
}
|
|
|
|
/**
|
|
* Retrieves the media type of the uploaded file as provided by the client.
|
|
*
|
|
* @return string The media type of the uploaded file.
|
|
*/
|
|
public function getClientMediaType(): string
|
|
{
|
|
return $this->mimeType;
|
|
}
|
|
|
|
/**
|
|
* Returns the size of the uploaded file.
|
|
*
|
|
* @return int The size of the uploaded file.
|
|
*/
|
|
public function getSize(): int
|
|
{
|
|
return $this->size;
|
|
}
|
|
|
|
/**
|
|
* Retrieves the temporary name of the uploaded file.
|
|
*
|
|
* @return string The temporary name of the uploaded file.
|
|
*/
|
|
public function getTempName(): string
|
|
{
|
|
return $this->tmpName;
|
|
}
|
|
|
|
/**
|
|
* Get the error code associated with the uploaded file.
|
|
*
|
|
* @return int The error code.
|
|
*/
|
|
public function getError(): int
|
|
{
|
|
return $this->error;
|
|
}
|
|
|
|
/**
|
|
* Moves the uploaded file to the specified target path.
|
|
*
|
|
* @param string $targetPath The path to move the file to.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function moveTo(string $targetPath): void
|
|
{
|
|
if ($this->error !== UPLOAD_ERR_OK) {
|
|
throw new Exception($this->getUploadErrorMessage($this->error));
|
|
}
|
|
|
|
$isUploadedFile = is_uploaded_file($this->tmpName) === true;
|
|
if (
|
|
$isUploadedFile === true
|
|
&&
|
|
move_uploaded_file($this->tmpName, $targetPath) === false
|
|
) {
|
|
throw new Exception('Cannot move uploaded file'); // @codeCoverageIgnore
|
|
} elseif ($isUploadedFile === false && getenv('PHPUNIT_TEST')) {
|
|
rename($this->tmpName, $targetPath);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Retrieves the error message for a given upload error code.
|
|
*
|
|
* @param int $error The upload error code.
|
|
*
|
|
* @return string The error message.
|
|
*/
|
|
protected function getUploadErrorMessage(int $error): string
|
|
{
|
|
switch ($error) {
|
|
case UPLOAD_ERR_INI_SIZE:
|
|
return 'The uploaded file exceeds the upload_max_filesize directive in php.ini.';
|
|
case UPLOAD_ERR_FORM_SIZE:
|
|
return 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.';
|
|
case UPLOAD_ERR_PARTIAL:
|
|
return 'The uploaded file was only partially uploaded.';
|
|
case UPLOAD_ERR_NO_FILE:
|
|
return 'No file was uploaded.';
|
|
case UPLOAD_ERR_NO_TMP_DIR:
|
|
return 'Missing a temporary folder.';
|
|
case UPLOAD_ERR_CANT_WRITE:
|
|
return 'Failed to write file to disk.';
|
|
case UPLOAD_ERR_EXTENSION:
|
|
return 'A PHP extension stopped the file upload.';
|
|
default:
|
|
return 'An unknown error occurred. Error code: ' . $error;
|
|
}
|
|
}
|
|
}
|