<%-- Copyright (c) 2012, Andy Janata All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --%> <%-- Administration tools. @author Andy Janata (ajanata@socialgamer.net) --%> <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %> <%@ page import="com.google.inject.Injector" %> <%@ page import="com.google.inject.Key" %> <%@ page import="com.google.inject.TypeLiteral" %> <%@ page import="net.socialgamer.cah.RequestWrapper" %> <%@ page import="net.socialgamer.cah.StartupUtils" %> <%@ page import="net.socialgamer.cah.CahModule.BanList" %> <%@ page import="net.socialgamer.cah.Constants" %> <%@ page import="net.socialgamer.cah.Constants.DisconnectReason" %> <%@ page import="net.socialgamer.cah.Constants.LongPollEvent" %> <%@ page import="net.socialgamer.cah.Constants.LongPollResponse" %> <%@ page import="net.socialgamer.cah.Constants.ReturnableData" %> <%@ page import="net.socialgamer.cah.data.ConnectedUsers" %> <%@ page import="net.socialgamer.cah.data.QueuedMessage" %> <%@ page import="net.socialgamer.cah.data.QueuedMessage.MessageType" %> <%@ page import="net.socialgamer.cah.data.User" %> <%@ page import="java.util.Collection" %> <%@ page import="java.util.Date" %> <%@ page import="java.util.HashMap" %> <%@ page import="java.util.Map" %> <%@ page import="java.util.Set" %> <% RequestWrapper wrapper = new RequestWrapper(request); if (!Constants.ADMIN_IP_ADDRESSES.contains(wrapper.getRemoteAddr())) { response.sendError(403, "Access is restricted to known hosts"); return; } ServletContext servletContext = pageContext.getServletContext(); Injector injector = (Injector) servletContext.getAttribute(StartupUtils.INJECTOR); ConnectedUsers connectedUsers = injector.getInstance(ConnectedUsers.class); Set banList = injector.getInstance(Key.get(new TypeLiteral>(){}, BanList.class)); // process verbose toggle String verboseParam = request.getParameter("verbose"); if (verboseParam != null) { if (verboseParam.equals("on")) { servletContext.setAttribute(StartupUtils.VERBOSE_DEBUG, Boolean.TRUE); } else { servletContext.setAttribute(StartupUtils.VERBOSE_DEBUG, Boolean.FALSE); } response.sendRedirect("admin.jsp"); return; } // process kick String kickParam = request.getParameter("kick"); if (kickParam != null) { User user = connectedUsers.getUser(kickParam); if (user != null) { Map data = new HashMap(); data.put(LongPollResponse.EVENT, LongPollEvent.KICKED.toString()); QueuedMessage qm = new QueuedMessage(MessageType.KICKED, data); user.enqueueMessage(qm); connectedUsers.removeUser(user, DisconnectReason.KICKED); } response.sendRedirect("admin.jsp"); return; } // process ban String banParam = request.getParameter("ban"); if (banParam != null) { User user = connectedUsers.getUser(banParam); if (user != null) { Map data = new HashMap(); data.put(LongPollResponse.EVENT, LongPollEvent.BANNED.toString()); QueuedMessage qm = new QueuedMessage(MessageType.KICKED, data); user.enqueueMessage(qm); connectedUsers.removeUser(user, DisconnectReason.BANNED); banList.add(user.getHostName()); } response.sendRedirect("admin.jsp"); return; } // process unban String unbanParam = request.getParameter("unban"); if (unbanParam != null) { banList.remove(unbanParam); response.sendRedirect("admin.jsp"); return; } String reloadLog4j = request.getParameter("reloadLog4j"); if ("true".equals(reloadLog4j)) { StartupUtils.reconfigureLogging(this.getServletContext()); } String reloadProps = request.getParameter("reloadProps"); if ("true".equals(reloadProps)) { StartupUtils.reloadProperties(this.getServletContext()); } %> PYX - Admin

Server up since <% Date startedDate = (Date) servletContext.getAttribute(StartupUtils.DATE_NAME); long uptime = System.currentTimeMillis() - startedDate.getTime(); uptime /= 1000L; long seconds = uptime % 60L; long minutes = (uptime / 60L) % 60L; long hours = (uptime / 60L / 60L) % 24L; long days = (uptime / 60L / 60L / 24L); out.print(String.format("%s (%d days, %02d:%02d:%02d)", startedDate.toString(), days, hours, minutes, seconds)); %>

Stat MiB
In Use <%= (Runtime.getRuntime().totalMemory() - Runtime.getRuntime().freeMemory()) / 1024L / 1024L %>
Free <% out.print(Runtime.getRuntime().freeMemory() / 1024L / 1024L); %>
JVM Allocated <% out.print(Runtime.getRuntime().totalMemory() / 1024L / 1024L); %>
JVM Max <% out.print(Runtime.getRuntime().maxMemory() / 1024L / 1024L); %>

Ban list: <% for (String host : banList) { %> <% } %>
Host Actions
<%= host %> Unban

User list: <% Collection users = connectedUsers.getUsers(); for (User u : users) { // TODO have a ban system. would need to store them somewhere. %> <% } %>
Username Host Actions
<%= u.getNickname() %> <%= u.getHostName() %> Kick Ban
<% // TODO remove this "verbose logging" crap now that log4j is working. Boolean verboseDebugObj = (Boolean) servletContext.getAttribute(StartupUtils.VERBOSE_DEBUG); boolean verboseDebug = verboseDebugObj != null ? verboseDebugObj.booleanValue() : false; %>

Verbose logging is currently <%= verboseDebug ? "ON" : "OFF" %>. Turn on. Turn off.

Reload log4j.properties.

Reload pyx.properties.