Upload.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CatchAdmin [Just Like ~ ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  8. // +----------------------------------------------------------------------
  9. // | Author: JaguarJack [ njphper@gmail.com ]
  10. // +----------------------------------------------------------------------
  11. namespace catchAdmin\wechat\controller;
  12. use catchAdmin\system\model\Attachments;
  13. use catcher\base\CatchController;
  14. use catcher\base\CatchRequest;
  15. use catcher\CatchResponse;
  16. use catcher\CatchUpload;
  17. class Upload extends CatchController
  18. {
  19. protected $attachment;
  20. public function __construct(Attachments $attachment)
  21. {
  22. $this->attachment = $attachment;
  23. }
  24. /**
  25. * image upload
  26. *
  27. * @time 2020年01月25日
  28. * @param CatchRequest $request
  29. * @param CatchUpload $upload
  30. * @return \think\response\Json
  31. * @throws \Exception
  32. */
  33. public function image(CatchRequest $request, CatchUpload $upload): \think\response\Json
  34. {
  35. $images = $request->file();
  36. return CatchResponse::success($upload->setDriver(CatchUpload::LOCAL)->checkImages($images)->multiUpload($images['image']));
  37. }
  38. /**
  39. * file upload
  40. *
  41. * @time 2020年01月25日
  42. * @param CatchRequest $request
  43. * @param CatchUpload $upload
  44. * @return \think\response\Json
  45. * @throws \Exception
  46. */
  47. public function file(CatchRequest $request, CatchUpload $upload): \think\response\Json
  48. {
  49. $files = $request->file();
  50. return CatchResponse::success($upload->setDriver(CatchUpload::LOCAL)->checkFiles($files)->multiUpload($files['file']));
  51. }
  52. }