Files
kiri-core/HttpServer/Http/File.php
T

125 lines
2.2 KiB
PHP
Raw Normal View History

2020-08-31 01:27:08 +08:00
<?php
2020-10-29 18:17:25 +08:00
declare(strict_types=1);
2020-08-31 01:27:08 +08:00
namespace HttpServer\Http;
use Exception;
2020-08-31 12:38:32 +08:00
use Snowflake\Snowflake;
2020-08-31 01:27:08 +08:00
/**
* Class File
*/
class File
{
2020-10-29 18:17:25 +08:00
public string $name = '';
2021-04-15 14:43:59 +08:00
public mixed $tmp_name = '';
public mixed $error = '';
public mixed $type = '';
public mixed $size = '';
2020-08-31 01:27:08 +08:00
2020-10-29 18:17:25 +08:00
private string $newName = '';
private array $errorInfo = [
2020-08-31 01:27:08 +08:00
0 => 'UPLOAD_ERR_OK.',
1 => 'The uploaded file exceeds the upload_max_filesize directive in php.ini.',
2 => 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.',
3 => 'The uploaded file was only partially uploaded.',
4 => 'No file was uploaded.',
6 => 'Missing a temporary folder.',
7 => 'Failed to write file to disk.',
8 => 'A PHP extension stopped the file upload.'
];
/**
* @param string $path
* @return bool
* @throws Exception
*/
2020-12-25 15:57:52 +08:00
public function saveTo(string $path): bool
2020-08-31 01:27:08 +08:00
{
if ($this->hasError()) {
throw new Exception($this->getErrorInfo());
}
@move_uploaded_file($this->tmp_name, $path);
if (!file_exists($path)) {
return false;
}
return true;
}
/**
* @return string
*/
2020-12-25 15:57:52 +08:00
public function rename(): string
2020-08-31 01:27:08 +08:00
{
if (!empty($this->newName)) {
return $this->newName;
}
$param = ['tmp_name' => $this->getTmpPath()];
2020-08-31 12:38:32 +08:00
$this->newName = Snowflake::rename($param);
2020-08-31 01:27:08 +08:00
return $this->newName;
}
2021-04-15 15:32:34 +08:00
/**
* @return string
*/
public function getContent(): string
{
2021-04-15 15:39:36 +08:00
$open = fopen('php://input', 'r');
2021-04-15 15:34:36 +08:00
var_dump($open);
2021-04-15 15:32:34 +08:00
$limit = 1024000;
$stat = fstat($open);
$sleep = $offset = 0;
$content = '';
while ($file = fread($open, $limit)) {
$content .= $file;
2021-04-15 15:35:16 +08:00
fseek($open, $offset);
2021-04-15 15:32:34 +08:00
if ($sleep > 0) {
sleep($sleep);
}
if ($offset >= $stat['size']) {
break;
}
$offset += $limit;
}
return $content;
}
2020-08-31 01:27:08 +08:00
/**
* @return string
*/
2020-12-25 15:57:52 +08:00
public function getTmpPath(): string
2020-08-31 01:27:08 +08:00
{
return $this->tmp_name;
}
/**
* @return bool
*
* check file have error
*/
2020-12-25 15:57:52 +08:00
public function hasError(): bool
2020-08-31 01:27:08 +08:00
{
return $this->error !== 0;
}
/**
* @return mixed
*
* get upload error info
*/
2020-12-25 15:57:52 +08:00
public function getErrorInfo(): mixed
2020-08-31 01:27:08 +08:00
{
if (!isset($this->errorInfo[$this->error])) {
return 'Unknown upload error.';
}
return $this->errorInfo[$this->error];
}
}