forbidiprange.jsp
上传用户:jhtang88
上传日期:2014-01-27
资源大小:28528k
文件大小:7k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8" %>
  2. <%@ page import="java.util.*"%>
  3. <%@ page import="cn.js.fan.web.*"%>
  4. <%@ page import="cn.js.fan.util.*"%>
  5. <%@ page import="cn.js.fan.db.*"%>
  6. <%@ page import="cn.js.fan.base.*"%>
  7. <%@ page import="com.redmoon.forum.security.*"%>
  8. <%@ page import="com.redmoon.forum.*"%>
  9. <%@ taglib uri="/WEB-INF/tlds/LabelTag.tld" prefix="lt" %>
  10. <jsp:useBean id="StrUtil" scope="page" class="cn.js.fan.util.StrUtil"/>
  11. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  12. <html><head>
  13. <meta http-equiv="pragma" content="no-cache">
  14. <link rel="stylesheet" href="../../common.css">
  15. <LINK href="default.css" type=text/css rel=stylesheet>
  16. <meta http-equiv="Cache-Control" content="no-cache, must-revalidate">
  17. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  18. <title><lt:Label res="res.label.forum.admin.forbidip" key="forbidip"/></title>
  19. <body bgcolor="#FFFFFF" topmargin='0' leftmargin='0'>
  20. <jsp:useBean id="privilege" scope="page" class="com.redmoon.forum.Privilege"/>
  21. <%
  22. if (!privilege.isMasterLogin(request))
  23. {
  24. out.print(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  25. return;
  26. }
  27. String op = ParamUtil.get(request, "op");
  28. if (op.equals("add")) {
  29. String begin = ParamUtil.get(request, "begin").trim();
  30. String end = ParamUtil.get(request, "end").trim();
  31. String userName = ParamUtil.get(request, "userName").trim();
  32. String reason = ParamUtil.get(request, "reason").trim();
  33. if (begin.equals("") || end.equals("")) {
  34. out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request, "res.label.forum.admin.forbidip", "ip_can_not_empty")));
  35. }
  36. else {
  37. boolean isValid = true;
  38. if (!StrUtil.isValidIP(begin)) {
  39. out.print(StrUtil.Alert(SkinUtil.LoadString(request, "res.label.forum.admin.forbidip", "begin_ip_format_invalid")));
  40. isValid = false;
  41. }
  42. if (!StrUtil.isValidIP(end)) {
  43. out.print(StrUtil.Alert(SkinUtil.LoadString(request, "res.label.forum.admin.forbidip", "end_ip_format_invalid")));
  44. isValid = false;
  45. }
  46. if (isValid) {
  47. ForbidIPRangeDb fid = new ForbidIPRangeDb();
  48. fid.setBegin(begin);
  49. fid.setEnd(end);
  50. fid.setUserName(userName);
  51. fid.setReason(reason);
  52. if (fid.create())
  53. out.print(StrUtil.Alert(SkinUtil.LoadString(request, "info_op_success")));
  54. else
  55. out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request, "info_op_fail")));
  56. }
  57. }
  58. }
  59. if (op.equals("del")) {
  60. int id = ParamUtil.getInt(request, "id");
  61. ForbidIPRangeDb fid = new ForbidIPRangeDb();
  62. fid = fid.getForbidIPRangeDb(id);
  63. if (fid.del())
  64. out.print(StrUtil.Alert(SkinUtil.LoadString(request, "info_op_success")));
  65. else
  66. out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request, "info_op_fail")));
  67. }
  68. %>
  69. <table width='100%' cellpadding='0' cellspacing='0' >
  70.   <tr>
  71.     <td class="head"><lt:Label res="res.label.forum.admin.forbidip" key="forbid_single_ip_range"/>&nbsp;&nbsp;<a href="forbidip.jsp"><lt:Label res="res.label.forum.admin.forbidip" key="forbid_single_ip"/></a>&nbsp;&nbsp;</td>
  72.   </tr>
  73. </table>
  74. <br>
  75. <%
  76. ForbidIPRangeDb fid = new ForbidIPRangeDb();
  77. String sql = "select id from sq_forbid_ip_range order by add_date desc";
  78. int total = fid.getObjectCount(sql);
  79. int pagesize = 20;
  80. int curpage,totalpages;
  81. Paginator paginator = new Paginator(request, total, pagesize);
  82. //设置当前页数和总页数
  83. totalpages = paginator.getTotalPages();
  84. curpage = paginator.getCurrentPage();
  85. if (totalpages==0)
  86. {
  87. curpage = 1;
  88. totalpages = 1;
  89. }
  90. %>
  91. <table width="98%" height="227" border='0' align="center" cellpadding='0' cellspacing='0' class="frame_gray">
  92.   <tr> 
  93.     <td height=20 align="left" class="thead"><lt:Label res="res.label.forum.admin.forbidip" key="ip_manage"/></td>
  94.   </tr>  
  95.   <tr> 
  96.     <td valign="top"><br>
  97.       <table width="92%" border="0" align="center">
  98.       <tr>
  99.         <td align="right"><%=paginator.getPageStatics(request)%></td>
  100.       </tr>
  101.     </table>
  102.       <table width="92%"  border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#999999">
  103.       <tr align="center" bgcolor="#F8F7F9">
  104.         <td width="13%" height="24" bgcolor="#EFEBDE"><strong><lt:Label res="res.label.forum.admin.forbidip" key="begin"/></strong></td>
  105.         <td width="12%" bgcolor="#EFEBDE"><strong><lt:Label res="res.label.forum.admin.forbidip" key="end"/></strong></td>
  106.         <td width="14%" height="24" bgcolor="#EFEBDE"><strong><lt:Label res="res.label.forum.admin.forbidip" key="user_name"/></strong></td>
  107.         <td width="37%" height="24" bgcolor="#EFEBDE"><strong><lt:Label res="res.label.forum.admin.forbidip" key="reason"/></strong></td>
  108.         <td width="15%" bgcolor="#EFEBDE"><strong><lt:Label res="res.label.forum.admin.forbidip" key="forbid_date"/></strong></td>
  109.         <td width="9%" bgcolor="#EFEBDE"><strong><lt:Label key="op"/></strong></td>
  110.       </tr>
  111. <%
  112. ObjectBlockIterator oir = fid.getObjects(sql, (curpage-1)*pagesize, curpage*pagesize);
  113. while (oir.hasNext()) {
  114. fid = (ForbidIPRangeDb)oir.next();
  115. %>
  116.       <tr align="center">
  117.         <td height="24" bgcolor="#FFF7FF"><%=fid.getBegin()%></td>
  118.        <td bgcolor="#FFF7FF"><%=fid.getEnd()%></td>
  119.        <td height="24" bgcolor="#FFF7FF"><%=fid.getUserName()%></td>
  120.         <td height="24" bgcolor="#FFF7FF"><%=fid.getReason()%></td>
  121.       <td bgcolor="#FFF7FF">
  122.    <%=DateUtil.format(fid.getAddDate(), "yyyy-MM-dd HH:mm:ss")%>   </td>
  123.         <td height="24" bgcolor="#FFF7FF"><a href="?op=del&id=<%=fid.getId()%>"><lt:Label key="op_del"/></a> </td>
  124.       </tr>
  125. <%}%>
  126.     </table>
  127.       <table width="92%" border="0" cellspacing="1" cellpadding="3" align="center" class="9black">
  128.         <tr>
  129.           <td height="23" align="right">
  130.               <%
  131.   String querystr = "";
  132.     out.print(paginator.getCurPageBlock("forbidiprange.jsp?"+querystr));
  133. %>          </td>
  134.         </tr>
  135.       </table>
  136.       <br>
  137.     <table width="50%" border="0" align="center" cellpadding="2" cellspacing="0" class="tableframe_gray">
  138. <form name=form1 action="?op=add" method=post>
  139.       <tr>
  140.         <td colspan="2" align="center" class="thead"><strong>
  141.           <lt:Label res="res.label.forum.admin.forbidip" key="ad_ip_range"/>
  142.         </strong></td>
  143.         </tr>
  144.       <tr>
  145.         <td width="22%">IP<lt:Label res="res.label.forum.admin.forbidip" key="begin"/></td>
  146.         <td width="78%"><input name="begin" maxlength="15" >
  147.           &nbsp;<lt:Label res="res.label.forum.admin.forbidip" key="ip_note"/></td>
  148.       </tr>
  149.       <tr>
  150.         <td>IP<lt:Label res="res.label.forum.admin.forbidip" key="end"/></td>
  151.         <td><input name="end" maxlength="15" ></td>
  152.       </tr>
  153.       <tr>
  154.         <td><lt:Label res="res.label.forum.admin.forbidip" key="user_name"/></td>
  155.         <td><input name="userName" maxlength="20" ></td>
  156.       </tr>
  157.       <tr>
  158.         <td><lt:Label res="res.label.forum.admin.forbidip" key="reason"/></td>
  159.         <td><input name="reason" size="50" ></td>
  160.       </tr>
  161.       <tr>
  162.         <td colspan="2" align="center"><input name="submit" type="submit" value="<lt:Label key="ok"/>"></td>
  163.         </tr>
  164. </form>
  165.     </table> 
  166.     <br></td>
  167.   </tr>
  168. </table>
  169. </td> </tr>             
  170.       </table>                                        
  171.        </td>                                        
  172.      </tr>                                        
  173.  </table>                                        
  174. </body>                                        
  175. </html>                            
  176.