filefun.php 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. <?php
  2. //删除文件
  3. function DelFile($fileid,$userid,$username){
  4. global $empire,$class_r,$dbtbpre;
  5. $fileid=(int)$fileid;
  6. if(!$fileid)
  7. {printerror("NotFileid","history.go(-1)");}
  8. //操作权限
  9. CheckLevel($userid,$username,$classid,"file");
  10. $modtype=(int)$_GET['modtype'];
  11. $fstb=(int)$_GET['fstb'];
  12. $r=$empire->fetch1("select filename,path,classid,fpath from ".eReturnFileTable($modtype,$fstb)." where fileid='$fileid' limit 1");
  13. $sql=$empire->query("delete from ".eReturnFileTable($modtype,$fstb)." where fileid='$fileid'");
  14. DoDelFile($r);
  15. if($sql)
  16. {
  17. //操作日志
  18. insert_dolog("fileid=".$fileid."<br>filename=".$r[filename]);
  19. printerror("DelFileSuccess",EcmsGetReturnUrl());
  20. }
  21. else
  22. {
  23. printerror("DbError","history.go(-1)");
  24. }
  25. }
  26. //批量删除文件
  27. function DelFile_all($fileid,$userid,$username){
  28. global $empire,$dbtbpre,$class_r;
  29. //操作权限
  30. if($_POST['enews']=='TDelFile_all')
  31. {
  32. $userid=(int)$userid;
  33. $ur=$empire->fetch1("select groupid,adminclass,filelevel from {$dbtbpre}enewsuser where userid='$userid' limit 1");
  34. if($ur['filelevel'])
  35. {
  36. $gr=$empire->fetch1("select dofile from {$dbtbpre}enewsgroup where groupid='$ur[groupid]'");
  37. if(!$gr['dofile'])
  38. {
  39. $classid=(int)$_POST['classid'];
  40. $searchclassid=(int)$_POST['searchclassid'];
  41. $classid=$searchclassid?$searchclassid:$classid;
  42. if(!$class_r[$classid]['classid'])
  43. {
  44. printerror("NotLevel","history.go(-1)");
  45. }
  46. if(!strstr($ur['adminclass'],'|'.$classid.'|'))
  47. {
  48. printerror("NotLevel","history.go(-1)");
  49. }
  50. }
  51. }
  52. else
  53. {
  54. CheckLevel($userid,$username,$classid,"file");
  55. }
  56. }
  57. else
  58. {
  59. CheckLevel($userid,$username,$classid,"file");
  60. }
  61. $count=count($fileid);
  62. if(!$count)
  63. {printerror("NotFileid","history.go(-1)");}
  64. $modtype=(int)$_POST['modtype'];
  65. $fstb=(int)$_POST['fstb'];
  66. for($i=0;$i<count($fileid);$i++)
  67. {
  68. $fileid[$i]=(int)$fileid[$i];
  69. $r=$empire->fetch1("select filename,path,classid,fpath from ".eReturnFileTable($modtype,$fstb)." where fileid='$fileid[$i]' limit 1");
  70. $sql=$empire->query("delete from ".eReturnFileTable($modtype,$fstb)." where fileid='$fileid[$i]'");
  71. DoDelFile($r);
  72. }
  73. if($sql)
  74. {
  75. //操作日志
  76. insert_dolog("");
  77. printerror("DelFileAllSuccess",EcmsGetReturnUrl());
  78. }
  79. else
  80. {
  81. printerror("DbError","history.go(-1)");
  82. }
  83. }
  84. //删除多余附件
  85. function DelFreeFile($userid,$username){
  86. global $empire,$dbtbpre;
  87. //操作权限
  88. CheckLevel($userid,$username,$classid,"file");
  89. //清理信息附件
  90. DelFileAllTable("cjid<>0 and (id=0 or cjid=id)");
  91. //会员附件
  92. DelFileOtherTable("cjid<>0 and (id=0 or cjid=id)","member");
  93. //其他附件
  94. DelFileOtherTable("cjid<>0 and (id=0 or cjid=id)","other");
  95. //操作日志
  96. insert_dolog("");
  97. printerror("DelFreeFileSuccess",EcmsGetReturnUrl());
  98. }
  99. //删除目录文件
  100. function DelPathFile($filename,$userid,$username){
  101. global $empire,$dbtbpre,$public_r,$efileftp_dr;
  102. //操作权限
  103. CheckLevel($userid,$username,$classid,"file");
  104. $count=count($filename);
  105. if(empty($count))
  106. {
  107. printerror("NotFileid","history.go(-1)");
  108. }
  109. //基目录
  110. $basepath=eReturnEcmsMainPortPath()."d/file";//moreport
  111. for($i=0;$i<$count;$i++)
  112. {
  113. if(strstr($filename[$i],".."))
  114. {
  115. continue;
  116. }
  117. if(!file_exists($basepath."/".$filename[$i]))
  118. {
  119. continue;
  120. }
  121. DelFiletext($basepath."/".$filename[$i]);
  122. $dfile=ReturnPathFile($filename[$i]);
  123. $dfile=hRepPostStr($dfile,1);
  124. $dfnum=$empire->gettotal("select count(*) as total from {$dbtbpre}enewsfile_1 where filename='$dfile'");
  125. if($dfnum)
  126. {
  127. $empire->query("delete from {$dbtbpre}enewsfile_1 where filename='$dfile'");
  128. //FileServer
  129. if($public_r['openfileserver'])
  130. {
  131. $efileftp_dr[]=$basepath."/".$filename[$i];
  132. }
  133. }
  134. }
  135. //操作日志
  136. insert_dolog("");
  137. printerror("DelFileSuccess",EcmsGetReturnUrl());
  138. }
  139. //批量加水印/缩略图
  140. function DoMarkSmallPic($add,$userid,$username){
  141. global $empire,$class_r,$dbtbpre,$public_r,$efileftp_fr;
  142. //导入gd处理文件
  143. if($add['getsmall']||$add['getmark'])
  144. {
  145. @include(ECMS_PATH."e/class/gd.php");
  146. }
  147. else
  148. {
  149. printerror("EmptyDopicFileid","history.go(-1)");
  150. }
  151. $fileid=$add['fileid'];
  152. $count=count($fileid);
  153. if($count==0)
  154. {
  155. printerror("EmptyDopicFileid","history.go(-1)");
  156. }
  157. $add['classid']=(int)$add['classid'];
  158. $modtype=(int)$add['modtype'];
  159. $fstb=(int)$add['fstb'];
  160. $fstb=eReturnFileStb($fstb);
  161. for($i=0;$i<$count;$i++)
  162. {
  163. $fileid[$i]=intval($fileid[$i]);
  164. $r=$empire->fetch1("select classid,filename,path,no,fpath from ".eReturnFileTable($modtype,$fstb)." where fileid='$fileid[$i]'");
  165. $rpath=$r['path']?$r['path'].'/':$r['path'];
  166. $fspath=ReturnFileSavePath($r[classid],$r[fpath]);
  167. $path=eReturnEcmsMainPortPath().$fspath['filepath'].$rpath;//moreport
  168. $yname=$path.$r[filename];
  169. //缩略图
  170. if($add['getsmall'])
  171. {
  172. $filetype=GetFiletype($r[filename]);
  173. $insertfile=substr($r[filename],0,strlen($r[filename])-strlen($filetype)).time();
  174. $name=$path."small".$insertfile;
  175. GetMySmallImg($add['classid'],$r[no],$insertfile,$r[path],$yname,$add[width],$add[height],$name,$add['filepass'],$add['filepass'],$userid,$username,$modtype,$fstb);
  176. }
  177. //水印
  178. if($add['getmark'])
  179. {
  180. GetMyMarkImg($yname);
  181. //FileServer
  182. if($public_r['openfileserver'])
  183. {
  184. $efileftp_fr[]=$yname;
  185. }
  186. }
  187. }
  188. printerror("DoMarkSmallPicSuccess",EcmsGetReturnUrl());
  189. }
  190. //上传多附件
  191. function TranMoreFile($file,$file_name,$file_type,$file_size,$no,$type,$userid,$username){
  192. global $empire,$public_r,$dbtbpre;
  193. $count=count($file_name);
  194. if(empty($count))
  195. {
  196. printerror("MustChangeTranOneFile","history.go(-1)");
  197. }
  198. //操作权限
  199. CheckLevel($userid,$username,$classid,"file");
  200. $type=(int)$type;
  201. for($i=0;$i<$count;$i++)
  202. {
  203. if(empty($file_name[$i]))
  204. {
  205. continue;
  206. }
  207. //取得文件类型
  208. $filetype=GetFiletype($file_name[$i]);
  209. //如果是.php文件
  210. if(CheckSaveTranFiletype($filetype))
  211. {continue;}
  212. $type_r=explode("|".$filetype."|",$public_r['filetype']);
  213. if(count($type_r)<2)
  214. {continue;}
  215. if($file_size[$i]>$public_r['filesize']*1024)
  216. {continue;}
  217. //上传
  218. $r=DoTranFile($file[$i],$file_name[$i],$file_type[$i],$file_size[$i],$classid);
  219. //写入数据库
  220. $r[filesize]=(int)$r[filesize];
  221. $classid=(int)$classid;
  222. if(empty($no[$i]))
  223. {$no[$i]=$file_name[$i];}
  224. eInsertFileTable($r[filename],$r[filesize],$r[filepath],$username,$classid,$no[$i],$type,0,0,$public_r[fpath],0,5,0);
  225. }
  226. insert_dolog("");//操作日志
  227. printerror("TranMoreFileSuccess","file/TranMoreFile.php".hReturnEcmsHashStrHref2(1));
  228. }
  229. //************************************ 附件分表管理 ************************************
  230. //增加附件分表
  231. function AddFileDataTable($add,$userid,$username){
  232. echo'This is the Free Version of EmpireCMS.';
  233. exit();
  234. }
  235. //默认附件存放表
  236. function DefFileDataTable($add,$userid,$username){
  237. echo'This is the Free Version of EmpireCMS.';
  238. exit();
  239. }
  240. //删除附件分表
  241. function DelFileDataTable($add,$userid,$username){
  242. echo'This is the Free Version of EmpireCMS.';
  243. exit();
  244. }
  245. ?>