session-details.jsp 7.43 KB
Newer Older
Matt Tucker's avatar
Matt Tucker committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
<%--
  -	$RCSfile$
  -	$Revision$
  -	$Date$
--%>
<%@ taglib uri="core" prefix="c"%>
<%@ page import="org.jivesoftware.util.*,
                 java.util.Iterator,
                 org.jivesoftware.messenger.*,
                 java.text.DateFormat,
                 java.text.NumberFormat,
                 org.jivesoftware.messenger.user.User" %>

<jsp:useBean id="admin" class="org.jivesoftware.util.WebManager"  />
<% admin.init(request, response, session, application, out ); %>

<!-- Define BreadCrumbs -->
<c:set var="title" value="Session Details"  />
<c:set var="breadcrumbs" value="${admin.breadCrumbs}"  />
<c:set target="${breadcrumbs}" property="Home" value="main.jsp" />
<c:set target="${breadcrumbs}" property="Session Summary" value="session-summary.jsp" />
<c:set target="${breadcrumbs}" property="Summary Details" value="session-details.jsp" />
<c:set var="sbar" value="session" scope="page" />
<%@ include file="top.jsp" %>

<%  // Get parameters
    String jid = ParamUtils.getParameter(request, "jid");

    // Handle a "go back" click:
    if (request.getParameter("back") != null) {
        response.sendRedirect("session-summary.jsp");
        return;
    }

    // Get the session & address objects
    SessionManager sessionManager = admin.getSessionManager();
    XMPPAddress address = XMPPAddress.parseJID(jid);
    Session currentSess = sessionManager.getSession(address);
    boolean isAnonymous = address.getName() == null || "".equals(address.getName());

    // Get a presence manager
    PresenceManager presenceManager = admin.getPresenceManager();

    // Get user object
    User user = null;
    if (!isAnonymous) {
        user = admin.getUserManager().getUser(address.getName());
    }

    // Handle a "message" click:
    if (request.getParameter("message") != null) {
        response.sendRedirect("user-message.jsp?userID=" + user.getID());
        return;
    }

    // See if there are multiple sessions for this user:
    Iterator sessions = null;
    int sessionCount = sessionManager.getSessionCount(address.getName());
    if (!isAnonymous && sessionCount > 1) {
        sessions = sessionManager.getSessions(address.getName());
    }

    // Date dateFormatter for all dates on this page:
    DateFormat dateFormatter = DateFormat.getDateTimeInstance(DateFormat.MEDIUM,DateFormat.SHORT);

    // Number dateFormatter for all numbers on this page:
    NumberFormat numFormatter = NumberFormat.getNumberInstance();
%>



<p>
Below are session details for the session <b><%= address.toString() %></b>. If the
user <b><%= address.getName() %></b> has multiple sessions open, they will appear below.
</p>

<p>
<b>Session Details</b>
</p>

<div class="jive-table">
<table cellpadding="3" cellspacing="1" border="0" width="100%">
<tr>
    <td class="jive-label">
        Session ID:
    </td>
    <td>
        <%= address.toString() %>
    </td>
</tr>
<tr>
    <td class="jive-label">
        User Name &amp; Resource:
    </td>
    <td>
        <%  String n = address.getName(); %>
        <%  if (n == null || "".equals(n)) { %>

            <i>Anonymous</i> - <%= address.getResource() %>

        <%  } else { %>

            <a href="user-properties.jsp?username=<%= n %>"><%= n %></a>
            - <%= address.getResource() %>

        <%  } %>
    </td>
</tr>
<tr>
    <td class="jive-label">
        Status:
    </td>
    <td>
        <%
            int status = currentSess.getStatus();
            if (status == Session.STATUS_CLOSED) {
        %>
            Closed

        <%
            } else if (status == Session.STATUS_CONNECTED) {
        %>

            Connected

        <%
            } else if (status == Session.STATUS_STREAMING) {
        %>

            Streaming

        <%
            } else if (status == Session.STATUS_AUTHENTICATED) {
        %>

            Authenticated

        <%
            } else {
        %>

            Unknown

        <%
            }
        %>
    </td>
