Upload.php 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2021 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://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 think\admin\Controller;
  16. use think\admin\Storage;
  17. use think\admin\storage\AliossStorage;
  18. use think\admin\storage\LocalStorage;
  19. use think\admin\storage\QiniuStorage;
  20. use think\admin\storage\TxcosStorage;
  21. use think\file\UploadedFile;
  22. use think\Response;
  23. use think\response\Json;
  24. /**
  25. * 文件上传接口
  26. * Class Upload
  27. * @package app\admin\controller\api
  28. */
  29. class Upload extends Controller
  30. {
  31. /**
  32. * 文件上传JS支持
  33. * @return Response
  34. * @throws \think\db\exception\DataNotFoundException
  35. * @throws \think\db\exception\DbException
  36. * @throws \think\db\exception\ModelNotFoundException
  37. */
  38. public function index(): Response
  39. {
  40. $data = ['exts' => []];
  41. foreach (explode(',', sysconf('storage.allow_exts')) as $ext) {
  42. $data['exts'][$ext] = Storage::mime($ext);
  43. }
  44. $template = realpath(__DIR__ . '/../../view/api/upload.js');
  45. $data['exts'] = json_encode($data['exts'], JSON_UNESCAPED_UNICODE);
  46. return view($template, $data)->contentType('application/x-javascript');
  47. }
  48. /**
  49. * 检查文件上传已经上传
  50. * @login true
  51. * @throws \think\admin\Exception
  52. * @throws \think\db\exception\DataNotFoundException
  53. * @throws \think\db\exception\DbException
  54. * @throws \think\db\exception\ModelNotFoundException
  55. */
  56. public function state()
  57. {
  58. [$this->name, $this->safe] = [input('name', null), $this->getSafe()];
  59. $data = ['uptype' => $this->getType(), 'xkey' => input('xkey'), 'safe' => intval($this->safe)];
  60. if ($info = Storage::instance($data['uptype'])->info($data['xkey'], $this->safe, $this->name)) {
  61. $data['url'] = $info['url'];
  62. $this->success('文件已经上传', $data, 200);
  63. } elseif ('local' === $data['uptype']) {
  64. $data['url'] = LocalStorage::instance()->url($data['xkey'], $this->safe, $this->name);
  65. $data['server'] = LocalStorage::instance()->upload();
  66. } elseif ('qiniu' === $data['uptype']) {
  67. $data['url'] = QiniuStorage::instance()->url($data['xkey'], $this->safe, $this->name);
  68. $data['token'] = QiniuStorage::instance()->buildUploadToken($data['xkey'], 3600, $this->name);
  69. $data['server'] = QiniuStorage::instance()->upload();
  70. } elseif ('alioss' === $data['uptype']) {
  71. $token = AliossStorage::instance()->buildUploadToken($data['xkey'], 3600, $this->name);
  72. $data['url'] = $token['siteurl'];
  73. $data['policy'] = $token['policy'];
  74. $data['signature'] = $token['signature'];
  75. $data['OSSAccessKeyId'] = $token['keyid'];
  76. $data['server'] = AliossStorage::instance()->upload();
  77. } elseif ('txcos' === $data['uptype']) {
  78. $token = TxcosStorage::instance()->buildUploadToken($data['xkey'], 3600, $this->name);
  79. $data['url'] = $token['siteurl'];
  80. $data['q-ak'] = $token['q-ak'];
  81. $data['policy'] = $token['policy'];
  82. $data['q-key-time'] = $token['q-key-time'];
  83. $data['q-signature'] = $token['q-signature'];
  84. $data['q-sign-algorithm'] = $token['q-sign-algorithm'];
  85. $data['server'] = TxcosStorage::instance()->upload();
  86. }
  87. $this->success('获取授权参数', $data, 404);
  88. }
  89. /**
  90. * 文件上传入口
  91. * @login true
  92. * @return Json
  93. * @throws \think\admin\Exception
  94. * @throws \think\db\exception\DataNotFoundException
  95. * @throws \think\db\exception\DbException
  96. * @throws \think\db\exception\ModelNotFoundException
  97. */
  98. public function file(): Json
  99. {
  100. if (!($file = $this->getFile()) || empty($file)) {
  101. return json(['uploaded' => false, 'error' => ['message' => '文件上传异常,文件可能过大或未上传']]);
  102. }
  103. $this->extension = strtolower($file->getOriginalExtension());
  104. if (!in_array($this->extension, explode(',', strtolower(sysconf('storage.allow_exts'))))) {
  105. return json(['uploaded' => false, 'error' => ['message' => '文件上传类型受限,请在后台配置']]);
  106. }
  107. if (in_array($this->extension, ['php', 'sh'])) {
  108. return json(['uploaded' => false, 'error' => ['message' => '可执行文件禁止上传到本地服务器']]);
  109. }
  110. [$this->safe, $this->uptype, $this->name] = [$this->getSafe(), $this->getType(), input('xkey')];
  111. if (empty($this->name)) $this->name = Storage::name($file->getPathname(), $this->extension, '', 'md5_file');
  112. if ($this->uptype === 'local') {
  113. $local = LocalStorage::instance();
  114. $realpath = dirname($realname = $local->path($this->name, $this->safe));
  115. file_exists($realpath) && is_dir($realpath) || mkdir($realpath, 0755, true);
  116. @rename($file->getPathname(), $realname);
  117. $info = $local->info($this->name, $this->safe, $file->getOriginalName());
  118. } else {
  119. $bina = file_get_contents($file->getRealPath());
  120. $info = Storage::instance($this->uptype)->set($this->name, $bina, $this->safe, $file->getOriginalName());
  121. }
  122. if (is_array($info) && isset($info['url'])) {
  123. return json(['uploaded' => true, 'filename' => $this->name, 'url' => $this->safe ? $this->name : $info['url']]);
  124. } else {
  125. return json(['uploaded' => false, 'error' => ['message' => '文件处理失败,请稍候再试!']]);
  126. }
  127. }
  128. /**
  129. * 获取文件上传类型
  130. * @return boolean
  131. */
  132. private function getSafe(): bool
  133. {
  134. return boolval(input('safe', '0'));
  135. }
  136. /**
  137. * 获取文件上传方式
  138. * @return string
  139. * @throws \think\db\exception\DataNotFoundException
  140. * @throws \think\db\exception\DbException
  141. * @throws \think\db\exception\ModelNotFoundException
  142. */
  143. private function getType(): string
  144. {
  145. $this->uptype = strtolower(input('uptype', ''));
  146. if (!in_array($this->uptype, ['local', 'qiniu', 'alioss', 'txcos'])) {
  147. $this->uptype = strtolower(sysconf('storage.type'));
  148. }
  149. return strtolower($this->uptype);
  150. }
  151. /**
  152. * 获取本地文件对象
  153. * @return UploadedFile
  154. */
  155. private function getFile(): UploadedFile
  156. {
  157. try {
  158. return $this->request->file('file');
  159. } catch (\Exception $exception) {
  160. $this->error(lang($exception->getMessage()));
  161. }
  162. }
  163. }