Attachments.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. namespace catchAdmin\system\controller;
  3. use catcher\base\CatchController;
  4. use catcher\CatchResponse;
  5. use catchAdmin\system\model\Attachments as AttachmentsModel;
  6. use catcher\Utils;
  7. use catcher\facade\FileSystem;
  8. class Attachments extends CatchController
  9. {
  10. /**
  11. * 列表
  12. *
  13. * @time 2020年07月25日
  14. * @param AttachmentsModel $model
  15. * @return \think\response\Json
  16. */
  17. public function index(AttachmentsModel $model)
  18. {
  19. return CatchResponse::paginate($model->getList());
  20. }
  21. /**
  22. * 删除
  23. *
  24. * @time 2020年07月25日
  25. * @param $id
  26. * @param AttachmentsModel $model
  27. * @throws \League\Flysystem\FileNotFoundException
  28. * @throws \think\db\exception\DataNotFoundException
  29. * @throws \think\db\exception\DbException
  30. * @throws \think\db\exception\ModelNotFoundException
  31. * @return \think\response\Json
  32. */
  33. public function delete($id, AttachmentsModel $model)
  34. {
  35. $attachments = $model->whereIn('id', Utils::stringToArrayBy($id))->select();
  36. if ($model->deleteBy($id)) {
  37. foreach ($attachments as $attachment) {
  38. if ($attachment->driver == 'local') {
  39. $localPath = config('filesystem.disks.local.root') . DIRECTORY_SEPARATOR;
  40. $path = $localPath . str_replace('\\','\/', $attachment->path);
  41. if (FileSystem::exists($path)) {
  42. Filesystem::delete($path);
  43. }
  44. } else {
  45. Filesystem::delete($attachment->path);
  46. }
  47. }
  48. }
  49. return CatchResponse::success();
  50. }
  51. }