Plugs.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | framework
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://framework.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | github开源项目:https://github.com/zoujingli/framework
  12. // +----------------------------------------------------------------------
  13. namespace app\admin\controller\api;
  14. use app\admin\service\NodeService;
  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. * Plugs constructor.
  26. */
  27. public function __construct()
  28. {
  29. parent::__construct();
  30. if (!NodeService::islogin()) {
  31. $this->error('访问授权失败,请重新登录授权再试!');
  32. }
  33. }
  34. /**
  35. * Plupload 插件上传文件
  36. * @return \think\response\Json
  37. * @throws \think\Exception
  38. * @throws \think\exception\PDOException
  39. */
  40. public function plupload()
  41. {
  42. if (!($file = $this->getUploadFile()) || empty($file)) {
  43. return json(['uploaded' => false, 'error' => ['message' => '文件上传异常,文件可能过大或未上传']]);
  44. }
  45. if (!$file->checkExt(strtolower(sysconf('storage_local_exts')))) {
  46. return json(['uploaded' => false, 'error' => ['message' => '文件上传类型受限,请在后台配置']]);
  47. }
  48. if ($file->checkExt('php')) {
  49. return json(['uploaded' => false, 'error' => ['message' => '可执行文件禁止上传到本地服务器']]);
  50. }
  51. $this->safe = $this->getUploadSafe();
  52. $this->uptype = $this->getUploadType();
  53. $this->extend = pathinfo($file->getInfo('name'), PATHINFO_EXTENSION);
  54. $name = File::name($file->getPathname(), $this->extend, '', 'md5_file');
  55. $info = File::instance($this->uptype)->save($name, file_get_contents($file->getRealPath()), $this->safe);
  56. if (is_array($info) && isset($info['url'])) {
  57. return json(['uploaded' => true, 'filename' => $name, 'url' => $this->safe ? $name : $info['url']]);
  58. } else {
  59. return json(['uploaded' => false, 'error' => ['message' => '文件处理失败,请稍候再试!']]);
  60. }
  61. }
  62. /**
  63. * 获取文件上传方式
  64. * @return string
  65. * @throws \think\Exception
  66. * @throws \think\exception\PDOException
  67. */
  68. private function getUploadType()
  69. {
  70. $this->uptype = input('uptype');
  71. if (!in_array($this->uptype, ['local', 'oss', 'qiniu'])) {
  72. $this->uptype = sysconf('storage_type');
  73. }
  74. return $this->uptype;
  75. }
  76. /**
  77. * 获取上传安全模式
  78. * @return boolean
  79. */
  80. private function getUploadSafe()
  81. {
  82. return $this->safe = boolval(input('safe'));
  83. }
  84. /**
  85. * 获取本地文件对象
  86. * @return \think\File
  87. */
  88. private function getUploadFile()
  89. {
  90. try {
  91. return $this->request->file('file');
  92. } catch (\Exception $e) {
  93. $this->error(lang($e->getMessage()));
  94. }
  95. }
  96. /**
  97. * 系统选择器图标
  98. */
  99. public function icon()
  100. {
  101. $this->title = '图标选择器';
  102. $this->field = input('field', 'icon');
  103. $this->fetch();
  104. }
  105. }