优化文件上传

This commit is contained in:
liweisen 2020-11-24 10:52:34 +08:00
parent 3722bf3bbc
commit 5fd67432b1
2 changed files with 4 additions and 5 deletions

View File

@ -101,7 +101,7 @@ class File extends BasicApi
$this->error($e->getMessage(), 500);
}
$info = $uploadInfo['uploadInfo'];
unset($uploadInfo);
$fileData = [
'extension' => $info->getExtension(),
'file_type' => $info->getInfo()['type'],
@ -134,11 +134,10 @@ class File extends BasicApi
!isset($data['taskCode']) && $data['taskCode'] = '';
$fileResult = \app\common\Model\File::createFile($data['projectCode'], $fileData);
unset($fileData);
unset($info);
//文件碎片移除
foreach ($fileList as $file) {
@unlink($file);
unlink($file);
}
$fileInfo = \app\common\Model\File::where(['code' => $fileResult['code']])->find();
if ($data['taskCode']) {

View File

@ -328,7 +328,7 @@ class FileService
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public static function qiniu($filename, $content)
public static function qiniu($filename, $content, $append = false)
{
$auth = new Auth(sysconf('storage_qiniu_access_key'), sysconf('storage_qiniu_secret_key'));
$token = $auth->uploadToken(sysconf('storage_qiniu_bucket'));
@ -351,7 +351,7 @@ class FileService
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public static function oss($filename, $content)
public static function oss($filename, $content, $append = false)
{
try {
$endpoint = 'http://' . sysconf('storage_oss_domain');