AssetController.php 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. <?php
  2. // +—————————————————————————————————————————————————————————————————————
  3. // | Created by Yunbao
  4. // +—————————————————————————————————————————————————————————————————————
  5. // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
  6. // +—————————————————————————————————————————————————————————————————————
  7. // | Author: https://gitee.com/yunbaokeji
  8. // +—————————————————————————————————————————————————————————————————————
  9. // | Date: 2022-02-17
  10. // +—————————————————————————————————————————————————————————————————————
  11. namespace app\user\controller;
  12. use cmf\controller\AdminBaseController;
  13. use cmf\lib\Upload;
  14. use think\facade\View;
  15. if (!function_exists('Aws\constantly')) {
  16. require CMF_ROOT . 'sdk/aws/aws-autoloader.php';
  17. }
  18. use Aws\S3\S3Client;
  19. /**
  20. * 附件上传控制器
  21. * Class Asset
  22. * @package app\asset\controller
  23. */
  24. class AssetController extends AdminBaseController
  25. {
  26. public function initialize()
  27. {
  28. $adminId = cmf_get_current_admin_id();
  29. $userId = cmf_get_current_user_id();
  30. if (empty($adminId) && empty($userId)) {
  31. $this->error("非法上传!");
  32. }
  33. connectionRedis();
  34. }
  35. /**
  36. * webuploader 上传
  37. */
  38. public function webuploaderBF(){
  39. if ($this->request->isPost()) {
  40. $uploader = new Upload();
  41. $result = $uploader->upload();
  42. if ($result === false) {
  43. $this->error($uploader->getError());
  44. } else {
  45. $this->success("上传成功!", '', $result);
  46. }
  47. } else {
  48. $uploadSetting = cmf_get_upload_setting();
  49. $arrFileTypes = [
  50. 'image' => ['title' => 'Image files', 'extensions' => $uploadSetting['file_types']['image']['extensions']],
  51. 'video' => ['title' => 'Video files', 'extensions' => $uploadSetting['file_types']['video']['extensions']],
  52. 'audio' => ['title' => 'Audio files', 'extensions' => $uploadSetting['file_types']['audio']['extensions']],
  53. 'file' => ['title' => 'Custom files', 'extensions' => $uploadSetting['file_types']['file']['extensions']]
  54. ];
  55. $arrData = $this->request->param();
  56. if (empty($arrData["filetype"])) {
  57. $arrData["filetype"] = "image";
  58. }
  59. $fileType = $arrData["filetype"];
  60. if (array_key_exists($arrData["filetype"], $arrFileTypes)) {
  61. $extensions = $uploadSetting['file_types'][$arrData["filetype"]]['extensions'];
  62. $fileTypeUploadMaxFileSize = $uploadSetting['file_types'][$fileType]['upload_max_filesize'];
  63. } else {
  64. $this->error('上传文件类型配置错误!');
  65. }
  66. View::share('filetype', $arrData["filetype"]);
  67. View::share('extensions', $extensions);
  68. View::share('upload_max_filesize', $fileTypeUploadMaxFileSize * 1024);
  69. View::share('upload_max_filesize_mb', intval($fileTypeUploadMaxFileSize / 1024));
  70. $maxFiles = intval($uploadSetting['max_files']);
  71. $maxFiles = empty($maxFiles) ? 20 : $maxFiles;
  72. $chunkSize = intval($uploadSetting['chunk_size']);
  73. $chunkSize = empty($chunkSize) ? 512 : $chunkSize;
  74. View::share('max_files', $arrData["multi"] ? $maxFiles : 1);
  75. View::share('chunk_size', $chunkSize); //// 单位KB
  76. View::share('multi', $arrData["multi"]);
  77. View::share('app', $arrData["app"]);
  78. $content = hook_one('fetch_upload_view');
  79. $tabs = ['local', 'url', 'cloud'];
  80. $tab = !empty($arrData['tab']) && in_array($arrData['tab'], $tabs) ? $arrData['tab'] : 'local';
  81. if (!empty($content)) {
  82. $this->assign('has_cloud_storage', true);
  83. }
  84. if (!empty($content) && $tab == 'cloud') {
  85. return $content;
  86. }
  87. $tab = $tab == 'cloud' ? 'local' : $tab;
  88. $this->assign('tab', $tab);
  89. return $this->fetch(":webuploader");
  90. }
  91. }
  92. /**
  93. * webuploader 上传
  94. */
  95. public function webuploader(){
  96. $minio_domain_url = 'http://43.239.167.134:9000';
  97. if ($this->request->isPost()) {
  98. $configpri=getConfigPri();
  99. /*$cloudtype=$configpri['cloudtype'];
  100. if($cloudtype=="1"){ //七牛云存储
  101. $uploader = new Upload();
  102. $result = $uploader->upload();
  103. if ($result === false) {
  104. $this->error($uploader->getError());
  105. } else {
  106. $this->success("上传成功!", '', $result);
  107. }
  108. }else{*/
  109. //其他云存储
  110. $result=adminUploadFiles($_FILES);
  111. if ($result!==false) {
  112. $data=array(
  113. 'filepath' => $result,
  114. 'name'=> '',
  115. 'id' => 'WU_FILE_0',
  116. // 'preview_url' => $configpri['aws_hosturl']."/".$result,
  117. 'preview_url' => $minio_domain_url."/".$result,
  118. 'url' => $result,
  119. 'code' =>0,
  120. );
  121. $this->success("上传成功!", '', $data);
  122. }else{
  123. $this->error(lang('上传失败,请重试'));
  124. }
  125. // }
  126. } else {
  127. $uploadSetting = cmf_get_upload_setting();
  128. $arrFileTypes = [
  129. 'image' => ['title' => 'Image files', 'extensions' => $uploadSetting['file_types']['image']['extensions']],
  130. 'video' => ['title' => 'Video files', 'extensions' => $uploadSetting['file_types']['video']['extensions']],
  131. 'audio' => ['title' => 'Audio files', 'extensions' => $uploadSetting['file_types']['audio']['extensions']],
  132. 'file' => ['title' => 'Custom files', 'extensions' => $uploadSetting['file_types']['file']['extensions']]
  133. ];
  134. $arrData = $this->request->param();
  135. if (empty($arrData["filetype"])) {
  136. $arrData["filetype"] = "image";
  137. }
  138. $fileType = $arrData["filetype"];
  139. if (array_key_exists($arrData["filetype"], $arrFileTypes)) {
  140. $extensions = $uploadSetting['file_types'][$arrData["filetype"]]['extensions'];
  141. $fileTypeUploadMaxFileSize = $uploadSetting['file_types'][$fileType]['upload_max_filesize'];
  142. } else {
  143. $this->error('上传文件类型配置错误!');
  144. }
  145. View::share('filetype', $arrData["filetype"]);
  146. View::share('extensions', $extensions);
  147. View::share('upload_max_filesize', $fileTypeUploadMaxFileSize * 1024);
  148. View::share('upload_max_filesize_mb', intval($fileTypeUploadMaxFileSize / 1024));
  149. $maxFiles = intval($uploadSetting['max_files']);
  150. $maxFiles = empty($maxFiles) ? 20 : $maxFiles;
  151. $chunkSize = intval($uploadSetting['chunk_size']);
  152. $chunkSize = empty($chunkSize) ? 512 : $chunkSize;
  153. View::share('max_files', $arrData["multi"] ? $maxFiles : 1);
  154. View::share('chunk_size', $chunkSize); //// 单位KB
  155. View::share('multi', $arrData["multi"]);
  156. View::share('app', $arrData["app"]);
  157. $content = hook_one('fetch_upload_view');
  158. $tabs = ['local', 'url', 'cloud'];
  159. $tab = !empty($arrData['tab']) && in_array($arrData['tab'], $tabs) ? $arrData['tab'] : 'local';
  160. if (!empty($content)) {
  161. $this->assign('has_cloud_storage', true);
  162. }
  163. if (!empty($content) && $tab == 'cloud') {
  164. return $content;
  165. }
  166. $tab = $tab == 'cloud' ? 'local' : $tab;
  167. $this->assign('tab', $tab);
  168. return $this->fetch(":webuploader");
  169. }
  170. }
  171. }