Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

Ueditor.php 40KB

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