2024-01-03 09:54:57 +08:00

120 lines
3.6 KiB
PHP
Executable File

<?php
namespace app\common\Model;
use function GuzzleHttp\Promise\task;
use think\Db;
/**
* 文件
* Class TaskStar
* @package app\common\Model
*/
class File extends CommonModel
{
protected $append = ['fullName'];
/**
* @param $projectCode
* @param string $taskCode
* @param $data
* @return File
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public static function createFile($projectCode, $data)
{
$project = Project::where(['code' => $projectCode])->find();
if (!$project) {
throw new \Exception('该项目已失效', 1);
}
$memberCode = getCurrentMember()['code'];
$orgCode = getCurrentOrganizationCode();
$fileData = [
'code' => createUniqueCode('file'),
'create_by' => $memberCode,
'project_code' => $projectCode,
'organization_code' => $orgCode,
'path_name' => isset($data['path_name']) ? $data['path_name'] : '',
'title' => isset($data['title']) ? $data['title'] : '',
'extension' => isset($data['extension']) ? $data['extension'] : '',
'size' => isset($data['size']) ? $data['size'] : '',
'object_type' => isset($data['object_type']) ? $data['object_type'] : '',
'extra' => isset($data['extra']) ? $data['extra'] : '',
'file_url' => isset($data['file_url']) ? $data['file_url'] : '',
'file_type' => isset($data['file_type']) ? $data['file_type'] : '',
'create_time' => nowTime(),
];
$result = self::create($fileData);
return $result;
}
/**
* 放入回收站
* @param $code
* @return File
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public function recycle($code)
{
$info = self::where(['code' => $code])->find();
if (!$info) {
throw new \Exception('文件不存在', 1);
}
if ($info['deleted']) {
throw new \Exception('文件已在回收站', 2);
}
$result = self::update(['deleted' => 1, 'deleted_time' => nowTime()], ['code' => $code]);
return $result;
}
/**
* 恢复文件
* @param $code
* @return File
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public function recovery($code)
{
$info = self::where(['code' => $code])->find();
if (!$info) {
throw new \Exception('文件不存在', 1);
}
if (!$info['deleted']) {
throw new \Exception('文件已恢复', 2);
}
$result = self::update(['deleted' => 0], ['code' => $code]);
return $result;
}
public function deleteFile($code)
{
//todo 权限判断
$info = self::where(['code' => $code])->find();
if (!$info) {
throw new \Exception('文件不存在', 1);
}
Db::startTrans();
try {
self::where(['code' => $code])->delete();
//todo 删除物理文件
Db::commit();
} catch (\Exception $e) {
Db::rollback();
throw new \Exception($e->getMessage());
}
return true;
}
public function getFullNameAttr($value, $data)
{
return "{$data['title']}.{$data['extension']}";
}
}