Nav apraksta
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

Uploadify.php 38KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\user\controller;
  14. use think\Db;
  15. class Uploadify extends Base {
  16. private $image_type = '';
  17. private $sub_name = '';
  18. private $imageExt = '';
  19. private $savePath = 'allimg/';
  20. private $upload_path = '';
  21. private $compressConf = [];
  22. /**
  23. * 析构函数
  24. */
  25. public function __construct()
  26. {
  27. parent::__construct();
  28. date_default_timezone_set("Asia/Shanghai");
  29. $this->savePath = input('savepath/s','allimg').'/';
  30. error_reporting(E_ERROR | E_WARNING);
  31. header("Content-Type: text/html; charset=utf-8");
  32. $this->sub_name = date('Ymd/');
  33. $this->imageExt = config('global.image_ext');
  34. $this->image_type = tpCache('basic.image_type');
  35. $this->image_type = !empty($this->image_type) ? str_replace('|', ',', $this->image_type) : $this->imageExt;
  36. $this->upload_path = UPLOAD_PATH.'user/'.$this->users_id.'/';
  37. $compress = input('param.compress/s');
  38. if (!empty($compress)) {
  39. $this->compressConf = explode('-', $compress);
  40. $this->compressConf[0] = !empty($this->compressConf[0]) ? intval($this->compressConf[0]) : 0;
  41. $this->compressConf[1] = !empty($this->compressConf[1]) ? intval($this->compressConf[1]) : 0;
  42. $this->compressConf[2] = !empty($this->compressConf[2]) ? intval($this->compressConf[2]) : 75;
  43. }
  44. }
  45. public function upload()
  46. {
  47. $func = input('func');
  48. $path = input('path','allimg');
  49. $num = input('num/d', '1');
  50. $default_size = intval(tpCache('basic.file_size') * 1024 * 1024); // 单位为b
  51. $size = input('size/d'); // 单位为kb
  52. $size = empty($size) ? $default_size : $size*1024;
  53. $resource = input('param.resource/s');
  54. $info = array(
  55. 'num'=> $num,
  56. 'title' => '',
  57. 'upload' =>url('Uploadify/imageUp',array('savepath'=>$path,'pictitle'=>'banner','dir'=>'images','resource'=>$resource)),
  58. 'fileList'=>url('Uploadify/fileList',array('path'=>$path,'resource'=>$resource)),
  59. 'size' => $size,
  60. 'type' => $this->image_type,
  61. 'input' => input('input'),
  62. 'func' => empty($func) ? 'undefined' : $func,
  63. );
  64. $this->assign('info',$info);
  65. return $this->fetch('./application/user/template/uploadify/upload.htm');
  66. }
  67. /*
  68. * 删除上传的图片
  69. */
  70. public function delupload()
  71. {
  72. echo 1;
  73. exit;
  74. if (IS_AJAX_POST) {
  75. $action = input('param.action/s','del');
  76. $filename= input('param.filename/s');
  77. $filename= empty($filename) ? input('url') : $filename;
  78. $filename= str_replace(['(',')',',',' ','../','..','./'],'',$filename);
  79. $filename= trim($filename,'.');
  80. $filename = preg_replace('#^(/[/\w\-]+)?(/public/upload/|/uploads/)#i', '$2', $filename);
  81. if(eyPreventShell($filename) && $action=='del' && !empty($filename) && is_file('.'.$filename) && stristr($filename, 'uploads/')){
  82. $fileArr = explode('/', $filename);
  83. if ($fileArr[3] != $this->users_id) {
  84. return false;
  85. }
  86. $filetype = preg_replace('/^(.*)\.(\w+)$/i', '$2', $filename);
  87. $phpfile = strtolower(strstr($filename,'.php')); //排除PHP文件
  88. $size = getimagesize('.'.$filename);
  89. $fileInfo = explode('/',$size['mime']);
  90. if($fileInfo[0] != 'image' || $phpfile || !in_array($filetype, explode(',', config('global.image_ext')))){
  91. exit;
  92. }
  93. if(@unlink('.'.$filename)){
  94. echo 1;
  95. }else{
  96. echo 0;
  97. }
  98. exit;
  99. }
  100. echo 1;
  101. exit;
  102. }
  103. }
  104. //列出图片
  105. private function fileList($allowFiles,$listSize,$get){
  106. $dirname = './'.$this->upload_path;
  107. $allowFiles = substr(str_replace(".","|",join("",$allowFiles)),1);
  108. /* 获取参数 */
  109. $size = isset($get['size']) ? htmlspecialchars($get['size']) : $listSize;
  110. $start = isset($get['start']) ? htmlspecialchars($get['start']) : 0;
  111. $end = $start + $size;
  112. /* 获取文件列表 */
  113. $path = $dirname;
  114. $files = $this->getFiles($path,$allowFiles);
  115. if(empty($files)){
  116. return json_encode(array(
  117. "state" => "没有相关文件",
  118. "list" => array(),
  119. "start" => $start,
  120. "total" => count($files)
  121. ));
  122. }
  123. /* 获取指定范围的列表 */
  124. $len = count($files);
  125. for($i = min($end, $len) - 1, $list = array(); $i < $len && $i >= 0 && $i >= $start; $i--){
  126. $list[] = $files[$i];
  127. }
  128. /* 返回数据 */
  129. $result = json_encode(array(
  130. "state" => "SUCCESS",
  131. "list" => $list,
  132. "start" => $start,
  133. "total" => count($files)
  134. ));
  135. return $result;
  136. }
  137. /*
  138. * 遍历获取目录下的指定类型的文件
  139. * @param $path
  140. * @param array $files
  141. * @return array
  142. */
  143. private function getFiles($path,$allowFiles,&$files = array()){
  144. if(!is_dir($path)) return null;
  145. if(substr($path,strlen($path)-1) != '/') $path .= '/';
  146. $handle = opendir($path);
  147. while(false !== ($file = readdir($handle))){
  148. if($file != '.' && $file != '..'){
  149. $path2 = $path.$file;
  150. if(is_dir($path2)){
  151. $this->getFiles($path2,$allowFiles,$files);
  152. }else{
  153. if(preg_match("/\.(".$allowFiles.")$/i",$file)){
  154. $files[] = array(
  155. 'url' => substr($path2,1),
  156. 'mtime' => filemtime($path2)
  157. );
  158. }
  159. }
  160. }
  161. }
  162. return $files;
  163. }
  164. public function index(){
  165. $CONFIG2 = json_decode(preg_replace("/\/\*[\s\S]+?\*\//", "", file_get_contents("./public/plugins/Ueditor/php/config.json")), true);
  166. /*---------------百度编辑器配置文件与后台设置关联 start----------------*/
  167. $CONFIG2['imageMaxSize'] = $CONFIG2['scrawlMaxSize'] = $CONFIG2['catcherMaxSize'] = $CONFIG2['videoMaxSize'] = $CONFIG2['fileMaxSize'] = $CONFIG2['fileMaxSize'] = intval(tpCache('basic.file_size') * 1024 * 1024);
  168. $media_type = tpCache('basic.media_type');
  169. $media_type = explode('|', $media_type);
  170. foreach ($media_type as $key => $val) {
  171. if (!in_array('.'.$val, $CONFIG2['videoAllowFiles'])) {
  172. array_push($CONFIG2['videoAllowFiles'], '.'.$val);
  173. }
  174. if (!in_array('.'.$val, $CONFIG2['fileAllowFiles'])) {
  175. array_push($CONFIG2['fileAllowFiles'], '.'.$val);
  176. }
  177. }
  178. $image_type = tpCache('basic.image_type');
  179. $image_type = explode('|', $image_type);
  180. foreach ($image_type as $key => $val) {
  181. if (!in_array('.'.$val, $CONFIG2['fileAllowFiles'])) {
  182. array_push($CONFIG2['fileAllowFiles'], '.'.$val);
  183. }
  184. }
  185. $file_type = tpCache('basic.file_type');
  186. $file_type = explode('|', $file_type);
  187. foreach ($file_type as $key => $val) {
  188. if (!in_array('.'.$val, $CONFIG2['fileAllowFiles'])) {
  189. array_push($CONFIG2['fileAllowFiles'], '.'.$val);
  190. }
  191. }
  192. /*---------------百度编辑器配置文件与系统设置关联 end----------------*/
  193. $action = $_GET['action'];
  194. switch ($action) {
  195. case 'config':
  196. $result = json_encode($CONFIG2);
  197. break;
  198. /* 上传图片 */
  199. case 'uploadimage':
  200. $fieldName = $CONFIG2['imageFieldName'];
  201. $result = $this->imageUp();
  202. /*同步到第三方对象存储空间*/
  203. // $result = json_decode($result, true);
  204. // $bucket_data = SynImageObjectBucket($result['url']);
  205. // $result = array_merge($result, $bucket_data);
  206. // $result = json_encode($result);
  207. /*end*/
  208. break;
  209. /* 上传涂鸦 */
  210. case 'uploadscrawl':
  211. $config = array(
  212. "pathFormat" => $CONFIG2['scrawlPathFormat'],
  213. "maxSize" => $CONFIG2['scrawlMaxSize'],
  214. "allowFiles" => $CONFIG2['scrawlAllowFiles'],
  215. "oriName" => "scrawl.png"
  216. );
  217. $fieldName = $CONFIG2['scrawlFieldName'];
  218. $base64 = "base64";
  219. $result = $this->upBase64($config,$fieldName);
  220. break;
  221. /* 上传视频 */
  222. case 'uploadvideo':
  223. $fieldName = $CONFIG2['videoFieldName'];
  224. $result = $this->upFile($fieldName);
  225. break;
  226. /* 上传文件 */
  227. case 'uploadfile':
  228. $fieldName = $CONFIG2['fileFieldName'];
  229. $result = $this->upFile($fieldName);
  230. break;
  231. /* 列出图片 */
  232. case 'listimage':
  233. $allowFiles = $CONFIG2['imageManagerAllowFiles'];
  234. $listSize = $CONFIG2['imageManagerListSize'];
  235. $path = $CONFIG2['imageManagerListPath'];
  236. $get =$_GET;
  237. $result =$this->fileList($allowFiles,$listSize,$get);
  238. break;
  239. /* 列出文件 */
  240. case 'listfile':
  241. $allowFiles = $CONFIG2['fileManagerAllowFiles'];
  242. $listSize = $CONFIG2['fileManagerListSize'];
  243. $path = $CONFIG2['fileManagerListPath'];
  244. $get = $_GET;
  245. $result = $this->fileList($allowFiles,$listSize,$get);
  246. break;
  247. /* 抓取远程文件 */
  248. case 'catchimage':
  249. $config = array(
  250. "pathFormat" => $CONFIG2['catcherPathFormat'],
  251. "maxSize" => $CONFIG2['catcherMaxSize'],
  252. "allowFiles" => $CONFIG2['catcherAllowFiles'],
  253. "oriName" => "remote.png"
  254. );
  255. $fieldName = $CONFIG2['catcherFieldName'];
  256. /* 抓取远程图片 */
  257. $list = array();
  258. isset($_POST[$fieldName]) ? $source = $_POST[$fieldName] : $source = $_GET[$fieldName];
  259. /*编辑器七牛云/OSS等同步*/
  260. $weappList = Db::name('weapp')->where([
  261. 'status' => 1,
  262. ])->cache(true, EYOUCMS_CACHE_TIME, 'weapp')
  263. ->getAllWithIndex('code');
  264. /* END */
  265. foreach($source as $imgUrl){
  266. $info = json_decode($this->saveRemote($config,$imgUrl),true);
  267. /*同步到第三方对象存储空间*/
  268. $bucket_data = SynImageObjectBucket($info['url'], $weappList);
  269. $info = array_merge($info, $bucket_data);
  270. /*end*/
  271. array_push($list, array(
  272. "state" => $info["state"],
  273. "url" => $info["url"],
  274. "size" => $info["size"],
  275. "title" => htmlspecialchars($info["title"]),
  276. "original" => str_replace("&amp;", "&", htmlspecialchars($info["original"])),
  277. // "source" => htmlspecialchars($imgUrl)
  278. "source" => str_replace("&amp;", "&", htmlspecialchars($imgUrl))
  279. ));
  280. }
  281. $result = json_encode(array(
  282. 'state' => !empty($list) ? 'SUCCESS':'ERROR',
  283. 'list' => $list
  284. ));
  285. break;
  286. default:
  287. $result = json_encode(array(
  288. 'state' => '请求地址出错'
  289. ));
  290. break;
  291. }
  292. /* 输出结果 */
  293. if(isset($_GET["callback"])){
  294. if(preg_match("/^[\w_]+$/", $_GET["callback"])){
  295. echo htmlspecialchars($_GET["callback"]).'('.$result.')';
  296. }else{
  297. echo json_encode(array(
  298. 'state' => 'callback参数不合法'
  299. ));
  300. }
  301. }else{
  302. echo $result;
  303. }
  304. }
  305. //抓取远程图片
  306. private function saveRemote($config,$fieldName){
  307. $imgUrl = htmlspecialchars($fieldName);
  308. $imgUrl = str_replace("&amp;","&",$imgUrl);
  309. $imgUrl = preg_replace('/#/', '', $imgUrl);
  310. //http开头验证
  311. if(strpos($imgUrl,"http") !== 0){
  312. $data=array(
  313. 'state' => '链接不是http链接',
  314. );
  315. return json_encode($data);
  316. }
  317. //获取请求头并检测死链
  318. $heads = get_headers($imgUrl);
  319. if(!(stristr($heads[0],"200") && stristr($heads[0],"OK"))){
  320. $data=array(
  321. 'state' => '链接不可用',
  322. );
  323. return json_encode($data);
  324. }
  325. //格式验证(扩展名验证和Content-Type验证)
  326. if(preg_match("/^http(s?):\/\/(mmbiz.qpic.cn|thirdwx.qlogo.cn)\/(.*)/", $imgUrl) != 1){
  327. $fileType = strtolower(strrchr($imgUrl,'.'));
  328. if(!in_array($fileType,$config['allowFiles']) || (isset($heads['Content-Type']) && stristr($heads['Content-Type'],"image"))){
  329. $data=array(
  330. 'state' => '链接contentType不正确',
  331. );
  332. return json_encode($data);
  333. }
  334. }
  335. //打开输出缓冲区并获取远程图片
  336. ob_start();
  337. $context = stream_context_create(
  338. array('http' => array(
  339. 'follow_location' => false // don't follow redirects
  340. ))
  341. );
  342. readfile($imgUrl,false,$context);
  343. $img = ob_get_contents();
  344. ob_end_clean();
  345. preg_match("/[\/]([^\/]*)[\.]?[^\.\/]*$/",$imgUrl,$m);
  346. $dirname = './'.$this->upload_path.'ueditor/'.$this->sub_name;
  347. $file['oriName'] = $m ? $m[1] : "";
  348. $file['filesize'] = strlen($img);
  349. $file['ext'] = strtolower(strrchr($config['oriName'],'.'));
  350. $file['name'] = uniqid().$file['ext'];
  351. $file['fullName'] = $dirname.$file['name'];
  352. $fullName = $file['fullName'];
  353. //检查文件大小是否超出限制
  354. if($file['filesize'] >= ($config["maxSize"])){
  355. $data=array(
  356. 'state' => '文件大小超出网站限制',
  357. );
  358. return json_encode($data);
  359. }
  360. //创建目录失败
  361. if(!file_exists($dirname) && !mkdir($dirname,0777,true)){
  362. $data=array(
  363. 'state' => '目录创建失败',
  364. );
  365. return json_encode($data);
  366. }else if(!is_writeable($dirname)){
  367. $data=array(
  368. 'state' => '目录没有写权限',
  369. );
  370. return json_encode($data);
  371. }
  372. //移动文件
  373. if(!(file_put_contents($fullName, $img) && file_exists($fullName))){ //移动失败
  374. $data=array(
  375. 'state' => '写入文件内容错误',
  376. );
  377. return json_encode($data);
  378. }else{ //移动成功
  379. $return_url = substr($file['fullName'],1);
  380. $data=array(
  381. 'state' => 'SUCCESS',
  382. 'url' => ROOT_DIR.$return_url, // 支持子目录
  383. 'title' => $file['name'],
  384. 'original' => $file['oriName'],
  385. 'type' => $file['ext'],
  386. 'size' => $file['filesize'],
  387. );
  388. /*-------------------------保存上传图片记录 start-----------------------*/
  389. $img_info = @getimagesize('.'.$return_url);
  390. $width = isset($img_info[0]) ? $img_info[0] : 0;
  391. $height = isset($img_info[1]) ? $img_info[1] : 0;
  392. $mime = isset($img_info['mime']) ? $img_info['mime'] : '';
  393. $data['time'] = getTime();
  394. $data['width'] = $width;
  395. $data['height'] = $height;
  396. $addData = [
  397. 'aid' =>0,
  398. 'type_id' =>0,
  399. 'image_url' =>$data['url'],
  400. 'title' => $data['original'],
  401. 'intro' => '',
  402. 'width' => $width,
  403. 'height' => $height,
  404. 'filesize' => $data['size'],
  405. 'mime' => $mime,
  406. 'users_id' => (int)session('users_id'),
  407. 'sort_order' => 100,
  408. 'add_time' => getTime(),
  409. 'update_time' => getTime(),
  410. ];
  411. $img_id = Db::name('uploads')->insertGetId($addData);
  412. $data['img_id'] = $img_id;
  413. /*-------------------------保存上传图片记录 end-----------------------*/
  414. print_water($data['url']); // 添加水印
  415. }
  416. return json_encode($data);
  417. }
  418. /**
  419. * @function imageUp
  420. */
  421. public function imageUp()
  422. {
  423. if (!IS_POST) {
  424. $return_data['state'] = '非法上传';
  425. respose($return_data,'json');
  426. }
  427. $max_file_size = input('param.max_file_size/d');
  428. if (empty($max_file_size)) {
  429. $max_file_size = intval(tpCache('basic.file_size') * 1024 * 1024);
  430. }
  431. // 上传图片框中的描述表单名称,
  432. $pictitle = input('pictitle');
  433. $dir = input('dir');
  434. $title = htmlspecialchars($pictitle , ENT_QUOTES);
  435. $path = htmlspecialchars($dir, ENT_QUOTES);
  436. //$input_file ['upfile'] = $info['Filedata']; 一个是上传插件里面来的, 另外一个是 文章编辑器里面来的
  437. // 获取表单上传文件
  438. $file = request()->file('file');
  439. if(empty($file)) {
  440. $file = request()->file('upfile');
  441. }
  442. $original = $file->getInfo('name');
  443. // ico图片文件不进行验证
  444. if (pathinfo($original, PATHINFO_EXTENSION) != 'ico') {
  445. $result = $this->validate(
  446. ['file' => $file],
  447. ['file'=>'image|fileSize:'.$max_file_size.'|fileExt:'.$this->image_type],
  448. ['file.image' => '上传文件必须为图片','file.fileSize' => '上传图片不能超过'.format_bytes($max_file_size),'file.fileExt'=>'上传图片后缀名必须为'.$this->image_type]
  449. );
  450. } else {
  451. $result = true;
  452. }
  453. /*验证图片一句话木马*/
  454. if (false === check_illegal($file->getInfo('tmp_name'))) {
  455. $result = '疑似木马图片!';
  456. }
  457. /*--end*/
  458. $return_url = '';
  459. if (true !== $result || empty($file)) {
  460. $return_data['state'] = "ERROR:" . $result;
  461. } else {
  462. if ('weapp/' == $this->savePath) {
  463. $savePath = UPLOAD_PATH . $this->savePath . 'user/' . $this->users_id .'/' . $this->sub_name;
  464. } else {
  465. $savePath = $this->upload_path.$this->savePath.$this->sub_name;
  466. }
  467. // 移动到框架应用根目录/public/uploads/ 目录下
  468. $info = $file->rule(function ($file) {
  469. return (int)session('users_id').'-'.dd2char(date("ymdHis").mt_rand(100,999));
  470. })->move($savePath);
  471. if (empty($info)) {
  472. $return_data['state'] = "ERROR" . $file->getError();
  473. } else {
  474. $state = "SUCCESS";
  475. $return_url = '/'.$savePath.$info->getSaveName();
  476. // 是否要压缩图片
  477. if (!empty($this->compressConf[0])) {
  478. $return_url = func_thumb_img($return_url, $this->compressConf[0], $this->compressConf[1], $this->compressConf[2]);
  479. }
  480. $return_data['url'] = ROOT_DIR.$return_url; // 支持子目录
  481. /*-------------------------保存上传图片记录 start-----------------------*/
  482. $img_info = @getimagesize('.'.$return_url);
  483. $width = isset($img_info[0]) ? $img_info[0] : 0;
  484. $height = isset($img_info[1]) ? $img_info[1] : 0;
  485. $mime = isset($img_info['mime']) ? $img_info['mime'] : '';
  486. $filesize = $info->getSize();
  487. $return_data['time'] = getTime();
  488. $return_data['width'] = $width;
  489. $return_data['height'] = $height;
  490. /*-------------------------保存上传图片记录 end-----------------------*/
  491. if(pathinfo($original, PATHINFO_EXTENSION) != 'ico'){
  492. $imgresource = ".".$return_url;
  493. $image = \think\Image::open($imgresource);
  494. $water = tpCache('water');
  495. $return_data['mark_type'] = $water['mark_type'];
  496. if($water['is_mark']==1 && $image->width()>$water['mark_width'] && $image->height()>$water['mark_height']){
  497. if($water['mark_type'] == 'text'){
  498. $ttf = ROOT_PATH.'public/static/common/font/hgzb.ttf';
  499. if (file_exists($ttf)) {
  500. $size = $water['mark_txt_size'] ? $water['mark_txt_size'] : 30;
  501. $color = $water['mark_txt_color'] ?: '#000000';
  502. if (!preg_match('/^#[0-9a-fA-F]{6}$/', $color)) {
  503. $color = '#000000';
  504. }
  505. $transparency = intval((100 - $water['mark_degree']) * (127/100));
  506. $color .= dechex($transparency);
  507. $image->text($water['mark_txt'], $ttf, $size, $color, $water['mark_sel'])->save($imgresource);
  508. $return_data['mark_txt'] = $water['mark_txt'];
  509. }
  510. }else{
  511. /*支持子目录*/
  512. $water['mark_img'] = preg_replace('#^(/[/\w\-]+)?(/public/upload/|/uploads/)#i', '$2', $water['mark_img']); // 支持子目录
  513. /*--end*/
  514. $waterPath = "." . $water['mark_img'];
  515. if (eyPreventShell($waterPath) && file_exists($waterPath)) {
  516. $quality = $water['mark_quality'] ? $water['mark_quality'] : 80;
  517. $waterTempPath = dirname($waterPath).'/temp_'.basename($waterPath);
  518. $image->open($waterPath)->save($waterTempPath, null, $quality);
  519. $image->water($waterTempPath, $water['mark_sel'], $water['mark_degree'])->save($imgresource);
  520. @unlink($waterTempPath);
  521. }
  522. }
  523. }
  524. }
  525. $return_data['title'] = $title;
  526. $return_data['original'] = $original; // 这里好像没啥用 暂时注释起来
  527. $return_data['state'] = $state;
  528. $return_data['path'] = $path;
  529. //同步到第三方对象存储空间
  530. $bucket_data = SynImageObjectBucket($return_url);
  531. if (!empty($bucket_data)) {
  532. if (!empty($bucket_data['local_save']) && $bucket_data['local_save'] == 1) {
  533. unset($info);//解除图片的进程占用
  534. $this->del_local($return_url);
  535. }
  536. unset($bucket_data['local_save']);
  537. $return_data = array_merge($return_data, $bucket_data);
  538. }
  539. /*-------------------------保存上传图片记录 start-----------------------*/
  540. $addData = [
  541. 'aid' => 0,
  542. 'type_id' => 0,
  543. 'image_url' => $return_data['url'],
  544. 'title' => $original,
  545. 'intro' => '',
  546. 'width' => $width,
  547. 'height' => $height,
  548. 'filesize' => $filesize,
  549. 'mime' => $mime,
  550. 'users_id' => (int)session('users_id'),
  551. 'sort_order' => 100,
  552. 'add_time' => getTime(),
  553. 'update_time' => getTime(),
  554. ];
  555. $img_id = Db::name('uploads')->insertGetId($addData);
  556. $return_data['img_id'] = $img_id;
  557. /*-------------------------保存上传图片记录 end-----------------------*/
  558. }
  559. }
  560. respose($return_data,'json');
  561. }
  562. /**
  563. * @function imageUp
  564. */
  565. public function DownloadUploadFileAjax()
  566. {
  567. if (!IS_POST) {
  568. $return_data['state'] = '非法上传';
  569. respose($return_data,'json');
  570. }
  571. $file_type = tpCache('basic.file_type');
  572. $file_type = !empty($file_type) ? str_replace('|', ',', $file_type) : 'zip,gz,rar,iso,doc,xls,ppt,wps,txt,docx';
  573. $max_file_size = intval(tpCache('basic.file_size') * 1024 * 1024);
  574. $file = request()->file('file');
  575. // 定义文件名
  576. $fileName = $file->getInfo('name');
  577. //拓展名
  578. $ext = pathinfo($file->getInfo('name'), PATHINFO_EXTENSION);
  579. // 提取出文件名,不包括扩展名
  580. $newfileName = preg_replace('/\.([^\.]+)$/', '', $fileName);
  581. // 过滤文件名.\/的特殊字符,防止利用上传漏洞
  582. $newfileName = preg_replace('#(\\\|\/|\.)#i', '', $newfileName);
  583. $result = $this->validate(
  584. ['file' => $file],
  585. ['file'=>'fileSize:'.$max_file_size.'|fileExt:'.$file_type],
  586. ['file.fileSize' => '上传文件过大','file.fileExt'=>'上传文件后缀名必须为'.$file_type]
  587. );
  588. $return_url = '';
  589. if (true !== $result || empty($file)) {
  590. $return_data['state'] = "ERROR:" . $result . ',需' . intval(tpCache('basic.file_size')) . 'MB内';
  591. } else {
  592. if ('weapp/' == $this->savePath) {
  593. $savePath = UPLOAD_PATH . $this->savePath . 'user/' . $this->users_id .'/' . $this->sub_name;
  594. } else {
  595. $savePath = $this->upload_path.$this->savePath.$this->sub_name;
  596. }
  597. // 移动到框架应用根目录/public/uploads/ 目录下
  598. $info = $file->rule(function ($file) {
  599. return (int)session('users_id').'-'.dd2char(date("ymdHis").mt_rand(100,999));
  600. })->move($savePath);
  601. if (empty($info)) {
  602. $return_data['state'] = "ERROR" . $file->getError();
  603. } else {
  604. $return_url = '/' . $savePath . $info->getSaveName();
  605. $return_data['url'] = ROOT_DIR . $return_url;// 支持子目录
  606. $return_data['state'] = "SUCCESS";
  607. // 同步到第三方对象存储空间
  608. $bucket_data = SynImageObjectBucket($return_url);
  609. if (!empty($bucket_data)) {
  610. if (!empty($bucket_data['local_save']) && $bucket_data['local_save'] == 1) {
  611. unset($info);
  612. $this->del_local($return_url);//解除图片的进程占用
  613. }
  614. unset($bucket_data['local_save']);
  615. $return_data = array_merge($return_data, $bucket_data);
  616. }
  617. }
  618. }
  619. respose($return_data, 'json');
  620. }
  621. // 上传多媒体
  622. public function AjaxUploadMedia()
  623. {
  624. $file = request()->file('file');
  625. if (empty($file)) {
  626. if (!@ini_get('file_uploads')) {
  627. return json_encode(['state' => '请检查空间是否开启文件上传功能!']);
  628. } else {
  629. return json_encode(['state' => 'ERROR,空间限制上传大小!']);
  630. }
  631. }
  632. $error = $file->getError();
  633. if (!empty($error)) {
  634. return json_encode(['state' => $error]);
  635. }
  636. $media_type = tpCache('basic.media_type');
  637. $media_type = !empty($media_type) ? str_replace('|', ',', $media_type) : config('global.media_ext');
  638. if (empty($media_type)) {
  639. return json_encode(['state' => 'ERROR,请设置上传多媒体文件类型!']);
  640. } else {
  641. $media_type = str_replace('|', ',', $media_type);
  642. }
  643. $max_file_size = intval(tpCache('basic.file_size') * 1024 * 1024);
  644. $result = $this->validate(
  645. ['file' => $file],
  646. ['file' => 'fileSize:' . $max_file_size . '|fileExt:' . $media_type],
  647. ['file.fileSize' => '上传视频过大', 'file.fileExt' => '上传视频后缀名必须为' . $media_type]
  648. );
  649. if (true !== $result || empty($file)) {
  650. $state = "ERROR" . $result;
  651. return json_encode(['state' => $state]);
  652. }
  653. $this->savePath = $this->savePath.date('Ymd/');
  654. $info = $file->rule(function ($file) {
  655. return session('admin_id') . '-' . dd2char(date("ymdHis") . mt_rand(100, 999));
  656. })->move(UPLOAD_PATH . $this->savePath);
  657. if ($info) {
  658. $file_path = UPLOAD_PATH.$this->savePath.$info->getSaveName();
  659. $data = array(
  660. 'state' => 'SUCCESS',
  661. 'url' => '/' . $file_path,
  662. );
  663. $data['url'] = ROOT_DIR . $data['url'];
  664. } else {
  665. $data = array('state' => 'ERROR' . $info->getError());
  666. }
  667. return $data;
  668. }
  669. //未开启同步本地功能,并删除本地图片
  670. public function del_local($filenames = '')
  671. {
  672. $arr = explode('?', $filenames);
  673. $filenames = current($arr);
  674. $arr = explode('/', $filenames);
  675. if (!empty($arr)) {
  676. $total = count($arr);
  677. $filename = $arr[$total - 1];
  678. $filename = str_replace('\\', '', $filename);
  679. unset($arr[$total - 1]);
  680. $filepath = implode('/', $arr);
  681. if (!preg_match('/^([\w\-\_\/]+)$/i', $filepath)) {
  682. return false;
  683. }
  684. $filename = $filepath.'/'.$filename;
  685. $filename= trim($filename,'.');
  686. $filename = preg_replace('#^(/[/\w\-]+)?(/public/upload/|/uploads/|/public/static/admin/logo/)#i', '$2', $filename);
  687. if(eyPreventShell($filename) && !empty($filename) && @is_file('.'.$filename) && stristr($filename, 'uploads/')){
  688. $filename_new = trim($filename,'/');
  689. $filetype = preg_replace('/^(.*)\.(\w+)$/i', '$2', $filename);
  690. $phpfile = strtolower(strstr($filename,'.php')); //排除PHP文件
  691. $size = getimagesize($filename_new);
  692. $fileInfo = explode('/',$size['mime']);
  693. if( $phpfile ){
  694. return false;
  695. }
  696. if( @unlink('.'.$filename) ){
  697. return true;
  698. }else{
  699. return false;
  700. }
  701. }
  702. }
  703. return true;
  704. }
  705. //上传文件
  706. public function DownloadUploadFile(){
  707. header('Content-Type: text/html; charset=utf-8');
  708. // 获取定义的上传最大参数
  709. $max_file_size = intval(tpCache('basic.file_size') * 1024 * 1024);
  710. // 获取上传的文件信息
  711. $files = request()->file();
  712. // 若获取不到则定义为空
  713. $file = !empty($files['file']) ? $files['file'] : '';
  714. /*判断上传文件是否存在错误*/
  715. if(empty($file)){
  716. echo json_encode(['msg' => '文件过大或文件已损坏!']);exit;
  717. }
  718. $error = $file->getError();
  719. if(!empty($error)){
  720. echo json_encode(['msg' => $error]);exit;
  721. }
  722. $file_type = tpCache('basic.file_type');
  723. $file_type = !empty($file_type) ? str_replace('|', ',', $file_type) : 'zip,gz,rar,iso,doc,xls,ppt,wps,txt,docx';
  724. $result = $this->validate(
  725. ['file' => $file],
  726. ['file'=>'fileSize:'.$max_file_size.'|fileExt:'.$file_type],
  727. ['file.fileSize' => '上传文件超过'.tpCache('basic.file_size').'M','file.fileExt'=>'上传文件后缀名必须为'.$file_type]
  728. );
  729. if (true !== $result || empty($file)) {
  730. echo json_encode(['msg' => $result]);exit;
  731. }
  732. /*--end*/
  733. // 移动到框架应用根目录/public/uploads/ 目录下
  734. $this->savePath = $this->savePath.date('Ymd/');
  735. // 定义文件名
  736. $fileName = $file->getInfo('name');
  737. // 提取文件名后缀
  738. $file_ext = pathinfo($fileName, PATHINFO_EXTENSION);
  739. // 提取出文件名,不包括扩展名
  740. $newfileName = preg_replace('/\.([^\.]+)$/', '', $fileName);
  741. // 过滤文件名.\/的特殊字符,防止利用上传漏洞
  742. $newfileName = preg_replace('#(\\\|\/|\.)#i', '', $newfileName);
  743. // 过滤后的新文件名
  744. $fileName = $newfileName.'.'.$file_ext;
  745. // 中文转码
  746. $this->fileName = iconv("utf-8","gb2312//IGNORE",$fileName);
  747. // 使用自定义的文件保存规则
  748. $info = $file->rule(function ($file) {
  749. return $this->fileName;
  750. })->move(UPLOAD_PATH.$this->savePath);
  751. if($info){
  752. // 拼装数据存入session
  753. $file_path = UPLOAD_PATH.$this->savePath.$info->getSaveName();
  754. $return = array(
  755. 'code' => 1,
  756. 'msg' => '上传成功',
  757. 'file_url' => '/' . UPLOAD_PATH.$this->savePath.$fileName,
  758. 'file_mime' => $file->getInfo('type'),
  759. 'file_name' => $fileName,
  760. 'file_ext' => '.' . $file_ext,
  761. 'file_size' => $info->getSize(),
  762. 'uhash' => $this->uhash($file_path),
  763. 'md5file' => md5_file($file_path),
  764. );
  765. }else{
  766. $return = array('msg' => $info->getError());
  767. }
  768. echo json_encode($return);
  769. }
  770. private function uhash( $file ) {
  771. $fragment = 65536;
  772. $rh = fopen($file, 'rb');
  773. $size = filesize($file);
  774. $part1 = fread( $rh, $fragment );
  775. fseek($rh, $size-$fragment);
  776. $part2 = fread( $rh, $fragment);
  777. fclose($rh);
  778. return md5( $part1.$part2 );
  779. }
  780. // 上传视频
  781. public function upVideo()
  782. {
  783. $file = request()->file('file');
  784. if (empty($file)) {
  785. if (!@ini_get('file_uploads')) {
  786. return json_encode(['state' => '请检查空间是否开启文件上传功能!']);
  787. } else {
  788. return json_encode(['state' => 'ERROR,空间限制上传大小!']);
  789. }
  790. }
  791. $error = $file->getError();
  792. if (!empty($error)) {
  793. return json_encode(['state' => $error]);
  794. }
  795. $media_type = tpCache('basic.media_type');
  796. $media_type = !empty($media_type) ? str_replace('|', ',', $media_type) : config('global.media_ext');
  797. if (empty($media_type)) {
  798. return json_encode(['state' => 'ERROR,请设置上传多媒体文件类型!']);
  799. } else {
  800. $media_type = str_replace('|', ',', $media_type);
  801. }
  802. $max_file_size = intval(tpCache('basic.file_size') * 1024 * 1024);
  803. $result = $this->validate(
  804. ['file' => $file],
  805. ['file' => 'fileSize:' . $max_file_size . '|fileExt:' . $media_type],
  806. ['file.fileSize' => '上传视频过大', 'file.fileExt' => '上传视频后缀名必须为' . $media_type]
  807. );
  808. if (true !== $result || empty($file)) {
  809. $state = "ERROR" . $result;
  810. return json_encode(['state' => $state]);
  811. }
  812. //获取视频时长start
  813. vendor('getid3.getid3');
  814. // 实例化
  815. $getID3 = new \getID3(); //实例化类
  816. $tmp_name = $file->getInfo('tmp_name');
  817. $ThisFileInfo = $getID3->analyze($tmp_name); //分析文件,$path为音频文件的地址
  818. $fileduration = empty($ThisFileInfo['playtime_seconds']) ? 0 : intval($ThisFileInfo['playtime_seconds']); //这个获得的便是音频文件的时长
  819. //获取视频时长end
  820. // 移动到框架应用根目录/public/uploads/ 目录下
  821. $this->savePath = $this->savePath.date('Ymd/');
  822. // 使用自定义的文件保存规则
  823. $info = $file->rule(function ($file) {
  824. return $this->users_id . '-' . dd2char(date("ymdHis") . mt_rand(100, 999));
  825. })->move(UPLOAD_PATH . $this->savePath);
  826. if ($info) {
  827. // 定义文件名
  828. $fileName = $file->getInfo('name');
  829. // 提取出文件名,不包括扩展名
  830. $newfileName = preg_replace('/\.([^\.]+)$/', '', $fileName);
  831. // 过滤文件名.\/的特殊字符,防止利用上传漏洞
  832. $newfileName = preg_replace('#(\\\|\/|\.)#i', '', $newfileName);
  833. $file_path = UPLOAD_PATH.$this->savePath.$info->getSaveName();
  834. $file_size = $info->getSize();
  835. $data = array(
  836. 'state' => 'SUCCESS',
  837. 'url' => '/' . $file_path,
  838. 'time' => $fileduration,
  839. 'title' => $newfileName,
  840. 'original' => $info->getSaveName(),
  841. 'type' => '.' . $info->getExtension(),
  842. 'size' => $file_size,
  843. 'mime' => $file->getInfo('type'),
  844. );
  845. $data['url'] = ROOT_DIR . $data['url']; // 支持子目录
  846. } else {
  847. $data = array('state' => 'ERROR' . $info->getError());
  848. }
  849. return $data;
  850. }
  851. }