ReInfoUrl.php 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. $link=db_connect();
  7. $empire=new mysqlquery();
  8. $editor=1;
  9. //验证用户
  10. $lur=is_login();
  11. $logininid=$lur['userid'];
  12. $loginin=$lur['username'];
  13. $loginrnd=$lur['rnd'];
  14. $loginlevel=$lur['groupid'];
  15. $loginadminstyleid=$lur['adminstyleid'];
  16. //ehash
  17. $ecms_hashur=hReturnEcmsHashStrAll();
  18. //验证权限
  19. CheckLevel($logininid,$loginin,$classid,"changedata");
  20. //批量更新信息页地址
  21. function ReInfoUrl($start,$classid,$from,$retype,$startday,$endday,$startid,$endid,$tbname,$userid,$username){
  22. global $empire,$public_r,$class_r,$fun_r,$dbtbpre;
  23. //验证权限
  24. //CheckLevel($userid,$username,$classid,"changedata");
  25. $start=(int)$start;
  26. $tbname=RepPostVar($tbname);
  27. if(empty($tbname)||!eCheckTbname($tbname))
  28. {
  29. printerror("ErrorUrl","history.go(-1)");
  30. }
  31. $add1='';
  32. //按栏目刷新
  33. $classid=(int)$classid;
  34. if($classid)
  35. {
  36. if(empty($class_r[$classid][islast]))//父栏目
  37. {
  38. $where=ReturnClass($class_r[$classid][sonclass]);
  39. }
  40. else//终极栏目
  41. {
  42. $where="classid='$classid'";
  43. }
  44. $add1=" and (".$where.")";
  45. }
  46. //按ID刷新
  47. if($retype)
  48. {
  49. $startid=(int)$startid;
  50. $endid=(int)$endid;
  51. if($endid)
  52. {
  53. $add1.=" and id>=$startid and id<=$endid";
  54. }
  55. }
  56. else
  57. {
  58. $startday=RepPostVar($startday);
  59. $endday=RepPostVar($endday);
  60. if($startday&&$endday)
  61. {
  62. $add1.=" and truetime>=".to_time($startday." 00:00:00")." and truetime<=".to_time($endday." 23:59:59");
  63. }
  64. }
  65. $b=0;
  66. $sql=$empire->query("select id,classid,checked from {$dbtbpre}ecms_".$tbname."_index where id>$start".$add1." order by id limit ".$public_r[delnewsnum]);
  67. while($r=$empire->fetch($sql))
  68. {
  69. $b=1;
  70. $new_start=$r[id];
  71. //返回表
  72. $infotb=ReturnInfoMainTbname($tbname,$r['checked']);
  73. $infor=$empire->fetch1("select newspath,filename,groupid,isurl,titleurl from ".$infotb." where id='$r[id]' limit 1");
  74. $infourl=GotoGetTitleUrl($r['classid'],$r['id'],$infor['newspath'],$infor['filename'],$infor['groupid'],$infor['isurl'],$infor['titleurl']);
  75. $empire->query("update ".$infotb." set titleurl='$infourl' where id='$r[id]' limit 1");
  76. }
  77. if(empty($b))
  78. {
  79. insert_dolog("");//操作日志
  80. printerror("ReInfoUrlSuccess",$from);
  81. }
  82. echo $fun_r[OneReInfoUrlSuccess]."(ID:<font color=red><b>".$new_start."</b></font>)<script>self.location.href='ReInfoUrl.php?enews=ReInfoUrl&tbname=$tbname&classid=$classid&start=$new_start&from=".urlencode($from)."&retype=$retype&startday=$startday&endday=$endday&startid=$startid&endid=$endid".hReturnEcmsHashStrHref(0)."';</script>";
  83. exit();
  84. }
  85. $enews=$_POST['enews'];
  86. if(empty($enews))
  87. {$enews=$_GET['enews'];}
  88. if($enews)
  89. {
  90. hCheckEcmsRHash();
  91. @set_time_limit(0);
  92. include('../../data/dbcache/class.php');
  93. }
  94. if($enews=="ReInfoUrl")//批量更新信息页地址
  95. {
  96. $start=$_GET['start'];
  97. $classid=$_GET['classid'];
  98. $from=$_GET['from'];
  99. $retype=$_GET['retype'];
  100. $startday=$_GET['startday'];
  101. $endday=$_GET['endday'];
  102. $startid=$_GET['startid'];
  103. $endid=$_GET['endid'];
  104. $tbname=$_GET['tbname'];
  105. ReInfoUrl($start,$classid,$from,$retype,$startday,$endday,$startid,$endid,$tbname,$logininid,$loginin);
  106. }
  107. //栏目
  108. $fcfile="../../data/fc/ListEnews.php";
  109. $class="<script src=../../data/fc/cmsclass.js></script>";
  110. if(!file_exists($fcfile))
  111. {$class=ShowClass_AddClass("",0,0,"|-",0,0);}
  112. //刷新表
  113. $retable="";
  114. $selecttable="";
  115. $i=0;
  116. $tsql=$empire->query("select tid,tbname,tname from {$dbtbpre}enewstable where intb=0 order by tid");
  117. while($tr=$empire->fetch($tsql))
  118. {
  119. $i++;
  120. if($i%4==0)
  121. {
  122. $br="<br>";
  123. }
  124. else
  125. {
  126. $br="";
  127. }
  128. $retable.="<input type=checkbox name=tbname[] value='$tr[tbname]' checked>$tr[tname]&nbsp;&nbsp;".$br;
  129. $selecttable.="<option value='".$tr[tbname]."'>".$tr[tname]."</option>";
  130. }
  131. //选择日期
  132. $todaydate=date("Y-m-d");
  133. $todaytime=time();
  134. $changeday="<select name=selectday onchange=\"document.reform.startday.value=this.value;document.reform.endday.value='".$todaydate."'\">
  135. <option value='".$todaydate."'>--选择--</option>
  136. <option value='".$todaydate."'>今天</option>
  137. <option value='".ToChangeTime($todaytime,7)."'>一周</option>
  138. <option value='".ToChangeTime($todaytime,30)."'>一月</option>
  139. <option value='".ToChangeTime($todaytime,90)."'>三月</option>
  140. <option value='".ToChangeTime($todaytime,180)."'>半年</option>
  141. <option value='".ToChangeTime($todaytime,365)."'>一年</option>
  142. </select>";
  143. ?>
  144. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  145. <html>
  146. <head>
  147. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  148. <title>批量更新信息页地址</title>
  149. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  150. <script type="text/javascript" src="../ecmseditor/js/jstime/WdatePicker.js"></script>
  151. <script>
  152. function CheckAll(form)
  153. {
  154. for (var i=0;i<form.elements.length;i++)
  155. {
  156. var e = form.elements[i];
  157. if (e.name != 'chkall')
  158. e.checked = form.chkall.checked;
  159. }
  160. }
  161. </script>
  162. </head>
  163. <body>
  164. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  165. <tr>
  166. <td width="39%" height="25">位置:<a href="ReInfoUrl.php<?=$ecms_hashur['whehref']?>">批量更新信息页地址</a></td>
  167. <td width="61%"><div align="right" class="emenubutton">
  168. <input type="button" name="Submit52" value="数据更新中心" onclick="self.location.href='ChangeData.php<?=$ecms_hashur['whehref']?>';">
  169. &nbsp;&nbsp;
  170. <input type="button" name="Submit52" value="数据整理" onclick="self.location.href='DoUpdateData.php<?=$ecms_hashur['whehref']?>';">
  171. &nbsp;&nbsp;
  172. <input type="button" name="Submit522" value="更新动态页面缓存" onclick="self.location.href='ChangePageCache.php<?=$ecms_hashur['whehref']?>';">
  173. </div></td>
  174. </tr>
  175. </table>
  176. <form action="ReInfoUrl.php" method="get" name="form1" target="_blank" onsubmit="return confirm('确认要更新?');">
  177. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder" id="ReInfoUrl">
  178. <?=$ecms_hashur['form']?>
  179. <input name="from" type="hidden" id="from" value="ReInfoUrl.php<?=$ecms_hashur['whehref']?>">
  180. <tr class="header">
  181. <td height="25"> <div align="center">批量更新信息页地址</div></td>
  182. </tr>
  183. <tr>
  184. <td height="25" bgcolor="#FFFFFF"> <div align="center">
  185. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  186. <tr>
  187. <td height="25">数据表:</td>
  188. <td height="25"> <select name="tbname" id="tbname">
  189. <option value=''>------ 选择数据表 ------</option>
  190. <?=$selecttable?>
  191. </select>
  192. (*) </td>
  193. </tr>
  194. <tr>
  195. <td height="25">栏目</td>
  196. <td height="25"><select name="classid">
  197. <option value="0">所有栏目</option>
  198. <?=$class?>
  199. </select>
  200. <font color="#666666">(如选择父栏目,将更新所有子栏目)</font></td>
  201. </tr>
  202. <tr>
  203. <td width="23%" height="25"> <input name="retype" type="radio" value="0" checked>
  204. 按时间更新:</td>
  205. <td width="77%" height="25">从
  206. <input name="startday" type="text" size="15" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
  207. <input name="endday" type="text" size="15" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
  208. 之间的信息 <font color="#666666">(不填将更新所有信息)</font></td>
  209. </tr>
  210. <tr>
  211. <td height="25"> <input name="retype" type="radio" value="1">
  212. 按ID更新:</td>
  213. <td height="25">从
  214. <input name="startid" type="text" value="0" size="6">
  215. <input name="endid" type="text" value="0" size="6">
  216. 之间的信息 <font color="#666666">(两个值为0将更新所有信息)</font></td>
  217. </tr>
  218. <tr>
  219. <td height="25">&nbsp;</td>
  220. <td height="25"><input type="submit" name="Submit62" value="开始更新">
  221. <input type="reset" name="Submit72" value="重置">
  222. <input name="enews" type="hidden" value="ReInfoUrl">
  223. </td>
  224. </tr>
  225. <tr>
  226. <td height="25" colspan="2"><font color="#666666">说明:当改变信息目录形式时,请用此功能来批量更新内容页地址。</font></td>
  227. </tr>
  228. </table>
  229. </div></td>
  230. </tr>
  231. </table>
  232. </form>
  233. </body>
  234. </html>
  235. <?
  236. db_close();
  237. $empire=null;
  238. ?>