file_class.php 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. <?php if(!defined('DEDEINC')) exit('dedecms');
  2. /**
  3. * 文件管理逻辑类
  4. *
  5. * @version $Id: file_class.php 1 19:09 2010年7月12日Z tianya $
  6. * @package DedeCMS.Administrator
  7. * @copyright Copyright (c) 2007 - 2010, DesDev, Inc.
  8. * @license http://help.dedecms.com/usersguide/license.html
  9. * @link http://www.dedecms.com
  10. */
  11. class FileManagement
  12. {
  13. var $baseDir="";
  14. var $activeDir="";
  15. //是否允许文件管理器删除目录;
  16. //默认为不允许 0 ,如果希望可能管理整个目录,请把值设为 1 ;
  17. var $allowDeleteDir=0;
  18. //初始化系统
  19. function Init()
  20. {
  21. global $cfg_basedir, $activepath;
  22. $this->baseDir = $cfg_basedir;
  23. $this->activeDir = $activepath;
  24. }
  25. //更改文件名
  26. function RenameFile($oldname,$newname)
  27. {
  28. // 文件改名防止getshell注入 by 小虎哥
  29. $oldnameArr = explode('.', $oldname);
  30. $oldnameExt = end($oldnameArr);
  31. $newnameArr = explode('.', $newname);
  32. $newnameExt = end($newnameArr);
  33. if ('php' == $newnameExt && $newnameExt != $oldnameExt) {
  34. ShowMsg("对不起,不允许文件改为php扩展名!","-1",0,5000);
  35. return 0;
  36. }
  37. // --end
  38. $oldname = $this->baseDir.$this->activeDir."/".$oldname;
  39. $newname = $this->baseDir.$this->activeDir."/".$newname;
  40. if(($newname!=$oldname) && is_writable($oldname))
  41. {
  42. rename($oldname,$newname);
  43. }
  44. ShowMsg("成功更改一个文件名!","file_manage_main.php?activepath=".$this->activeDir);
  45. return 0;
  46. }
  47. //创建新目录
  48. function NewDir($dirname)
  49. {
  50. $newdir = $dirname;
  51. $dirname = $this->baseDir.$this->activeDir."/".$dirname;
  52. if(is_writable($this->baseDir.$this->activeDir))
  53. {
  54. MkdirAll($dirname,$GLOBALS['cfg_dir_purview']);
  55. CloseFtp();
  56. ShowMsg("成功创建一个新目录!","file_manage_main.php?activepath=".$this->activeDir."/".$newdir);
  57. return 1;
  58. }
  59. else
  60. {
  61. ShowMsg("创建新目录失败,因为这个位置不允许写入!","file_manage_main.php?activepath=".$this->activeDir);
  62. return 0;
  63. }
  64. }
  65. /**
  66. * 移动文件
  67. *
  68. * @access public
  69. * @param string $mfile 文件
  70. * @param string $mpath 路径
  71. * @return string
  72. */
  73. function MoveFile($mfile, $mpath)
  74. {
  75. if($mpath!="" && !preg_match("#\.\.#", $mpath))
  76. {
  77. $oldfile = $this->baseDir.$this->activeDir."/$mfile";
  78. $mpath = str_replace("\\","/",$mpath);
  79. $mpath = preg_replace("#\/{1,}#", "/", $mpath);
  80. if(!preg_match("#^/#", $mpath))
  81. {
  82. $mpath = $this->activeDir."/".$mpath;
  83. }
  84. $truepath = $this->baseDir.$mpath;
  85. if(is_readable($oldfile) && is_readable($truepath) && is_writable($truepath))
  86. {
  87. if(is_dir($truepath))
  88. {
  89. copy($oldfile, $truepath."/$mfile");
  90. }
  91. else
  92. {
  93. MkdirAll($truepath, $GLOBALS['cfg_dir_purview']);
  94. CloseFtp();
  95. copy($oldfile,$truepath."/$mfile");
  96. }
  97. unlink($oldfile);
  98. ShowMsg("成功移动文件!","file_manage_main.php?activepath=$mpath",0,1000);
  99. return 1;
  100. }
  101. else
  102. {
  103. ShowMsg("移动文件 $oldfile -&gt; $truepath/$mfile 失败,可能是某个位置权限不足!","file_manage_main.php?activepath=$mpath",0,1000);
  104. return 0;
  105. }
  106. }
  107. else
  108. {
  109. ShowMsg("对不起,你移动的路径不合法!","-1",0,5000);
  110. return 0;
  111. }
  112. }
  113. /**
  114. * 删除目录
  115. *
  116. * @param unknown_type $indir
  117. */
  118. function RmDirFiles($indir)
  119. {
  120. if(!is_dir($indir))
  121. {
  122. return ;
  123. }
  124. $dh = dir($indir);
  125. while($filename = $dh->read())
  126. {
  127. if($filename == "." || $filename == "..")
  128. {
  129. continue;
  130. }
  131. else if(is_file("$indir/$filename"))
  132. {
  133. @unlink("$indir/$filename");
  134. }
  135. else
  136. {
  137. $this->RmDirFiles("$indir/$filename");
  138. }
  139. }
  140. $dh->close();
  141. @rmdir($indir);
  142. }
  143. /**
  144. * 获得某目录合符规则的文件
  145. *
  146. * @param unknown_type $indir
  147. * @param unknown_type $fileexp
  148. * @param unknown_type $filearr
  149. */
  150. function GetMatchFiles($indir, $fileexp, &$filearr)
  151. {
  152. $dh = dir($indir);
  153. while($filename = $dh->read())
  154. {
  155. $truefile = $indir.'/'.$filename;
  156. if($filename == "." || $filename == "..")
  157. {
  158. continue;
  159. }
  160. else if(is_dir($truefile))
  161. {
  162. $this->GetMatchFiles($truefile, $fileexp, $filearr);
  163. }
  164. else if(substr($filename, -strlen($fileexp))===$fileexp)
  165. {
  166. $filearr[] = $truefile;
  167. }
  168. }
  169. $dh->close();
  170. }
  171. /**
  172. * 删除文件
  173. *
  174. * @param unknown_type $filename
  175. * @return unknown
  176. */
  177. function DeleteFile($filename)
  178. {
  179. $filename = $this->baseDir.$this->activeDir."/$filename";
  180. if(is_file($filename))
  181. {
  182. @unlink($filename); $t="文件";
  183. }
  184. else
  185. {
  186. $t = "目录";
  187. if($this->allowDeleteDir==1)
  188. {
  189. $this->RmDirFiles($filename);
  190. } else
  191. {
  192. // 完善用户体验,by:sumic
  193. ShowMsg("系统禁止删除".$t."!","file_manage_main.php?activepath=".$this->activeDir);
  194. exit;
  195. }
  196. }
  197. ShowMsg("成功删除一个".$t."!","file_manage_main.php?activepath=".$this->activeDir);
  198. return 0;
  199. }
  200. }
  201. //目录文件大小检测类
  202. class SpaceUse
  203. {
  204. var $totalsize=0;
  205. function checksize($indir)
  206. {
  207. $dh=dir($indir);
  208. while($filename=$dh->read())
  209. {
  210. if(!preg_match("#^\.#", $filename))
  211. {
  212. if(is_dir("$indir/$filename"))
  213. {
  214. $this->checksize("$indir/$filename");
  215. }
  216. else
  217. {
  218. $this->totalsize=$this->totalsize + filesize("$indir/$filename");
  219. }
  220. }
  221. }
  222. }
  223. function setkb($size)
  224. {
  225. $size=$size/1024;
  226. if($size>0)
  227. {
  228. list($t1,$t2)=explode(".",$size);
  229. $size=$t1.".".substr($t2,0,1);
  230. }
  231. return $size;
  232. }
  233. function setmb($size)
  234. {
  235. $size=$size/1024/1024;
  236. if($size>0)
  237. {
  238. list($t1,$t2)=explode(".",$size);
  239. $size=$t1.".".substr($t2,0,2);
  240. }
  241. return $size;
  242. }
  243. }