Upload.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384
  1. <?php
  2. namespace app\admin\controller;
  3. use think\Controller;
  4. use think\File;
  5. use think\Request;
  6. use think\Seeeion;
  7. use think\Db;
  8. use org\Qiniu;
  9. use org\Upayun;
  10. class Upload extends Base
  11. {
  12. /**
  13. * 上传图片到又拍云
  14. * @throws \Exception
  15. */
  16. public function uploadOnYpy(){
  17. $filePath = $_FILES['file']['tmp_name'];
  18. //取出图片后缀
  19. $type = explode(".",$_FILES['file']['name']);
  20. $type = end($type);
  21. //组装图片名
  22. $key = md5(time().uuid()).'.'.$type;
  23. $up = new Upayun();
  24. $data = $up->uploadFile($filePath,$key,'/up/');
  25. echo $data;
  26. }
  27. /**
  28. * 删除又拍云图片文件
  29. * @return \think\response\
  30. */
  31. public function deleteYpy(){
  32. $add = input('add');
  33. $up = new Upayun();
  34. $res = $up->delFile($add);
  35. if($res){
  36. return json(['code'=>200,'msg'=>'删除成功!']);
  37. }else{
  38. return json(['code'=>100,'msg'=>'删除失败!']);
  39. }
  40. }
  41. /**
  42. * deleteImg 删除七牛图片文件
  43. * @return \think\response\
  44. */
  45. public function deleteImg(){
  46. $add = input('add');
  47. $up = new Qiniu();
  48. $res = $up->delFile($add,'kevin');
  49. if($res){
  50. return json(['code'=>100,'msg'=>'删除失败!']);
  51. }else{
  52. return json(['code'=>200,'msg'=>'删除成功!']);
  53. }
  54. }
  55. /**
  56. * upload 上传图片到七牛云
  57. * @throws \Exception
  58. */
  59. public function upload(){
  60. //echo 111;die;
  61. //halt($_FILES);
  62. $filePath = $_FILES['file']['tmp_name'];
  63. //取出图片后缀
  64. $type = explode(".",$_FILES['file']['name']);
  65. $type = end($type);
  66. //组装图片名
  67. $key = md5(time().uuid()).'.'.$type;
  68. $up = new Qiniu();
  69. $data = $up->uploadFile($filePath,$key);
  70. echo $data;
  71. }
  72. /*
  73. * layui上传图片&音频
  74. */
  75. public function layUpload(){
  76. set_time_limit (0);
  77. $filePath = $_FILES['file']['tmp_name'];
  78. //取出图片后缀
  79. $type = explode(".",$_FILES['file']['name']);
  80. $type = end($type);
  81. //组装图片名
  82. $key = md5(time().uuid()).'.'.$type;
  83. $up = new Qiniu();
  84. $data = $up->uploadFile($filePath,$key);
  85. halt($data);
  86. /*$APP_ID = config('site.app_id');
  87. $API_KEY = config('site.api_key');
  88. $SRCRET_KEY = config('site.srcret_key');
  89. $client = new AipImageSearch($APP_ID, $API_KEY, $SRCRET_KEY);
  90. $url = config("site.webSiteUrl");
  91. // 如果有可选参数
  92. $options = array();
  93. $options["brief"] = "{'name':'周杰伦' , 'id':'1'}";
  94. $options["tags"] = "100,11";
  95. // 带参数调用相似图检索—入库, 图片参数为远程url图片
  96. $client->similarAddUrl($url, $options);
  97. return json(['code'=>0,'msg'=>'','data'=>['src'=>config('qiniu.domain').$data]]);*/
  98. }
  99. /*
  100. * 上传视频
  101. */
  102. public function layUploadVideo(){
  103. set_time_limit (0);
  104. $filePath = $_FILES['file']['tmp_name'];
  105. //取出文件后缀
  106. $type = explode(".",$_FILES['file']['name']);
  107. $type = end($type);
  108. //组装文件名
  109. $key = md5(time().uuid()).'.'.$type;
  110. $up = new Qiniu();
  111. $data = $up->uploadVideo($filePath,$key);
  112. echo $data;
  113. }
  114. /*
  115. * wangEditor图片上传
  116. */
  117. public function wangUpload(){
  118. foreach($_FILES as $key=>$vo){
  119. $filePath = $vo['tmp_name'];
  120. //取出图片后缀
  121. $type = explode(".",$vo['name']);
  122. $type = end($type);
  123. //组装图片名
  124. $key = md5(time().uuid()).'.'.$type;
  125. $up = new Qiniu();
  126. $name = $up->uploadFile($filePath,$key);
  127. $data[] = config('qiniu.domain').$name;
  128. }
  129. return json(['errno'=>0,'data'=>$data]);
  130. }
  131. /**
  132. * 百度富文本上传图片至第三方CDN接口
  133. * @throws \Exception
  134. */
  135. public function ueditorUpload(){
  136. $file = request()->file('upfile');
  137. $info = $file->getInfo();
  138. //取出图片后缀
  139. $type = explode(".",$info['name']);
  140. $type = end($type);
  141. //组装图片名
  142. $key = md5(time().uuid()).'.'.$type;
  143. $up = new Qiniu();
  144. $data = $up->uploadFile($info['tmp_name'],$key);
  145. //百度富文本上传文件到CDN upFile
  146. $res = array(
  147. "state" => "SUCCESS", //上传状态,上传成功时必须返回"SUCCESS"
  148. "url" => config('qiniu.domain').$data, //CDN地址
  149. "title" => $key, //新文件名
  150. "original" => $info['tmp_name'], //原始文件名
  151. "type" => ".".$type, //文件类型
  152. "size" => $info['size'], //文件大小
  153. );
  154. echo json_encode($res);
  155. }
  156. /**
  157. * uploadLocality图片上传至本地&压缩
  158. */
  159. public function uploadLocality(){
  160. $file = request()->file('file');
  161. // print_r($file['info']);die;
  162. // $a = json_decode($file['info']);
  163. // halt($a);
  164. $info = $file->getInfo();
  165. // 2621440
  166. if ($info['size'] > 2097152 ) {
  167. return json(['code' => 100, 'msg' => '文件格式过大']);
  168. }
  169. $dir = ROOT_PATH . 'public' . DS . 'uploads/images';
  170. if(!file_exists($dir)){
  171. //检查是否有该文件夹,如果没有就创建,并给予最高权限
  172. mkdir($dir, 0700,true);
  173. }
  174. // $url = http_type ();
  175. $info = $file->move($dir);
  176. if($info){
  177. $newName = $info->getSaveName();
  178. //压缩图片
  179. // image_png_size_add(ROOT_PATH . 'public' . DS . 'uploads/images/'.$newName,ROOT_PATH . 'public' . DS . 'uploads/images/'.$newName);
  180. $path="/uploads/images/{$newName}";
  181. return json(["code"=>200,"url"=>$path]);
  182. }else{
  183. echo $file->getError();
  184. }
  185. }
  186. /**
  187. * 后台图片上传至本地&压缩
  188. */
  189. public function uploadbackstage(){
  190. $file = request()->file('file');
  191. $dir = ROOT_PATH . 'public' . DS . 'uploads/images';
  192. if(!file_exists($dir)){
  193. //检查是否有该文件夹,如果没有就创建,并给予最高权限
  194. mkdir($dir, 0700,true);
  195. }
  196. // $url = http_type ();
  197. $info = $file->move($dir);
  198. if($info){
  199. $newName = $info->getSaveName();
  200. //压缩图片
  201. // image_png_size_add(ROOT_PATH . 'public' . DS . 'uploads/images/'.$newName,ROOT_PATH . 'public' . DS . 'uploads/images/'.$newName);
  202. $path="/uploads/images/{$newName}";
  203. return json(["code"=>200,"url"=>$path]);
  204. }else{
  205. echo $file->getError();
  206. }
  207. }
  208. /**
  209. * deleteLocality 删除本地图片
  210. * @return \think\response\Json
  211. */
  212. public function deleteLocality(){
  213. $add = input('add');
  214. $add = substr ($add,1);
  215. if(unlink($add)){
  216. return json(['code'=>200,'msg'=>'删除成功!']);
  217. }else{
  218. return json(['code'=>100,'msg'=>'删除失败!']);
  219. }
  220. }
  221. /**
  222. * video 视频文件上传至本地
  223. */
  224. public function video(){
  225. @set_time_limit(5 * 60);
  226. $targetDir = ROOT_PATH . 'public' . DS . 'uploads/video_tmp';
  227. $uploadDir = ROOT_PATH . 'public' . DS . 'uploads/video/'.date('Ymd');
  228. $cleanupTargetDir = true; // Remove old files
  229. $maxFileAge = 5 * 3600; // Temp file age in seconds
  230. // Create target dir
  231. if (!file_exists($targetDir)) {
  232. @mkdir($targetDir,0700,true);
  233. }
  234. // Create target dir
  235. if (!file_exists($uploadDir)) {
  236. @mkdir($uploadDir,0700,true);
  237. }
  238. // Get a file name
  239. if (!empty($_FILES)) {
  240. $fileName = $_FILES["file"]["name"];
  241. } else {
  242. $fileName = uniqid("file_");
  243. }
  244. $filePath = $targetDir . DS . iconv("UTF-8","gb2312",$fileName);
  245. // $uploadPath = $uploadDir . DS . iconv("UTF-8","gb2312",$fileName);
  246. // Chunking might be enabled
  247. $chunk = isset($_REQUEST["chunk"]) ? intval($_REQUEST["chunk"]) : 0;
  248. $chunks = isset($_REQUEST["chunks"]) ? intval($_REQUEST["chunks"]) : 1;
  249. // Remove old temp files
  250. if ($cleanupTargetDir) {
  251. if (!is_dir($targetDir) || !$dir = opendir($targetDir)) {
  252. die('{"jsonrpc" : "2.0", "error" : {"code": 100, "message": "Failed to open temp directory."}, "id" : "id"}');
  253. }
  254. while (($file = readdir($dir)) !== false) {
  255. $tmpfilePath = $targetDir . DS . $file;
  256. // If temp file is current file proceed to the next
  257. if ($tmpfilePath == "{$filePath}_{$chunk}.part" || $tmpfilePath == "{$filePath}_{$chunk}.parttmp") {
  258. continue;
  259. }
  260. // Remove temp file if it is older than the max age and is not the current file
  261. if (preg_match('/\.(part|parttmp)$/', $file) && (@filemtime($tmpfilePath) < time() - $maxFileAge)) {
  262. @unlink($tmpfilePath);
  263. }
  264. }
  265. closedir($dir);
  266. }
  267. // Open temp file
  268. if (!$out = @fopen("{$filePath}_{$chunk}.parttmp", "wb")) {
  269. die('{"jsonrpc" : "2.0", "error" : {"code": 102, "message": "Failed to open output stream."}, "id" : "id"}');
  270. }
  271. if (!empty($_FILES)) {
  272. if ($_FILES["file"]["error"] || !is_uploaded_file($_FILES["file"]["tmp_name"])) {
  273. die('{"jsonrpc" : "2.0", "error" : {"code": 103, "message": "Failed to move uploaded file."}, "id" : "id"}');
  274. }
  275. // Read binary input stream and append it to temp file
  276. if (!$in = @fopen($_FILES["file"]["tmp_name"], "rb")) {
  277. die('{"jsonrpc" : "2.0", "error" : {"code": 101, "message": "Failed to open input stream."}, "id" : "id"}');
  278. }
  279. } else {
  280. if (!$in = @fopen("php://input", "rb")) {
  281. die('{"jsonrpc" : "2.0", "error" : {"code": 101, "message": "Failed to open input stream."}, "id" : "id"}');
  282. }
  283. }
  284. while ($buff = fread($in, 4096)) {
  285. fwrite($out, $buff);
  286. }
  287. @fclose($out);
  288. @fclose($in);
  289. rename("{$filePath}_{$chunk}.parttmp", "{$filePath}_{$chunk}.part");
  290. $index = 0;
  291. $done = true;
  292. for( $index = 0; $index < $chunks; $index++ ) {
  293. if ( !file_exists("{$filePath}_{$index}.part") ) {
  294. $done = false;
  295. break;
  296. }
  297. }
  298. if ( $done ) {
  299. $name = uuid();
  300. // if (!file_exists($uploadDir . DS . $name)) {
  301. @mkdir($uploadDir . DS . $name,0700,true);
  302. // }
  303. $uploadPath = $uploadDir . DS . $name . DS . iconv("UTF-8","gb2312",$fileName);
  304. if (!$out = @fopen($uploadPath, "wb")) {
  305. die('{"jsonrpc" : "2.0", "error" : {"code": 102, "message": "Failed to open output stream."}, "id" : "id"}');
  306. }
  307. if ( flock($out, LOCK_EX) ) {
  308. for( $index = 0; $index < $chunks; $index++ ) {
  309. if (!$in = @fopen("{$filePath}_{$index}.part", "rb")) {
  310. break;
  311. }
  312. while ($buff = fread($in, 4096)) {
  313. fwrite($out, $buff);
  314. }
  315. @fclose($in);
  316. @unlink("{$filePath}_{$index}.part");
  317. }
  318. flock($out, LOCK_UN);
  319. }
  320. @fclose($out);
  321. echo 'uploads/video/'.date('Ymd'). '/' .$name. '/' .$fileName;
  322. }
  323. }
  324. //后台用户修改头像上传
  325. public function updateFace(){
  326. $base64url = input('base64url');
  327. $arr = base64_img($base64url,true);
  328. if($arr['code'] == 200){
  329. $res = Db::name('admin')->where('id',input('id'))->update(["portrait"=>$arr['msg']]);
  330. if($res){
  331. session('portrait', $arr['msg']); //用户头像
  332. return json(['code'=>200,'msg'=>"上传成功"]);
  333. }else{
  334. return json(['code'=>100,'msg'=>"上传失败"]);
  335. }
  336. }elseif($arr['code'] == 100){
  337. writelog('管理员上传头像失败',100);
  338. return json($arr);
  339. }
  340. }
  341. //多图修改测试页面
  342. public function showImg(){
  343. $photo = Db::name('img')->where('id',1)->value('img');
  344. $arr = explode(',',$photo);
  345. $this->assign ('photo',$photo);
  346. $this->assign ('arr',$arr);
  347. return $this->fetch('/webuploader2');
  348. }
  349. }