修改文件上传

Signed-off-by: Anyon <zoujingli@qq.com>
This commit is contained in:
Anyon 2022-11-23 14:06:06 +00:00 committed by Gitee
parent e9a80653da
commit 648f7b7b1c
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -120,27 +120,6 @@ class Upload extends Controller
$this->success('获取上传授权参数', array_merge($data, ['id' => $file->id ?? 0]), 404);
}
/**
* 更新文件状态
* @login true
* @return void
*/
public function done()
{
$data = $this->_vali([
'id.require' => '编号不能为空!',
'hash.require' => '哈希不能为空!',
'uuid.value' => AdminService::getUserId(),
]);
$file = SystemFile::mk()->where($data)->findOrEmpty();
if ($file->isEmpty()) $this->error('文件不存在!');
if ($file->save(['status' => 2])) {
$this->success('更新成功!');
} else {
$this->error('更新失败!');
}
}
/**
* 文件上传入口
* @login true
@ -202,6 +181,27 @@ class Upload extends Controller
}
}
/**
* 更新文件状态
* @login true
* @return void
*/
public function done()
{
$data = $this->_vali([
'id.require' => '编号不能为空!',
'hash.require' => '哈希不能为空!',
'uuid.value' => AdminService::getUserId(),
]);
$file = SystemFile::mk()->where($data)->findOrEmpty();
if ($file->isEmpty()) $this->error('文件不存在!');
if ($file->save(['status' => 2])) {
$this->success('更新成功!');
} else {
$this->error('更新失败!');
}
}
/**
* 文件选择器
* @login true