Attachments.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. namespace catchAdmin\system\model;
  3. use catchAdmin\system\model\search\AttachmentsSearch;
  4. use catcher\base\CatchModel;
  5. use think\file\UploadedFile;
  6. use think\Model;
  7. class Attachments extends CatchModel
  8. {
  9. use AttachmentsSearch;
  10. protected $name = 'attachments';
  11. protected $field = [
  12. 'id', //
  13. 'path', // 附件存储路径
  14. 'url', // 资源地址
  15. 'mime_type', // 资源mimeType
  16. 'file_ext', // 资源后缀
  17. 'file_size', // 资源大小
  18. 'filename', // 资源名称
  19. 'driver', // local,oss,qcloud,qiniu
  20. 'created_at', // 创建时间
  21. 'updated_at', // 更新时间
  22. 'deleted_at', // 删除时间
  23. ];
  24. public function getList()
  25. {
  26. return $this->order('id', 'desc')
  27. ->catchSearch()
  28. ->catchOrder()
  29. ->paginate();
  30. }
  31. /**
  32. *
  33. *
  34. * @time 2020年06月01日
  35. * @param $data ['driver' => '', 'path' => '', 'url' => ],
  36. * @param UploadedFile $file
  37. * @return Attachments|Model
  38. */
  39. public static function store($data, UploadedFile $file)
  40. {
  41. return parent::create([
  42. 'file_size' => $file->getSize(),
  43. 'mime_type' => $file->getMime(),
  44. 'file_ext' => $file->getOriginalExtension(),
  45. 'filename' => $file->getOriginalName(),
  46. 'driver' => $data['driver'],
  47. 'url' => $data['url'],
  48. 'path' => $data['path']
  49. ]);
  50. }
  51. }