Upload.php 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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\Exception
  52. * @throws \think\admin\Exception
  53. * @throws \think\db\exception\DataNotFoundException
  54. * @throws \think\db\exception\DbException
  55. * @throws \think\db\exception\ModelNotFoundException
  56. */
  57. public function state()
  58. {
  59. [$this->name, $this->safe] = [input('name', null), $this->getSafe()];
  60. $data = ['uptype' => $this->getType(), 'xkey' => input('xkey'), 'safe' => intval($this->safe)];
  61. if ($info = Storage::instance($data['uptype'])->info($data['xkey'], $this->safe, $this->name)) {
  62. $data['url'] = $info['url'];
  63. $this->success('文件已经上传', $data, 200);
  64. } elseif ('local' === $data['uptype']) {
  65. $data['url'] = LocalStorage::instance()->url($data['xkey'], $this->safe, $this->name);
  66. $data['server'] = LocalStorage::instance()->upload();
  67. } elseif ('qiniu' === $data['uptype']) {
  68. $data['url'] = QiniuStorage::instance()->url($data['xkey'], $this->safe, $this->name);
  69. $data['token'] = QiniuStorage::instance()->buildUploadToken($data['xkey'], 3600, $this->name);
  70. $data['server'] = QiniuStorage::instance()->upload();
  71. } elseif ('alioss' === $data['uptype']) {
  72. $token = AliossStorage::instance()->buildUploadToken($data['xkey'], 3600, $this->name);
  73. $data['url'] = $token['siteurl'];
  74. $data['policy'] = $token['policy'];
  75. $data['signature'] = $token['signature'];
  76. $data['OSSAccessKeyId'] = $token['keyid'];
  77. $data['server'] = AliossStorage::instance()->upload();
  78. } elseif ('txcos' === $data['uptype']) {
  79. $token = TxcosStorage::instance()->buildUploadToken($data['xkey'], 3600, $this->name);
  80. $data['url'] = $token['siteurl'];
  81. $data['q-ak'] = $token['q-ak'];
  82. $data['policy'] = $token['policy'];
  83. $data['q-key-time'] = $token['q-key-time'];
  84. $data['q-signature'] = $token['q-signature'];
  85. $data['q-sign-algorithm'] = $token['q-sign-algorithm'];
  86. $data['server'] = TxcosStorage::instance()->upload();
  87. }
  88. $this->success('获取授权参数', $data, 404);
  89. }
  90. /**
  91. * 文件上传入口
  92. * @login true
  93. * @return Json
  94. * @throws \think\admin\Exception
  95. * @throws \think\db\exception\DataNotFoundException
  96. * @throws \think\db\exception\DbException
  97. * @throws \think\db\exception\ModelNotFoundException
  98. */
  99. public function file(): Json
  100. {
  101. if (!($file = $this->getFile()) || empty($file)) {
  102. return json(['uploaded' => false, 'error' => ['message' => '文件上传异常,文件可能过大或未上传']]);
  103. }
  104. $this->extension = strtolower($file->getOriginalExtension());
  105. if (!in_array($this->extension, explode(',', strtolower(sysconf('storage.allow_exts'))))) {
  106. return json(['uploaded' => false, 'error' => ['message' => '文件上传类型受限,请在后台配置']]);
  107. }
  108. if (in_array($this->extension, ['php', 'sh'])) {
  109. return json(['uploaded' => false, 'error' => ['message' => '可执行文件禁止上传到本地服务器']]);
  110. }
  111. [$this->safe, $this->uptype, $this->name] = [$this->getSafe(), $this->getType(), input('xkey')];
  112. if (empty($this->name)) $this->name = Storage::name($file->getPathname(), $this->extension, '', 'md5_file');
  113. if ($this->uptype === 'local') {
  114. $local = LocalStorage::instance();
  115. $realpath = dirname($realname = $local->path($this->name, $this->safe));
  116. file_exists($realpath) && is_dir($realpath) || mkdir($realpath, 0755, true);
  117. @rename($file->getPathname(), $realname);
  118. $info = $local->info($this->name, $this->safe, $file->getOriginalName());
  119. } else {
  120. $bina = file_get_contents($file->getRealPath());
  121. $info = Storage::instance($this->uptype)->set($this->name, $bina, $this->safe, $file->getOriginalName());
  122. }
  123. if (is_array($info) && isset($info['url'])) {
  124. return json(['uploaded' => true, 'filename' => $this->name, 'url' => $this->safe ? $this->name : $info['url']]);
  125. } else {
  126. return json(['uploaded' => false, 'error' => ['message' => '文件处理失败,请稍候再试!']]);
  127. }
  128. }
  129. /**
  130. * 获取文件上传类型
  131. * @return boolean
  132. */
  133. private function getSafe(): bool
  134. {
  135. return boolval(input('safe', '0'));
  136. }
  137. /**
  138. * 获取文件上传方式
  139. * @return string
  140. * @throws \think\db\exception\DataNotFoundException
  141. * @throws \think\db\exception\DbException
  142. * @throws \think\db\exception\ModelNotFoundException
  143. */
  144. private function getType(): string
  145. {
  146. $this->uptype = strtolower(input('uptype', ''));
  147. if (!in_array($this->uptype, ['local', 'qiniu', 'alioss', 'txcos'])) {
  148. $this->uptype = strtolower(sysconf('storage.type'));
  149. }
  150. return strtolower($this->uptype);
  151. }
  152. /**
  153. * 获取本地文件对象
  154. * @return UploadedFile
  155. */
  156. private function getFile(): UploadedFile
  157. {
  158. try {
  159. return $this->request->file('file');
  160. } catch (\Exception $exception) {
  161. $this->error(lang($exception->getMessage()));
  162. }
  163. }
  164. }