暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Filetool.php 19KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512
  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-06-28
  12. */
  13. namespace weapp\Systemdoctor\controller;
  14. use think\Db;
  15. use think\Page;
  16. use app\common\controller\Weapp;
  17. use weapp\Systemdoctor\logic\FiletoolLogic;
  18. /**
  19. * 插件的控制器
  20. */
  21. class Filetool extends Weapp
  22. {
  23. // 在线文件管理
  24. public $filetoolLogic;
  25. public $baseDir = '';
  26. public $maxDir = '';
  27. public $globalTpCache = array();
  28. public $upfilename = '';
  29. /**
  30. * 构造方法
  31. */
  32. public function __construct()
  33. {
  34. parent::__construct();
  35. $this->filetoolLogic = new FiletoolLogic;
  36. $this->globalTpCache = $this->filetoolLogic->globalTpCache;
  37. $this->baseDir = $this->filetoolLogic->baseDir; // 服务器站点根目录绝对路径
  38. $this->maxDir = $this->filetoolLogic->maxDir; // 默认文件管理的最大级别目录
  39. }
  40. /**
  41. * 文件管理首页
  42. */
  43. public function index()
  44. {
  45. // 获取到所有GET参数
  46. $param = input('param.', '', null);
  47. $activepath = input('param.activepath', '', null);
  48. $activepath = $this->filetoolLogic->replace_path($activepath, ':', true);
  49. /*当前目录路径*/
  50. $activepath = !empty($activepath) ? $activepath : $this->maxDir;
  51. $tmp_max_dir = preg_replace("#\/#i", "\/", $this->maxDir);
  52. if (!preg_match("#^".$tmp_max_dir."#i", $activepath)) {
  53. $activepath = $this->maxDir;
  54. }
  55. /*--end*/
  56. $inpath = "";
  57. $activepath = str_replace("..", "", $activepath);
  58. $activepath = preg_replace("#^\/{1,}#", "/", $activepath); // 多个斜杆替换为单个斜杆
  59. if($activepath == "/") $activepath = "";
  60. if(empty($activepath)) {
  61. $inpath = $this->baseDir.$this->maxDir;
  62. } else {
  63. $inpath = $this->baseDir.$activepath;
  64. }
  65. $list = $this->filetoolLogic->getDirFile($inpath, $activepath);
  66. $assign_data['list'] = $list;
  67. /*文件操作*/
  68. $assign_data['replaceImgOpArr'] = $this->filetoolLogic->replaceImgOpArr;
  69. $assign_data['editOpArr'] = $this->filetoolLogic->editOpArr;
  70. $assign_data['renameOpArr'] = $this->filetoolLogic->renameOpArr;
  71. $assign_data['delOpArr'] = $this->filetoolLogic->delOpArr;
  72. $assign_data['moveOpArr'] = $this->filetoolLogic->moveOpArr;
  73. /*--end*/
  74. $assign_data['activepath'] = $activepath;
  75. $this->assign($assign_data);
  76. return $this->fetch('filetool/index');
  77. }
  78. /**
  79. * 替换图片
  80. */
  81. public function replace_img()
  82. {
  83. if (IS_POST) {
  84. $post = input('post.', '', null);
  85. $activepath = !empty($post['activepath']) ? trim($post['activepath']) : '';
  86. if (empty($activepath)) {
  87. $this->error('参数有误');
  88. exit;
  89. }
  90. $file = request()->file('upfile');
  91. if (empty($file)) {
  92. $this->error('请选择上传图片!');
  93. exit;
  94. } else {
  95. $image_type = tpCache('basic.image_type');
  96. $fileExt = !empty($image_type) ? str_replace('|', ',', $image_type) : config('global.image_ext');
  97. $image_upload_limit_size = intval(tpCache('basic.file_size') * 1024 * 1024);
  98. $result = $this->validate(
  99. ['file' => $file],
  100. ['file'=>'image|fileSize:'.$image_upload_limit_size.'|fileExt:'.$fileExt],
  101. ['file.image' => '上传文件必须为图片','file.fileSize' => '上传文件过大','file.fileExt'=>'上传文件后缀名必须为'.$fileExt]
  102. );
  103. if (true !== $result || empty($file)) {
  104. $this->error($result);
  105. exit;
  106. }
  107. }
  108. $res = $this->filetoolLogic->upload('upfile', $activepath, $post['filename'], 'image');
  109. if ($res['code'] == 1) {
  110. $this->success('操作成功!',weapp_url('Systemdoctor/Filetool/index', array('activepath'=>$this->filetoolLogic->replace_path($activepath, ':', false))));
  111. } else {
  112. $this->error($res['msg'],weapp_url('Systemdoctor/Filetool/index', array('activepath'=>$this->filetoolLogic->replace_path($activepath, ':', false))));
  113. }
  114. }
  115. $filename = input('param.filename/s', '', null);
  116. $activepath = input('param.activepath/s', '', null);
  117. $activepath = $this->filetoolLogic->replace_path($activepath, ':', true);
  118. if ($activepath == "") $activepathname = "根目录";
  119. else $activepathname = $activepath;
  120. $info = array(
  121. 'activepath' => $activepath,
  122. 'activepathname' => $activepathname,
  123. 'filename' => $filename,
  124. );
  125. $this->assign('info', $info);
  126. return $this->fetch('filetool/replace_img');
  127. }
  128. /**
  129. * 新建文件
  130. */
  131. public function newfile()
  132. {
  133. if (IS_POST) {
  134. $post = input('post.', '', null);
  135. $content = input('post.content', '', null);
  136. $filename = !empty($post['filename']) ? trim($post['filename']) : '';
  137. $content = !empty($content) ? $content : '';
  138. $activepath = !empty($post['activepath']) ? trim($post['activepath']) : '';
  139. if (empty($filename) || empty($activepath)) {
  140. $this->error('参数有误');
  141. exit;
  142. }
  143. $r = $this->filetoolLogic->editFile($filename, $activepath, $content);
  144. if ($r === true) {
  145. $this->success('操作成功!',weapp_url('Systemdoctor/Filetool/index', array('activepath'=>$this->filetoolLogic->replace_path($activepath, ':', false))));
  146. exit;
  147. } else {
  148. $this->error($r);
  149. exit;
  150. }
  151. }
  152. $activepath = input('param.activepath/s', '', null);
  153. $activepath = $this->filetoolLogic->replace_path($activepath, ':', true);
  154. $filename = 'newfile.htm';
  155. $content = "";
  156. $info = array(
  157. 'filename' => $filename,
  158. 'activepath'=> $activepath,
  159. 'content' => $content,
  160. 'extension' => 'text/html',
  161. );
  162. $this->assign('info', $info);
  163. return $this->fetch('filetool/newfile');
  164. }
  165. /**
  166. * 文件管理编辑
  167. */
  168. public function edit()
  169. {
  170. if (IS_POST) {
  171. $post = input('post.', '', null);
  172. $content = input('post.content', '', null);
  173. $filename = !empty($post['filename']) ? trim($post['filename']) : '';
  174. $content = !empty($content) ? $content : '';
  175. $activepath = !empty($post['activepath']) ? trim($post['activepath']) : '';
  176. if (empty($filename) || empty($activepath)) {
  177. $this->error('参数有误');
  178. exit;
  179. }
  180. $r = $this->filetoolLogic->editFile($filename, $activepath, $content);
  181. if ($r === true) {
  182. $this->success('操作成功!',weapp_url('Systemdoctor/Filetool/index', array('activepath'=>$this->filetoolLogic->replace_path($activepath, ':', false))));
  183. exit;
  184. } else {
  185. $this->error($r);
  186. exit;
  187. }
  188. }
  189. $activepath = input('param.activepath/s', '', null);
  190. $activepath = $this->filetoolLogic->replace_path($activepath, ':', true);
  191. $filename = input('param.filename/s', '', null);
  192. if (!stristr($filename, '.')) {
  193. $this->error('无效文件名');
  194. }
  195. $activepath = str_replace("..", "", $activepath);
  196. $filename = str_replace("..", "", $filename);
  197. $path_parts = pathinfo($filename);
  198. $path_parts['extension'] = strtolower($path_parts['extension']);
  199. /*不允许越过指定最大级目录的文件编辑*/
  200. $tmp_max_dir = preg_replace("#\/#i", "\/", $this->filetoolLogic->maxDir);
  201. if (!preg_match("#^".$tmp_max_dir."#i", $activepath)) {
  202. $this->error('没有操作权限!');
  203. exit;
  204. }
  205. /*--end*/
  206. /*允许编辑的文件类型*/
  207. if (!in_array($path_parts['extension'], $this->filetoolLogic->editExt)) {
  208. $this->error('只允许操作文件类型如下:'.implode('|', $this->filetoolLogic->editExt));
  209. exit;
  210. }
  211. /*--end*/
  212. /*读取文件内容*/
  213. $file = $this->baseDir."$activepath/$filename";
  214. $content = "";
  215. if(is_file($file))
  216. {
  217. $filesize = filesize($file);
  218. if (0 < $filesize) {
  219. $fp = fopen($file, "r");
  220. $content = fread($fp, $filesize);
  221. fclose($fp);
  222. if ('css' != $path_parts['extension']) {
  223. $content = htmlspecialchars($content, ENT_QUOTES);
  224. $content = preg_replace("/(@)?eval(\s*)\(/i", 'intval(', $content);
  225. // $content = preg_replace("/\?\bphp\b/i", "?muma", $content);
  226. }
  227. }
  228. }
  229. /*--end*/
  230. if($path_parts['extension'] == 'js'){
  231. $extension = 'text/javascript';
  232. } else if($path_parts['extension'] == 'css'){
  233. $extension = 'text/css';
  234. } else if($path_parts['extension'] == 'php'){
  235. $extension = 'text/x-php';
  236. } else {
  237. $extension = 'text/html';
  238. }
  239. $info = array(
  240. 'filename' => $filename,
  241. 'activepath'=> $activepath,
  242. 'extension' => $extension,
  243. 'content' => $content,
  244. );
  245. $this->assign('info', $info);
  246. return $this->fetch('filetool/edit');
  247. }
  248. /**
  249. * 新建目录
  250. * @return [type] [description]
  251. */
  252. public function newdir()
  253. {
  254. if (IS_POST) {
  255. $dirname = input('post.dirname/s');
  256. $dirname = trim($dirname);
  257. if (empty($dirname)) {
  258. $this->error('目录名不能为空!');
  259. } else if (preg_match('/([\\|\/|\:|\*|\?|\"|\<|\>|\|]+)/i', $dirname)) {
  260. $this->error('不能包含下列任何字符:\ / : * ? " < > |');
  261. }
  262. $activepath = input('param.activepath', '', null);
  263. $activepath = $this->filetoolLogic->replace_path($activepath, ':', true);
  264. if (!is_dir($this->baseDir.$activepath)) {
  265. $this->error("{$activepath} 不存在");
  266. }
  267. $newdir = $dirname;
  268. $dirname = $this->baseDir.$activepath."/".$dirname;
  269. if (is_writable($this->baseDir.$activepath)) {
  270. if (!file_exists($dirname)) {
  271. tp_mkdir($dirname, 0755);
  272. chmod($dirname, 0755);
  273. }
  274. $this->success('创建成功', weapp_url('Systemdoctor/Filetool/index', array('activepath'=>$this->filetoolLogic->replace_path($activepath."/".$newdir, ':', false))));
  275. } else {
  276. $this->error('创建失败,因为这个位置不允许写入!', weapp_url('Systemdoctor/Filetool/index', array('activepath'=>$this->filetoolLogic->replace_path($activepath, ':', false))));
  277. }
  278. }
  279. $this->error('操作失败');
  280. }
  281. /**
  282. * 重命名
  283. * @return [type] [description]
  284. */
  285. public function resetname()
  286. {
  287. if (IS_POST) {
  288. $old_filename = input('post.old_filename/s');
  289. $old_filename = trim($old_filename);
  290. $dirname = input('post.dirname/s');
  291. $dirname = trim($dirname);
  292. if (empty($dirname)) {
  293. $this->error('目录名不能为空!');
  294. } else if (preg_match('/([\\|\/|\:|\*|\?|\"|\<|\>|\|]+)/i', $dirname)) {
  295. $this->error('不能包含下列任何字符:\ / : * ? " < > |');
  296. }
  297. $activepath = input('param.activepath', '', null);
  298. $activepath = $this->filetoolLogic->replace_path($activepath, ':', true);
  299. if (!is_dir($this->baseDir.$activepath)) {
  300. $this->error("{$activepath} 不存在");
  301. }
  302. $oldname = $this->baseDir.$activepath."/".$old_filename;
  303. $newname = $this->baseDir.$activepath."/".$dirname;
  304. if (is_writable($oldname)) {
  305. if (($newname != $oldname)) {
  306. $r = @rename($oldname, $newname);
  307. if ($r === false) {
  308. $this->error('重命名失败,检查php环境是否支持 rename 函数');
  309. }
  310. }
  311. $this->success('重命名成功', weapp_url('Systemdoctor/Filetool/index', array('activepath'=>$this->filetoolLogic->replace_path($activepath, ':', false))));
  312. } else {
  313. if (is_dir($oldname)) {
  314. $this->error("【{$oldname}】目录没有可写权限");
  315. } else {
  316. $this->error("【{$oldname}】文件没有可写权限");
  317. }
  318. }
  319. }
  320. $this->error('操作失败');
  321. }
  322. /**
  323. * 删除文件
  324. * @return [type] [description]
  325. */
  326. public function del()
  327. {
  328. if (IS_POST) {
  329. $filename = input('param.filename/s');
  330. $filename = trim($filename);
  331. if (empty($filename)) {
  332. $this->error('目录名不能为空!');
  333. }
  334. $activepath = input('param.activepath', '', null);
  335. $activepath = $this->filetoolLogic->replace_path($activepath, ':', true);
  336. if (!is_dir($this->baseDir.$activepath)) {
  337. $this->error("{$activepath} 不存在");
  338. }
  339. $filename = $this->baseDir.$activepath."/{$filename}";
  340. $filename = iconv("utf-8", "gb2312//IGNORE", $filename); // 转换编码
  341. if (is_file($filename)) {
  342. @unlink($filename);
  343. $t = "文件";
  344. } else {
  345. $t = "目录";
  346. if (true) {
  347. $this->filetoolLogic->RmDirFiles($filename);
  348. } else {
  349. $this->error("系统禁止删除{$t}", weapp_url('Systemdoctor/Filetool/index', array('activepath'=>$this->filetoolLogic->replace_path($activepath, ':', false))));
  350. }
  351. }
  352. $this->success("删除成功", weapp_url('Systemdoctor/Filetool/index', array('activepath'=>$this->filetoolLogic->replace_path($activepath, ':', false))));
  353. }
  354. $this->error('操作失败');
  355. }
  356. /**
  357. * 移动文件
  358. */
  359. public function movefile()
  360. {
  361. if (IS_POST) {
  362. $filename = input('param.filename/s');
  363. $filename = trim($filename);
  364. if (empty($filename)) {
  365. $this->error('缺少文件名参数!');
  366. }
  367. $activepath = input('param.activepath', '', null);
  368. $activepath = $this->filetoolLogic->replace_path($activepath, ':', true);
  369. if (!is_dir($this->baseDir.$activepath)) {
  370. $this->error("缺少当前位置参数!");
  371. }
  372. $newpath = input('param.newpath/s');
  373. $newpath = $this->filetoolLogic->replace_path(trim($newpath), ':', true);
  374. if (!empty($newpath) && !preg_match("#\.\.#", $newpath)) {
  375. }
  376. else
  377. {
  378. $this->error('对不起,你移动的路径不合法!');
  379. }
  380. }
  381. $filename = input('param.filename/s');
  382. $activepath = input('param.activepath/s', '', null);
  383. $activepath = $this->filetoolLogic->replace_path($activepath, ':', true);
  384. $assign_data = [
  385. 'filename' => $filename,
  386. 'activepath'=> $activepath,
  387. ];
  388. $this->assign($assign_data);
  389. return $this->fetch('filetool/movefile');
  390. }
  391. /**
  392. * 文件上传
  393. */
  394. public function uploadfile()
  395. {
  396. header('Content-Type: text/html; charset=utf-8');
  397. function_exists('set_time_limit') && set_time_limit(0);
  398. @ini_set('memory_limit','-1');
  399. if (IS_AJAX_POST) {
  400. $activepath = input('param.activepath', '', null);
  401. $activepath = $this->filetoolLogic->replace_path($activepath, ':', true);
  402. // 获取定义的上传最大参数
  403. $max_file_size = intval(tpCache('basic.file_size') * 1024 * 1024);
  404. // 获取上传的文件信息
  405. $files = request()->file();
  406. // 若获取不到则定义为空
  407. $file = !empty($files['file']) ? $files['file'] : '';
  408. /*判断上传文件是否存在错误*/
  409. if(empty($file)){
  410. $this->error('文件过大或文件已损坏!');
  411. }
  412. $error = $file->getError();
  413. if(!empty($error)){
  414. $this->error($error);
  415. }
  416. $image_type = tpCache('basic.image_type');
  417. $media_type = tpCache('basic.media_type');
  418. $file_type = tpCache('basic.file_type');
  419. $file_type .= !empty($file_type) ? "|{$image_type}" : '';
  420. $file_type .= !empty($file_type) ? "|{$media_type}" : '';
  421. $file_type = str_replace('|', ',', $file_type);
  422. if(empty($file_type)){
  423. $this->error('没有设置文件上传格式!');
  424. }
  425. $result = $this->validate(
  426. ['file' => $file],
  427. ['file'=>'fileSize:'.$max_file_size.'|fileExt:'.$file_type],
  428. ['file.fileSize' => '上传文件过大','file.fileExt'=>'上传文件后缀名必须为'.$file_type]
  429. );
  430. if (true !== $result || empty($file)) {
  431. $this->error($result);
  432. }
  433. /*--end*/
  434. // 移动到框架应用根目录/public/uploads/ 目录下
  435. $savePath = $this->baseDir.$activepath."/";
  436. // 定义文件名
  437. $fileName = $file->getInfo('name');
  438. // 提取文件名后缀
  439. // $file_ext = pathinfo($fileName, PATHINFO_EXTENSION);
  440. // 提取出文件名,不包括扩展名
  441. // $newfileName = preg_replace('/\.([^\.]+)$/', '', $fileName);
  442. // 过滤文件名.\/的特殊字符,防止利用上传漏洞
  443. // $newfileName = preg_replace('#(\\\|\/|\.)#i', '', $newfileName);
  444. // 过滤后的新文件名
  445. // $fileName = $newfileName.'.'.$file_ext;
  446. // 中文转码
  447. $this->upfilename = iconv("utf-8","gb2312//IGNORE",$fileName);
  448. // 使用自定义的文件保存规则
  449. $info = $file->rule(function ($file) {
  450. return $this->upfilename;
  451. })->move($savePath);
  452. if ($info) {
  453. $this->success("上传成功", weapp_url('Systemdoctor/Filetool/index', array('activepath'=>$this->filetoolLogic->replace_path($activepath, ':', false))));
  454. }else{
  455. $this->error($info->getError(), weapp_url('Systemdoctor/Filetool/index', array('activepath'=>$this->filetoolLogic->replace_path($activepath, ':', false))));
  456. }
  457. }
  458. }
  459. }