Plugs.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\admin\controller\api;
  15. use library\Controller;
  16. use library\File;
  17. /**
  18. * 后台插件管理
  19. * Class Plugs
  20. * @package app\admin\controller\api
  21. */
  22. class Plugs extends Controller
  23. {
  24. /**
  25. * 系统图标选择器
  26. */
  27. public function icon()
  28. {
  29. $this->title = '图标选择器';
  30. $this->field = input('field', 'icon');
  31. $this->fetch();
  32. }
  33. /**
  34. * 获取文件上传参数
  35. * @throws \think\Exception
  36. * @throws \think\exception\PDOException
  37. */
  38. public function check()
  39. {
  40. $diff1 = explode(',', strtolower(input('exts', '')));
  41. $diff2 = explode(',', strtolower(sysconf('storage_local_exts')));
  42. $exts = array_intersect($diff1, $diff2);
  43. $this->success('获取文件上传参数', [
  44. 'exts' => join('|', $exts),
  45. 'mime' => File::mine($exts),
  46. 'type' => $this->getUploadType(),
  47. 'data' => $this->getUploadData(),
  48. ]);
  49. }
  50. /**
  51. * 后台通用文件上传
  52. * @login true
  53. * @return \think\response\Json
  54. * @throws \think\Exception
  55. * @throws \think\exception\PDOException
  56. */
  57. public function upload()
  58. {
  59. if (!($file = $this->getUploadFile()) || empty($file)) {
  60. return json(['uploaded' => false, 'error' => ['message' => '文件上传异常,文件可能过大或未上传']]);
  61. }
  62. if (!$file->checkExt(strtolower(sysconf('storage_local_exts')))) {
  63. return json(['uploaded' => false, 'error' => ['message' => '文件上传类型受限,请在后台配置']]);
  64. }
  65. if ($file->checkExt('php,sh')) {
  66. return json(['uploaded' => false, 'error' => ['message' => '可执行文件禁止上传到本地服务器']]);
  67. }
  68. $this->safe = boolval(input('safe'));
  69. $this->uptype = $this->getUploadType();
  70. $this->extend = pathinfo($file->getInfo('name'), PATHINFO_EXTENSION);
  71. $name = File::name($file->getPathname(), $this->extend, '', 'md5_file');
  72. $info = File::instance($this->uptype)->save($name, file_get_contents($file->getRealPath()), $this->safe);
  73. if (is_array($info) && isset($info['url'])) {
  74. return json(['uploaded' => true, 'filename' => $name, 'url' => $this->safe ? $name : $info['url']]);
  75. } else {
  76. return json(['uploaded' => false, 'error' => ['message' => '文件处理失败,请稍候再试!']]);
  77. }
  78. }
  79. /**
  80. * 生成文件上传参数
  81. * @return array
  82. * @throws \think\Exception
  83. */
  84. private function getUploadData()
  85. {
  86. if ($this->getUploadType() === 'qiniu') {
  87. $file = File::instance('qiniu');
  88. return ['url' => $file->upload(true), 'token' => $file->buildUploadToken(), 'uptype' => $this->getUploadType()];
  89. } else {
  90. return ['url' => '?s=admin/api.plugs/upload', 'token' => uniqid('local_upload_'), 'uptype' => $this->getUploadType()];
  91. }
  92. }
  93. /**
  94. * 获取文件上传方式
  95. * @return string
  96. * @throws \think\Exception
  97. * @throws \think\exception\PDOException
  98. */
  99. private function getUploadType()
  100. {
  101. $this->uptype = input('uptype');
  102. if (!in_array($this->uptype, ['local', 'oss', 'qiniu'])) {
  103. $this->uptype = sysconf('storage_type');
  104. }
  105. return $this->uptype;
  106. }
  107. /**
  108. * 获取本地文件对象
  109. * @return \think\File
  110. */
  111. private function getUploadFile()
  112. {
  113. try {
  114. return $this->request->file('file');
  115. } catch (\Exception $e) {
  116. $this->error(lang($e->getMessage()));
  117. }
  118. }
  119. }