server-session-details.jsp 8.22 KB
Newer Older
Gaston Dombiak's avatar
Gaston Dombiak committed
1 2 3 4 5 6 7 8 9 10
<%--
  -	$Revision$
  -	$Date$
  -
  - Copyright (C) 2004 Jive Software. All rights reserved.
  -
  - This software is published under the terms of the GNU Public License (GPL),
  - a copy of which is included in this distribution.
--%>

11 12
<%@ page import="org.jivesoftware.util.JiveGlobals,
                 org.jivesoftware.util.ParamUtils,
13 14 15
                 org.jivesoftware.openfire.SessionManager,
                 org.jivesoftware.openfire.session.IncomingServerSession,
                 org.jivesoftware.openfire.session.OutgoingServerSession,
16
                java.text.NumberFormat"
Gaston Dombiak's avatar
Gaston Dombiak committed
17 18
    errorPage="error.jsp"
%>
19 20 21
<%@ page import="java.util.Calendar" %>
<%@ page import="java.util.Date" %>
<%@ page import="java.util.List" %>
Gaston Dombiak's avatar
Gaston Dombiak committed
22 23 24

<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jstl/fmt_rt" prefix="fmt" %>
25

Gaston Dombiak's avatar
Gaston Dombiak committed
26
<jsp:useBean id="webManager" class="org.jivesoftware.util.WebManager" />
27
<% webManager.init(request, response, session, application, out ); %>
Gaston Dombiak's avatar
Gaston Dombiak committed
28

29
<% // Get parameters
Gaston Dombiak's avatar
Gaston Dombiak committed
30 31 32 33 34 35 36 37 38 39
    String hostname = ParamUtils.getParameter(request, "hostname");

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

    // Get the session & address objects
    SessionManager sessionManager = webManager.getSessionManager();
40
    List<IncomingServerSession> inSessions = sessionManager.getIncomingServerSessions(hostname);
Gaston Dombiak's avatar
Gaston Dombiak committed
41 42 43 44 45 46
    OutgoingServerSession outSession = sessionManager.getOutgoingServerSession(hostname);

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

47 48 49 50 51 52
<html>
    <head>
        <title><fmt:message key="server.session.details.title"/></title>
        <meta name="pageID" content="server-session-summary"/>
    </head>
    <body>
Gaston Dombiak's avatar
Gaston Dombiak committed
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75

<p>
<fmt:message key="server.session.details.info">
    <fmt:param value="<%= "<b>"+hostname+"</b>" %>" />
</fmt:message>

</p>

<div class="jive-table">
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<thead>
    <tr>
        <th colspan="2">
            <fmt:message key="server.session.details.title" />
        </th>
    </tr>
</thead>
<tbody>
    <tr>
        <td class="c1">
            <fmt:message key="server.session.label.connection" />
        </td>
        <td>
76
        <% if (!inSessions.isEmpty() && outSession == null) { %>
Gaston Dombiak's avatar
Gaston Dombiak committed
77 78
            <img src="images/incoming_32x16.gif" width="32" height="16" border="0" title="<fmt:message key="server.session.connection.incoming" />">
            <fmt:message key="server.session.connection.incoming" />
79
        <% } else if (inSessions.isEmpty() && outSession != null) { %>
Gaston Dombiak's avatar
Gaston Dombiak committed
80 81 82 83 84 85 86 87 88 89 90 91 92
            <img src="images/outgoing_32x16.gif" width="32" height="16" border="0" title="<fmt:message key="server.session.connection.outgoing" />">
            <fmt:message key="server.session.connection.outgoing" />
        <% } else { %>
            <img src="images/both_32x16.gif" width="32" height="16" border="0" title="<fmt:message key="server.session.connection.both" />">
            <fmt:message key="server.session.connection.both" />
        <% } %>
        </td>
    </tr>
    <tr>
        <td class="c1">
            <fmt:message key="server.session.details.hostname" />
        </td>
        <td>
93 94
        <% if (!inSessions.isEmpty()) { %>
            <%= inSessions.get(0).getConnection().getInetAddress().getHostAddress() %>
Gaston Dombiak's avatar
Gaston Dombiak committed
95
            /
96
            <%= inSessions.get(0).getConnection().getInetAddress().getHostName() %>
Gaston Dombiak's avatar
Gaston Dombiak committed
97 98 99 100 101 102 103 104 105 106 107 108
        <% } else if (outSession != null) { %>
            <%= outSession.getConnection().getInetAddress().getHostAddress() %>
            /
            <%= outSession.getConnection().getInetAddress().getHostName() %>
        <% } %>
        </td>
    </tr>
</tbody>
</table>
</div>
<br>

