AssetController.php 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  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-04-30
  10. // +—————————————————————————————————————————————————————————————————————
  11. namespace app\user\controller;
  12. use cmf\controller\AdminBaseController;
  13. use cmf\lib\Upload;
  14. use think\facade\View;
  15. /**
  16. * 附件上传控制器
  17. * Class Asset
  18. * @package app\asset\controller
  19. */
  20. class AssetController extends AdminBaseController{
  21. public function initialize(){
  22. parent::initialize();
  23. $adminId = cmf_get_current_admin_id();
  24. $userId = cmf_get_current_user_id();
  25. if (empty($adminId) && empty($userId)) {
  26. $this->error("非法上传!");
  27. }
  28. }
  29. /**
  30. * webuploader 上传
  31. */
  32. public function webuploaderBF(){
  33. if ($this->request->isPost()) {
  34. $uploader = new Upload();
  35. $result = $uploader->upload();
  36. if ($result === false) {
  37. $this->error($uploader->getError());
  38. } else {
  39. $this->success("上传成功!", '', $result);
  40. }
  41. } else {
  42. $uploadSetting = cmf_get_upload_setting();
  43. $arrFileTypes = [
  44. 'image' => ['title' => 'Image files', 'extensions' => $uploadSetting['file_types']['image']['extensions']],
  45. 'video' => ['title' => 'Video files', 'extensions' => $uploadSetting['file_types']['video']['extensions']],
  46. 'audio' => ['title' => 'Audio files', 'extensions' => $uploadSetting['file_types']['audio']['extensions']],
  47. 'file' => ['title' => 'Custom files', 'extensions' => $uploadSetting['file_types']['file']['extensions']]
  48. ];
  49. $arrData = $this->request->param();
  50. if (empty($arrData["filetype"])) {
  51. $arrData["filetype"] = "image";
  52. }
  53. $fileType = $arrData["filetype"];
  54. if (array_key_exists($arrData["filetype"], $arrFileTypes)) {
  55. $extensions = $uploadSetting['file_types'][$arrData["filetype"]]['extensions'];
  56. $fileTypeUploadMaxFileSize = $uploadSetting['file_types'][$fileType]['upload_max_filesize'];
  57. } else {
  58. $this->error('上传文件类型配置错误!');
  59. }
  60. View::share('filetype', $arrData["filetype"]);
  61. View::share('extensions', $extensions);
  62. View::share('upload_max_filesize', $fileTypeUploadMaxFileSize * 1024);
  63. View::share('upload_max_filesize_mb', intval($fileTypeUploadMaxFileSize / 1024));
  64. $maxFiles = intval($uploadSetting['max_files']);
  65. $maxFiles = empty($maxFiles) ? 20 : $maxFiles;
  66. $chunkSize = intval($uploadSetting['chunk_size']);
  67. $chunkSize = empty($chunkSize) ? 512 : $chunkSize;
  68. View::share('max_files', $arrData["multi"] ? $maxFiles : 1);
  69. View::share('chunk_size', $chunkSize); //// 单位KB
  70. View::share('multi', $arrData["multi"]);
  71. View::share('app', $arrData["app"]);
  72. $content = hook_one('fetch_upload_view');
  73. $tabs = ['local', 'url', 'cloud'];
  74. $tab = !empty($arrData['tab']) && in_array($arrData['tab'], $tabs) ? $arrData['tab'] : 'local';
  75. if (!empty($content)) {
  76. $this->assign('has_cloud_storage', true);
  77. }
  78. if (!empty($content) && $tab == 'cloud') {
  79. return $content;
  80. }
  81. $tab = $tab == 'cloud' ? 'local' : $tab;
  82. $this->assign('tab', $tab);
  83. return $this->fetch(":webuploader");
  84. }
  85. }
  86. /**
  87. * webuploader 上传
  88. */
  89. public function webuploader(){
  90. if ($this->request->isPost()) {
  91. /*$allow_wj="jpg,JPG,png,PNG,gif,GIF,Gif,jpeg,JPEG";
  92. $allow=explode(",",$allow_wj);
  93. if (!get_file_suffix($_FILES['file']['name'],$allow)){
  94. $this->error("请上传正确格式的图片");
  95. }*/
  96. $files["file"]=$_FILES["file"];
  97. $type='img';
  98. $rs=adminUploadFiles($files,$type);
  99. if($rs['code']!=0){
  100. $this->error($rs['msg']);
  101. }
  102. $this->success("上传成功!", '', $rs);
  103. } else {
  104. $uploadSetting = cmf_get_upload_setting();
  105. $arrFileTypes = [
  106. 'image' => ['title' => 'Image files', 'extensions' => $uploadSetting['file_types']['image']['extensions']],
  107. 'video' => ['title' => 'Video files', 'extensions' => $uploadSetting['file_types']['video']['extensions']],
  108. 'audio' => ['title' => 'Audio files', 'extensions' => $uploadSetting['file_types']['audio']['extensions']],
  109. 'file' => ['title' => 'Custom files', 'extensions' => $uploadSetting['file_types']['file']['extensions']]
  110. ];
  111. $arrData = $this->request->param();
  112. if (empty($arrData["filetype"])) {
  113. $arrData["filetype"] = "image";
  114. }
  115. $fileType = $arrData["filetype"];
  116. if (array_key_exists($arrData["filetype"], $arrFileTypes)) {
  117. $extensions = $uploadSetting['file_types'][$arrData["filetype"]]['extensions'];
  118. $fileTypeUploadMaxFileSize = $uploadSetting['file_types'][$fileType]['upload_max_filesize'];
  119. } else {
  120. $this->error('上传文件类型配置错误!');
  121. }
  122. View::share('filetype', $arrData["filetype"]);
  123. View::share('extensions', $extensions);
  124. View::share('upload_max_filesize', $fileTypeUploadMaxFileSize * 1024);
  125. View::share('upload_max_filesize_mb', intval($fileTypeUploadMaxFileSize / 1024));
  126. $maxFiles = intval($uploadSetting['max_files']);
  127. $maxFiles = empty($maxFiles) ? 20 : $maxFiles;
  128. $chunkSize = intval($uploadSetting['chunk_size']);
  129. $chunkSize = empty($chunkSize) ? 512 : $chunkSize;
  130. View::share('max_files', $arrData["multi"] ? $maxFiles : 1);
  131. View::share('chunk_size', $chunkSize); //// 单位KB
  132. View::share('multi', $arrData["multi"]);
  133. View::share('app', $arrData["app"]);
  134. $content = hook_one('fetch_upload_view');
  135. $tabs = ['local', 'url', 'cloud'];
  136. $tab = !empty($arrData['tab']) && in_array($arrData['tab'], $tabs) ? $arrData['tab'] : 'local';
  137. if (!empty($content)) {
  138. $this->assign('has_cloud_storage', true);
  139. }
  140. if (!empty($content) && $tab == 'cloud') {
  141. return $content;
  142. }
  143. $tab = $tab == 'cloud' ? 'local' : $tab;
  144. $this->assign('tab', $tab);
  145. return $this->fetch(":webuploader");
  146. }
  147. }
  148. }