ListLog.php 11 KB

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