ListDolog.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. require "../".LoadLang("pub/enews.php");
  7. require "../".LoadLang("pub/fun.php");
  8. require("../../data/dbcache/class.php");
  9. $link=db_connect();
  10. $empire=new mysqlquery();
  11. $editor=1;
  12. //验证用户
  13. $lur=is_login();
  14. $logininid=$lur['userid'];
  15. $loginin=$lur['username'];
  16. $loginrnd=$lur['rnd'];
  17. $loginlevel=$lur['groupid'];
  18. $loginadminstyleid=$lur['adminstyleid'];
  19. //ehash
  20. $ecms_hashur=hReturnEcmsHashStrAll();
  21. //验证权限
  22. CheckLevel($logininid,$loginin,$classid,"log");
  23. //删除日志
  24. function DelDoLog($logid,$userid,$username){
  25. global $empire,$dbtbpre;
  26. //验证权限
  27. CheckLevel($userid,$username,$classid,"log");
  28. $logid=(int)$logid;
  29. if(!$logid)
  30. {
  31. printerror("NotDelLogid","history.go(-1)");
  32. }
  33. $sql=$empire->query("delete from {$dbtbpre}enewsdolog where logid='$logid'");
  34. if($sql)
  35. {
  36. //操作日志
  37. insert_dolog("logid=".$logid);
  38. printerror("DelLogSuccess","ListDolog.php".hReturnEcmsHashStrHref2(1));
  39. }
  40. else
  41. {
  42. printerror("DbError","history.go(-1)");
  43. }
  44. }
  45. //批量删除日志
  46. function DelDoLog_all($logid,$userid,$username){
  47. global $empire,$dbtbpre;
  48. //验证权限
  49. CheckLevel($userid,$username,$classid,"log");
  50. $count=count($logid);
  51. if(!$count)
  52. {
  53. printerror("NotDelLogid","history.go(-1)");
  54. }
  55. for($i=0;$i<$count;$i++)
  56. {
  57. $add.=" logid='".intval($logid[$i])."' or";
  58. }
  59. $add=substr($add,0,strlen($add)-3);
  60. $sql=$empire->query("delete from {$dbtbpre}enewsdolog where".$add);
  61. if($sql)
  62. {
  63. //操作日志
  64. insert_dolog("");
  65. printerror("DelLogSuccess","ListDolog.php".hReturnEcmsHashStrHref2(1));
  66. }
  67. else
  68. {
  69. printerror("DbError","history.go(-1)");
  70. }
  71. }
  72. //日期删除日志
  73. function DelDoLog_date($add,$userid,$username){
  74. global $empire,$dbtbpre;
  75. //验证权限
  76. CheckLevel($userid,$username,$classid,"log");
  77. $start=RepPostVar($add['startday']);
  78. $end=RepPostVar($add['endday']);
  79. if(!$start||!$end)
  80. {
  81. printerror('EmptyDelLogTime','');
  82. }
  83. $startday=$start.' 00:00:00';
  84. $endday=$end.' 23:59:59';
  85. $sql=$empire->query("delete from {$dbtbpre}enewsdolog where logtime<='$endday' and logtime>='$startday'");
  86. if($sql)
  87. {
  88. //操作日志
  89. insert_dolog("time=".$start."~".$end);
  90. printerror("DelLogSuccess","ListDolog.php".hReturnEcmsHashStrHref2(1));
  91. }
  92. else
  93. {
  94. printerror("DbError","history.go(-1)");
  95. }
  96. }
  97. $enews=$_POST['enews'];
  98. if(empty($enews))
  99. {$enews=$_GET['enews'];}
  100. if($enews)
  101. {
  102. hCheckEcmsRHash();
  103. }
  104. //删除日志
  105. if($enews=="DelDoLog")
  106. {
  107. $logid=$_GET['logid'];
  108. DelDoLog($logid,$logininid,$loginin);
  109. }
  110. //批量删除日志
  111. elseif($enews=="DelDoLog_all")
  112. {
  113. $logid=$_POST['logid'];
  114. DelDoLog_all($logid,$logininid,$loginin);
  115. }
  116. elseif($enews=="DelDoLog_date")
  117. {
  118. DelDoLog_date($_POST,$logininid,$loginin);
  119. }
  120. $line=20;//每页显示条数
  121. $page_line=18;//每页显示链接数
  122. $page=(int)$_GET['page'];
  123. $page=RepPIntvar($page);
  124. $start=0;
  125. $offset=$page*$line;//总偏移量
  126. //搜索
  127. $search='';
  128. $search.=$ecms_hashur['ehref'];
  129. $where='';
  130. $and=' where ';
  131. //信息ID
  132. $classid=(int)$_GET['classid'];
  133. $id=(int)$_GET['id'];
  134. if($classid&&$id)
  135. {
  136. $pubid=ReturnInfoPubid($classid,$id);
  137. $where.=$and."pubid='$pubid'";
  138. $and=' and ';
  139. $search.="&classid=$classid&id=$id";
  140. }
  141. if($_GET['sear']==1)
  142. {
  143. $search.="&sear=1";
  144. $startday=RepPostVar($_GET['startday']);
  145. $endday=RepPostVar($_GET['endday']);
  146. if($startday&&$endday)
  147. {
  148. $where.=$and."logtime<='".$endday." 23:59:59' and logtime>='".$startday." 00:00:00'";
  149. $and=' and ';
  150. $search.="&startday=$startday&endday=$endday";
  151. }
  152. $keyboard=RepPostVar($_GET['keyboard']);
  153. if($keyboard)
  154. {
  155. $show=RepPostStr($_GET['show'],1);
  156. if($show==1)
  157. {
  158. $where.=$and."username like '%$keyboard%'";
  159. }
  160. elseif($show==2)
  161. {
  162. $where.=$and."logip like '%$keyboard%'";
  163. }
  164. elseif($show==3)
  165. {
  166. $where.=$and."enews like '%$keyboard%'";
  167. }
  168. elseif($show==4)
  169. {
  170. $where.=$and."doing like '%$keyboard%'";
  171. }
  172. else
  173. {
  174. $where.=$and."(username like '%$keyboard%' or logip like '%$keyboard%')";
  175. }
  176. $and=' and ';
  177. $search.="&keyboard=$keyboard&show=$show";
  178. }
  179. }
  180. $search2=$search;
  181. //排序
  182. $mydesc=(int)$_GET['mydesc'];
  183. $desc=$mydesc?'asc':'desc';
  184. $orderby=(int)$_GET['orderby'];
  185. if($orderby==1)//登陆用户
  186. {
  187. $order="username ".$desc.",logid desc";
  188. $usernamedesc=$mydesc?0:1;
  189. }
  190. elseif($orderby==2)//IP
  191. {
  192. $order="logip ".$desc.",logid desc";
  193. $logipdesc=$mydesc?0:1;
  194. }
  195. elseif($orderby==3)//操作时间
  196. {
  197. $order="logtime ".$desc.",logid desc";
  198. $logtimedesc=$mydesc?0:1;
  199. }
  200. else//ID
  201. {
  202. $order="logid ".$desc;
  203. $logiddesc=$mydesc?0:1;
  204. }
  205. $search.="&orderby=$orderby&mydesc=$mydesc";
  206. $query="select logid,logip,logtime,username,enews,doing,ipport from {$dbtbpre}enewsdolog".$where;
  207. $totalquery="select count(*) as total from {$dbtbpre}enewsdolog".$where;
  208. $num=$empire->gettotal($totalquery);//取得总条数
  209. $query=$query." order by ".$order." limit $offset,$line";
  210. $sql=$empire->query($query);
  211. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  212. ?>
  213. <html>
  214. <head>
  215. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  216. <title>管理操作日志</title>
  217. <script type="text/javascript" src="../ecmseditor/js/jstime/WdatePicker.js"></script>
  218. <script>
  219. function CheckAll(form)
  220. {
  221. for (var i=0;i<form.elements.length;i++)
  222. {
  223. var e = form.elements[i];
  224. if (e.name != 'chkall')
  225. e.checked = form.chkall.checked;
  226. }
  227. }
  228. </script>
  229. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  230. </head>
  231. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  232. <tr>
  233. <td width="50%">位置:日志管理 &gt; <a href="ListDolog.php<?=$ecms_hashur['whehref']?>">管理操作日志</a></td>
  234. <td><div align="right" class="emenubutton">
  235. <input type="button" name="Submit5" value="管理登陆日志" onclick="self.location.href='ListLog.php<?=$ecms_hashur['whehref']?>';">
  236. </div></td>
  237. </tr>
  238. </table>
  239. <br>
  240. <table width="100%" align=center cellpadding=0 cellspacing=0>
  241. <form name=searchlogform method=get action='ListDolog.php'>
  242. <?=$ecms_hashur['eform']?>
  243. <tr>
  244. <td height="25"> <div align="center">时间从
  245. <input name="startday" type="text" value="<?=$startday?>" size="15" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
  246. <input name="endday" type="text" value="<?=$endday?>" size="15" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
  247. ,关键字:
  248. <input name="keyboard" type="text" id="keyboard" value="<?=$keyboard?>">
  249. <select name="show" id="show">
  250. <option value="1"<?=$show==1?' selected':''?>>用户名</option>
  251. <option value="2"<?=$show==2?' selected':''?>>操作IP</option>
  252. <option value="3"<?=$show==3?' selected':''?>>操作事件</option>
  253. <option value="4"<?=$show==4?' selected':''?>>操作内容</option>
  254. </select>
  255. 栏目ID:
  256. <input name="classid" type="text" id="classid" value="<?=$classid?>" size="10">
  257. 信息ID:
  258. <input name="id" type="text" id="id" value="<?=$id?>" size="10">
  259. <input name=submit1 type=submit id="submit12" value=搜索>
  260. <input name="sear" type="hidden" id="sear" value="1">
  261. </div></td>
  262. </tr>
  263. </form>
  264. </table>
  265. <form name="form2" method="post" action="ListDolog.php" onsubmit="return confirm('确认要删除?');">
  266. <table width="100%" border="0" align="center" cellpadding="0" cellspacing="1">
  267. <?=$ecms_hashur['form']?>
  268. <tr class="header">
  269. <td width="8%">
  270. <div align="center"><a href="ListDolog.php?orderby=0&mydesc=<?=$logiddesc.$search2?>">ID</a></div></td>
  271. <td width="24%" height="25">
  272. <div align="center"><a href="ListDolog.php?orderby=1&mydesc=<?=$usernamedesc.$search2?>">操作者</a></div></td>
  273. <td width="23%" height="25">
  274. <div align="center"><a href="ListDolog.php?orderby=2&mydesc=<?=$logipdesc.$search2?>">IP</a></div></td>
  275. <td width="27%">
  276. <div align="center"><a href="ListDolog.php?orderby=3&mydesc=<?=$logtimedesc.$search2?>">操作时间</a></div></td>
  277. <td width="18%" height="25">
  278. <div align="center">删除</div></td>
  279. </tr>
  280. <?
  281. while($r=$empire->fetch($sql))
  282. {
  283. $dologenews=$enews_r[$r['enews']]?$enews_r[$r['enews']]:$r['enews'];
  284. ?>
  285. <tr bgcolor="#DBEAF5" id=log<?=$r[logid]?>>
  286. <td>
  287. <div align="center"><?=$r[logid]?></div></td>
  288. <td height="25">
  289. <div align="center">
  290. <?=$r[username]?>
  291. </div></td>
  292. <td height="25">
  293. <div align="center">
  294. <?=$r[logip]?>:<?=$r[ipport]?>
  295. </div></td>
  296. <td>
  297. <div align="center">
  298. <?=$r[logtime]?>
  299. </div></td>
  300. <td height="25">
  301. <div align="center">[<a href="ListDolog.php?enews=DelDoLog&logid=<?=$r[logid]?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要删除此日志?');">删除</a>
  302. <input name="logid[]" type="checkbox" id="logid[]" value="<?=$r[logid]?>" onclick="if(this.checked){log<?=$r[logid]?>.style.backgroundColor='#cccccc';}else{log<?=$r[logid]?>.style.backgroundColor='#DBEAF5';}">
  303. ]</div></td>
  304. </tr>
  305. <tr bgcolor="#FFFFFF">
  306. <td height="25" colspan="5"><table width="100%" border="0" cellspacing="1" cellpadding="3">
  307. <tr>
  308. <td width="9%">动作:</td>
  309. <td width="25%"><?=$dologenews?></td>
  310. <td width="10%">操作对像:</td>
  311. <td width="56%"><?=$r[doing]?></td>
  312. </tr>
  313. </table></td>
  314. </tr>
  315. <?
  316. }
  317. ?>
  318. <tr bgcolor="#FFFFFF">
  319. <td height="25" colspan="5">
  320. <?=$returnpage?>&nbsp;&nbsp;
  321. <input type="submit" name="Submit" value="批量删除"> <input name="enews" type="hidden" id="phome" value="DelDoLog_all">&nbsp;
  322. <input type=checkbox name=chkall value=on onClick=CheckAll(this.form)>
  323. 选中全部 </td>
  324. </tr>
  325. </table>
  326. </form>
  327. <form action="ListDolog.php" method="post" name="dellogform" id="dellogform" onsubmit="return confirm('确认要删除?');">
  328. <table width="100%" border="0" cellspacing="1" cellpadding="3">
  329. <?=$ecms_hashur['form']?>
  330. <tr>
  331. <td><div align="center">
  332. <input name="enews" type="hidden" id="enews" value="DelDoLog_date">
  333. 删除从
  334. <input name="startday" type="text" id="startday" value="<?=$startday?>" size="15" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
  335. <input name="endday" type="text" id="endday" value="<?=$endday?>" size="15" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
  336. 之间的日志
  337. <input type="submit" name="Submit2" value="提交">
  338. </div></td>
  339. </tr>
  340. </table>
  341. </form>
  342. <?
  343. db_close();
  344. $empire=null;
  345. ?>
  346. </body>
  347. </html>