ListSearchLoadTb.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  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,"searchall");
  20. //增加搜索数据源
  21. function AddSearchLoadTb($add,$userid,$username){
  22. global $empire,$dbtbpre;
  23. $tbname=RepPostVar($add['tbname']);
  24. $titlefield=RepPostVar($add['titlefield']);
  25. $infotextfield=RepPostVar($add['infotextfield']);
  26. $smalltextfield=RepPostVar($add['smalltextfield']);
  27. $loadnum=(int)$add['loadnum'];
  28. if(!$tbname||!$titlefield||!$infotextfield||!$smalltextfield||!$loadnum)
  29. {
  30. printerror("EmptySearchLoadTb","history.go(-1)");
  31. }
  32. //操作权限
  33. CheckLevel($userid,$username,$classid,"searchall");
  34. //表是否存在
  35. $tbnum=$empire->gettotal("select count(*) as total from {$dbtbpre}enewssearchall_load where tbname='$tbname'");
  36. if($tbnum)
  37. {
  38. printerror("ReSearchLoadTb","history.go(-1)");
  39. }
  40. $lasttime=time();
  41. $sql=$empire->query("insert into {$dbtbpre}enewssearchall_load(tbname,titlefield,infotextfield,smalltextfield,loadnum,lasttime,lastid) values('$tbname','$titlefield','$infotextfield','$smalltextfield',$loadnum,$lasttime,0);");
  42. $lid=$empire->lastid();
  43. GetSearchAllTb();
  44. if($sql)
  45. {
  46. //操作日志
  47. insert_dolog("lid=".$lid."&tbname=".$tbname);
  48. printerror("AddSearchLoadTbSuccess","AddSearchLoadTb.php?enews=AddSearchLoadTb".hReturnEcmsHashStrHref2(0));
  49. }
  50. else
  51. {printerror("DbError","history.go(-1)");}
  52. }
  53. //修改搜索数据源
  54. function EditSearchLoadTb($add,$userid,$username){
  55. global $empire,$dbtbpre;
  56. $lid=(int)$add['lid'];
  57. $tbname=RepPostVar($add['tbname']);
  58. $titlefield=RepPostVar($add['titlefield']);
  59. $infotextfield=RepPostVar($add['infotextfield']);
  60. $smalltextfield=RepPostVar($add['smalltextfield']);
  61. $loadnum=(int)$add['loadnum'];
  62. if(!$tbname||!$titlefield||!$infotextfield||!$smalltextfield||!$loadnum)
  63. {
  64. printerror("EmptySearchLoadTb","history.go(-1)");
  65. }
  66. //操作权限
  67. CheckLevel($userid,$username,$classid,"searchall");
  68. if($tbname<>$add['oldtbname'])
  69. {
  70. //表是否存在
  71. $tbnum=$empire->gettotal("select count(*) as total from {$dbtbpre}enewssearchall_load where tbname='$tbname' and lid<>$lid limit 1");
  72. if($tbnum)
  73. {
  74. printerror("ReSearchLoadTb","history.go(-1)");
  75. }
  76. }
  77. $sql=$empire->query("update {$dbtbpre}enewssearchall_load set tbname='$tbname',titlefield='$titlefield',infotextfield='$infotextfield',smalltextfield='$smalltextfield',loadnum='$loadnum' where lid='$lid'");
  78. GetSearchAllTb();
  79. if($sql)
  80. {
  81. //操作日志
  82. insert_dolog("lid=".$lid."&tbname=".$tbname);
  83. printerror("EditSearchLoadTbSuccess","ListSearchLoadTb.php".hReturnEcmsHashStrHref2(1));
  84. }
  85. else
  86. {printerror("DbError","history.go(-1)");}
  87. }
  88. //删除搜索数据源
  89. function DelSearchLoadTb($lid,$userid,$username){
  90. global $empire,$dbtbpre;
  91. $lid=(int)$lid;
  92. if(!$lid)
  93. {
  94. printerror("NotDelSearchLoadTbid","history.go(-1)");
  95. }
  96. //操作权限
  97. CheckLevel($userid,$username,$classid,"searchall");
  98. $r=$empire->fetch1("select tbname from {$dbtbpre}enewssearchall_load where lid='$lid'");
  99. if(!$r['tbname'])
  100. {
  101. printerror("NotDelSearchLoadTbid","history.go(-1)");
  102. }
  103. $sql=$empire->query("delete from {$dbtbpre}enewssearchall_load where lid='$lid'");
  104. $classids=ReturnTbGetClassids($r['tbname']);
  105. if($classids)
  106. {
  107. $delsql=$empire->query("delete from {$dbtbpre}enewssearchall where classid in (".$classids.")");
  108. }
  109. GetSearchAllTb();
  110. if($sql)
  111. {
  112. //操作日志
  113. insert_dolog("lid=".$lid."&tbname=".$r['tbname']);
  114. printerror("DelSearchLoadTbSuccess","ListSearchLoadTb.php".hReturnEcmsHashStrHref2(1));
  115. }
  116. else
  117. {printerror("DbError","history.go(-1)");}
  118. }
  119. //删除数据源数据
  120. function SearchallDelData($add,$userid,$username){
  121. global $empire,$dbtbpre;
  122. //操作权限
  123. CheckLevel($userid,$username,$classid,"searchall");
  124. $lid=$add['lid'];
  125. $count=count($lid);
  126. for($i=0;$i<$count;$i++)
  127. {
  128. $id=(int)$lid[$i];
  129. if(empty($id))
  130. {
  131. continue;
  132. }
  133. $lr=$empire->fetch1("select tbname from {$dbtbpre}enewssearchall_load where lid='$id'");
  134. if(empty($lr['tbname']))
  135. {
  136. continue;
  137. }
  138. $classids=ReturnTbGetClassids($lr['tbname']);
  139. if($classids)
  140. {
  141. $empire->query("delete from {$dbtbpre}enewssearchall where classid in (".$classids.")");
  142. $empire->query("update {$dbtbpre}enewssearchall_load set lastid=0 where lid='$id'");
  143. }
  144. }
  145. //操作日志
  146. insert_dolog("");
  147. printerror("SearchallDelDataSuccess","ListSearchLoadTb.php".hReturnEcmsHashStrHref2(1));
  148. }
  149. //全站搜索设置
  150. function SetSearchAll($add,$userid,$username){
  151. global $empire,$dbtbpre;
  152. //操作权限
  153. CheckLevel($userid,$username,$classid,"searchall");
  154. $openschall=(int)$add['openschall'];
  155. $schallfield=(int)$add['schallfield'];
  156. $schallminlen=(int)$add['schallminlen'];
  157. $schallmaxlen=(int)$add['schallmaxlen'];
  158. $schallnotcid=','.$add['schallnotcid'].',';
  159. $schallnum=(int)$add['schallnum'];
  160. $schallpagenum=(int)$add['schallpagenum'];
  161. $schalltime=(int)$add['schalltime'];
  162. $schallnotcid=hRepPostStr($schallnotcid,1);
  163. $sql=$empire->query("update {$dbtbpre}enewspublic set openschall=$openschall,schallfield=$schallfield,schallminlen=$schallminlen,schallmaxlen=$schallmaxlen,schallnotcid='$schallnotcid',schallnum='$schallnum',schallpagenum='$schallpagenum',schalltime='$schalltime' limit 1");
  164. GetConfig();
  165. //操作日志
  166. insert_dolog("");
  167. printerror("SetSearchAllSuccess","SetSearchAll.php".hReturnEcmsHashStrHref2(1));
  168. }
  169. //返回数据表里的栏目列表
  170. function ReturnTbGetClassids($tbname){
  171. global $empire,$dbtbpre;
  172. $ids='';
  173. $sql=$empire->query("select classid from {$dbtbpre}enewsclass where tbname='$tbname' and islast=1");
  174. while($r=$empire->fetch($sql))
  175. {
  176. $dh=',';
  177. if($ids=='')
  178. {
  179. $dh='';
  180. }
  181. $ids.=$dh.$r['classid'];
  182. }
  183. return $ids;
  184. }
  185. $enews=$_POST['enews'];
  186. if(empty($enews))
  187. {$enews=$_GET['enews'];}
  188. if($enews)
  189. {
  190. hCheckEcmsRHash();
  191. }
  192. //增加搜索数据源
  193. if($enews=="AddSearchLoadTb")
  194. {
  195. AddSearchLoadTb($_POST,$logininid,$loginin);
  196. }
  197. //修改搜索数据源
  198. elseif($enews=="EditSearchLoadTb")
  199. {
  200. EditSearchLoadTb($_POST,$logininid,$loginin);
  201. }
  202. //删除搜索数据源
  203. elseif($enews=="DelSearchLoadTb")
  204. {
  205. $lid=$_GET['lid'];
  206. DelSearchLoadTb($lid,$logininid,$loginin);
  207. }
  208. //删除数据源数据
  209. elseif($enews=="SearchallDelData")
  210. {
  211. SearchallDelData($_GET,$logininid,$loginin);
  212. }
  213. //全站搜索设置
  214. elseif($enews=="SetSearchAll")
  215. {
  216. SetSearchAll($_POST,$logininid,$loginin);
  217. }
  218. $query="select lid,tbname,lasttime,lastid from {$dbtbpre}enewssearchall_load order by lid";
  219. $sql=$empire->query($query);
  220. ?>
  221. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  222. <html>
  223. <head>
  224. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  225. <title>管理搜索数据源</title>
  226. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  227. <script>
  228. function CheckAll(form)
  229. {
  230. for (var i=0;i<form.elements.length;i++)
  231. {
  232. var e = form.elements[i];
  233. if (e.name != 'chkall')
  234. e.checked = form.chkall.checked;
  235. }
  236. }
  237. function CheckSearchAll(obj){
  238. if(!confirm('确认要操作?'))
  239. {
  240. return false;
  241. }
  242. if(obj.enews.value=='SearchallDelData')
  243. {
  244. obj.action="ListSearchLoadTb.php";
  245. }
  246. else
  247. {
  248. obj.action="SearchLoadData.php";
  249. }
  250. }
  251. </script>
  252. </head>
  253. <body>
  254. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  255. <tr>
  256. <td width="50%">位置:<a href="ListSearchLoadTb.php<?=$ecms_hashur['whehref']?>">管理全站搜索数据源</a></td>
  257. <td><div align="right" class="emenubutton">
  258. <input type="button" name="Submit5" value="增加搜索数据源" onclick="self.location.href='AddSearchLoadTb.php?enews=AddSearchLoadTb<?=$ecms_hashur['ehref']?>';">
  259. &nbsp;&nbsp;
  260. <input type="button" name="Submit52" value="全站搜索设置" onclick="self.location.href='SetSearchAll.php<?=$ecms_hashur['whehref']?>';">
  261. &nbsp;&nbsp;
  262. <input type="button" name="Submit3" value="清理多余数据" onclick="self.location.href='ClearSearchAll.php<?=$ecms_hashur['whehref']?>';">
  263. </div></td>
  264. </tr>
  265. </table>
  266. <form name="searchform" method="GET" action="SearchLoadData.php" onsubmit="return CheckSearchAll(document.searchform);">
  267. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  268. <?=$ecms_hashur['form']?>
  269. <tr class="header">
  270. <td width="5%"><div align="center"> </div></td>
  271. <td width="33%" height="25"><div align="center">导入数据表</div></td>
  272. <td width="18%"><div align="center">最后导入ID</div></td>
  273. <td width="24%"><div align="center">最后导入时间</div></td>
  274. <td width="20%" height="25"><div align="center">操作</div></td>
  275. </tr>
  276. <?
  277. while($r=$empire->fetch($sql))
  278. {
  279. ?>
  280. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  281. <td><div align="center">
  282. <input name="lid[]" type="checkbox" id="lid[]" value="<?=$r[lid]?>">
  283. </div></td>
  284. <td height="25"><div align="center">
  285. <?=$r[tbname]?>
  286. </div></td>
  287. <td><div align="center">
  288. <?=$r[lastid]?>
  289. </div></td>
  290. <td><div align="center">
  291. <?=date("Y-m-d H:i:s",$r[lasttime])?>
  292. </div></td>
  293. <td height="25"><div align="center">[<a href="AddSearchLoadTb.php?enews=EditSearchLoadTb&lid=<?=$r[lid]?><?=$ecms_hashur['ehref']?>">修改</a>]
  294. [<a href="SearchLoadData.php?lid[]=<?=$r[lid]?><?=$ecms_hashur['href']?>">导入</a>] [<a href="ListSearchLoadTb.php?enews=DelSearchLoadTb&lid=<?=$r[lid]?><?=$ecms_hashur['href']?>" onclick="return confirm('会同时删除此数据表的搜索记录,确认要删除?');">删除</a>]
  295. </div></td>
  296. </tr>
  297. <?
  298. }
  299. ?>
  300. <tr bgcolor="#FFFFFF">
  301. <td><div align="center">
  302. <input type=checkbox name=chkall value=on onclick="CheckAll(this.form)">
  303. </div></td>
  304. <td height="25" colspan="4"><input type="submit" name="Submit" value="批量导入搜索表" onclick="document.searchform.enews.value='SearchallLoadData';">
  305. &nbsp;&nbsp;<input type="submit" name="Submit2" value="删除表数据" onclick="document.searchform.enews.value='SearchallDelData';">
  306. <input name="enews" type="hidden" id="enews" value="SearchallLoadData">
  307. </td>
  308. </tr>
  309. </table>
  310. </form>
  311. </body>
  312. </html>
  313. <?
  314. db_close();
  315. $empire=null;
  316. ?>