Plugs.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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 app\admin\service\NodeService;
  16. use library\Controller;
  17. use library\File;
  18. /**
  19. * 后台插件管理
  20. * Class Plugs
  21. * @package app\admin\controller\api
  22. */
  23. class Plugs extends Controller
  24. {
  25. /**
  26. * Plugs constructor.
  27. */
  28. public function __construct()
  29. {
  30. parent::__construct();
  31. if (!NodeService::islogin()) {
  32. $this->error('访问授权失败,请重新登录授权再试!');
  33. }
  34. }
  35. /**
  36. * Plupload 插件上传文件
  37. * @return \think\response\Json
  38. * @throws \think\Exception
  39. * @throws \think\exception\PDOException
  40. */
  41. public function plupload()
  42. {
  43. if (!($file = $this->getUploadFile()) || empty($file)) {
  44. return json(['uploaded' => false, 'error' => ['message' => '文件上传异常,文件可能过大或未上传']]);
  45. }
  46. if (!$file->checkExt(strtolower(sysconf('storage_local_exts')))) {
  47. return json(['uploaded' => false, 'error' => ['message' => '文件上传类型受限,请在后台配置']]);
  48. }
  49. if ($file->checkExt('php')) {
  50. return json(['uploaded' => false, 'error' => ['message' => '可执行文件禁止上传到本地服务器']]);
  51. }
  52. $this->safe = $this->getUploadSafe();
  53. $this->uptype = $this->getUploadType();
  54. $this->extend = pathinfo($file->getInfo('name'), PATHINFO_EXTENSION);
  55. $name = File::name($file->getPathname(), $this->extend, '', 'md5_file');
  56. $info = File::instance($this->uptype)->save($name, file_get_contents($file->getRealPath()), $this->safe);
  57. if (is_array($info) && isset($info['url'])) {
  58. return json(['uploaded' => true, 'filename' => $name, 'url' => $this->safe ? $name : $info['url']]);
  59. } else {
  60. return json(['uploaded' => false, 'error' => ['message' => '文件处理失败,请稍候再试!']]);
  61. }
  62. }
  63. /**
  64. * 获取文件上传方式
  65. * @return string
  66. * @throws \think\Exception
  67. * @throws \think\exception\PDOException
  68. */
  69. private function getUploadType()
  70. {
  71. $this->uptype = input('uptype');
  72. if (!in_array($this->uptype, ['local', 'oss', 'qiniu'])) {
  73. $this->uptype = sysconf('storage_type');
  74. }
  75. return $this->uptype;
  76. }
  77. /**
  78. * 获取上传安全模式
  79. * @return boolean
  80. */
  81. private function getUploadSafe()
  82. {
  83. return $this->safe = boolval(input('safe'));
  84. }
  85. /**
  86. * 获取本地文件对象
  87. * @return \think\File
  88. */
  89. private function getUploadFile()
  90. {
  91. try {
  92. return $this->request->file('file');
  93. } catch (\Exception $e) {
  94. $this->error(lang($e->getMessage()));
  95. }
  96. }
  97. /**
  98. * 系统选择器图标
  99. */
  100. public function icon()
  101. {
  102. $this->title = '图标选择器';
  103. $this->field = input('field', 'icon');
  104. $this->fetch();
  105. }
  106. }