109 110
<%  // Show details of the incoming sessions
    for (IncomingServerSession inSession : inSessions) {
Gaston Dombiak's avatar
Gaston Dombiak committed
111 112 113 114 115
%>
    <b><fmt:message key="server.session.details.incoming_session" /></b>
    <div class="jive-table">
    <table cellpadding="3" cellspacing="1" border="0" width="100%">
    <tr>
116
        <th width="35%" colspan="2"><fmt:message key="server.session.details.streamid" /></th>
Gaston Dombiak's avatar
Gaston Dombiak committed
117 118
        <th width="20%"><fmt:message key="server.session.label.creation" /></th>
        <th width="20%"><fmt:message key="server.session.label.last_active" /></th>
119
        <th width="25%" nowrap><fmt:message key="server.session.details.incoming_statistics" /></th>
Gaston Dombiak's avatar
Gaston Dombiak committed
120 121
    </tr>
    <tr>
122 123 124 125 126 127 128
        <%  if (inSession.getConnection().isSecure()) { %>
            <td width="1%">
                <img src="images/lock.gif" width="16" height="16" border="0">
            </td>
         <% } else { %>
            <td width="1%"><img src="images/blank.gif" width="1" height="1"></td>
         <% } %>
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
        <%
            Date creationDate = inSession.getCreationDate();
            Date lastActiveDate = inSession.getLastActiveDate();

            Calendar creationCal = Calendar.getInstance();
            creationCal.setTime(creationDate);

            Calendar lastActiveCal = Calendar.getInstance();
            lastActiveCal.setTime(lastActiveDate);

            Calendar nowCal = Calendar.getInstance();

            boolean sameCreationDay = nowCal.get(Calendar.DAY_OF_YEAR) == creationCal.get(Calendar.DAY_OF_YEAR) && nowCal.get(Calendar.YEAR) == creationCal.get(Calendar.YEAR);
            boolean sameActiveDay = nowCal.get(Calendar.DAY_OF_YEAR) == lastActiveCal.get(Calendar.DAY_OF_YEAR) && nowCal.get(Calendar.YEAR) == lastActiveCal.get(Calendar.YEAR);
        %>
Gaston Dombiak's avatar
Gaston Dombiak committed
144
        <td><%= inSession.getStreamID()%></td>
145 146
        <td align="center"><%= sameCreationDay ? JiveGlobals.formatTime(creationDate) : JiveGlobals.formatDateTime(creationDate) %></td>
        <td align="center"><%= sameActiveDay ? JiveGlobals.formatTime(lastActiveDate) : JiveGlobals.formatDateTime(lastActiveDate) %></td>
147
        <td align="center"><%= numFormatter.format(inSession.getNumClientPackets()) %></td>
Gaston Dombiak's avatar
Gaston Dombiak committed
148 149 150 151 152 153 154 155 156 157 158 159 160 161
    </tr>
    </table>
    </div>

    <br>
<%  } %>

<%  // Show details of the incoming session
    if (outSession != null) {
%>
    <b><fmt:message key="server.session.details.outgoing_session" /></b>
    <div class="jive-table">
    <table cellpadding="3" cellspacing="1" border="0" width="100%">
    <tr>
162
        <th width="35%" colspan="2"><fmt:message key="server.session.details.streamid" /></th>
Gaston Dombiak's avatar
Gaston Dombiak committed
163 164
        <th width="20%"><fmt:message key="server.session.label.creation" /></th>
        <th width="20%"><fmt:message key="server.session.label.last_active" /></th>
165
        <th width="25%" nowrap><fmt:message key="server.session.details.outgoing_statistics" /></th>
Gaston Dombiak's avatar
Gaston Dombiak committed
166 167
    </tr>
    <tr>
168 169 170 171 172 173 174
        <%  if (outSession.getConnection().isSecure()) { %>
        <td width="1%">
            <img src="images/lock.gif" width="16" height="16" border="0">
        </td>
         <% } else { %>
        <td width="1%"><img src="images/blank.gif" width="1" height="1"></td>
         <% } %>
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
        <%
            Date creationDate = outSession.getCreationDate();
            Date lastActiveDate = outSession.getLastActiveDate();

            Calendar creationCal = Calendar.getInstance();
            creationCal.setTime(creationDate);

            Calendar lastActiveCal = Calendar.getInstance();
            lastActiveCal.setTime(lastActiveDate);

            Calendar nowCal = Calendar.getInstance();

            boolean sameCreationDay = nowCal.get(Calendar.DAY_OF_YEAR) == creationCal.get(Calendar.DAY_OF_YEAR) && nowCal.get(Calendar.YEAR) == creationCal.get(Calendar.YEAR);
            boolean sameActiveDay = nowCal.get(Calendar.DAY_OF_YEAR) == lastActiveCal.get(Calendar.DAY_OF_YEAR) && nowCal.get(Calendar.YEAR) == lastActiveCal.get(Calendar.YEAR);
        %>
Gaston Dombiak's avatar
Gaston Dombiak committed
190
        <td><%= outSession.getStreamID()%></td>
191 192
        <td align="center"><%= sameCreationDay ? JiveGlobals.formatTime(creationDate) : JiveGlobals.formatDateTime(creationDate) %></td>
        <td align="center"><%= sameActiveDay ? JiveGlobals.formatTime(lastActiveDate) : JiveGlobals.formatDateTime(lastActiveDate) %></td>
193
        <td align="center"><%= numFormatter.format(outSession.getNumServerPackets()) %></td>
Gaston Dombiak's avatar
Gaston Dombiak committed
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
    </tr>
    </table>
    </div>

    <br>
<%  } %>

<br>

<form action="server-session-details.jsp">
<center>
<input type="submit" name="back" value="<fmt:message key="session.details.back_button" />">
</center>
</form>

209 210
    </body>
</html>