</tr>
<tr>
    <td class="jive-label">
        Presence:
    </td>
    <td>
        <%
            int show = currentSess.getPresence().getShow();
            if (show == Presence.SHOW_AWAY) {
        %>
            Away - <%= currentSess.getPresence().getStatus() %>

        <%
            } else if (show == Presence.SHOW_CHAT) {
        %>

            Available to Chat

        <%
            } else if (show == Presence.SHOW_DND) {
        %>

            Do Not Disturb - <%= currentSess.getPresence().getStatus() %>

        <%
            } else if (show == Presence.SHOW_INVISIBLE) {
        %>

            Invisible - <%= currentSess.getPresence().getStatus() %>

        <%
            } else if (show == Presence.SHOW_NONE) {
        %>

            Online

        <%
            } else if (show == Presence.SHOW_XA) {
        %>

            Extended Away - <%= currentSess.getPresence().getStatus() %>

        <%
            } else {
        %>

            Unknown/Not Recognized

        <%
            }
        %>
    </td>
</tr>
<tr>
    <td class="jive-label">
        Session Created:
    </td>
    <td>
        <%= dateFormatter.format(currentSess.getCreationDate()) %>
    </td>
</tr>
<tr>
    <td class="jive-label">
        Session Last Active:
    </td>
    <td>
        <%= dateFormatter.format(currentSess.getLastActiveDate()) %>
    </td>
</tr>
<tr>
    <td class="jive-label">
        Session Statistics:
    </td>
    <td>
        Packets Received/Sent:
        <%= numFormatter.format(currentSess.getNumClientPackets()) %>/<%= numFormatter.format(currentSess.getNumServerPackets()) %>
    </td>
</tr>
<tr>
    <td class="jive-label">
        Client IP / Hostname:
    </td>
    <td>
        <%= currentSess.getConnection().getInetAddress().getHostAddress() %>
        /
        <%= currentSess.getConnection().getInetAddress().getHostName() %>
    </td>
</tr>
</table>
</div>

<%  // Show a list of multiple user sessions if there is more than 1 session:
    if (sessionCount > 1) {
%>
    <p>
    <b>Multiple User Sessions</b>
    </p>

    <div class="jive-table">
    <table cellpadding="3" cellspacing="1" border="0" width="100%">
    <tr>
        <th>&nbsp;</th>
        <th>Name</th>
        <th>Resource</th>
        <th>Status</th>
        <th nowrap colspan="2">Presence (if authenticated)</th>
        <th nowrap>Client IP</th>
        <th nowrap>Close Connection</th>
    </tr>

    <%  int count = 0;
        String linkURL = "session-details.jsp";
        while (sessions.hasNext()) {
            Session sess = (Session) sessions.next();
            count++;
            boolean current = sess.getAddress().equals(address);
    %>
265
        <%@ include file="session-row.jspf" %>
Matt Tucker's avatar
Matt Tucker committed
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309

    <%  } %>

    </table>
    </div>

    <br>

    <table cellpadding="0" cellspacing="0" border="0" width="100%">
    <tr>
        <td width="1%" nowrap>

            <div class="jive-table">
            <table cellpadding="0" cellspacing="0" border="0">
            <tr class="jive-current"><td><img src="images/blank.gif" width="12" height="12" border="0"></td></tr>
            </table>
            </div>

        </td>
        <td width="99%">

            &nbsp; = Current session details above.

        </td>
    </tr>
    </table>

<%  } %>

<br>

<form action="session-details.jsp">
<input type="hidden" name="jid" value="<%= jid %>">
<center>
<%  if (!isAnonymous && presenceManager.isAvailable(user)) { %>

    <input type="submit" name="message" value="Message this Session">

<%  } %>
<input type="submit" name="back" value="Back to Summary">
</center>
</form>

<%@ include file="footer.jsp" %>