server-session-details.jsp 8.07 KB
Newer Older
Gaston Dombiak's avatar
Gaston Dombiak committed
1 2 3 4 5 6 7 8 9 10 11 12
<%--
  -	$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.
--%>

<%@ page import="org.jivesoftware.util.*,
                 java.util.*,
13
                 org.jivesoftware.wildfire.*,
Gaston Dombiak's avatar
Gaston Dombiak committed
14
                 java.text.NumberFormat,
15 16
                 org.jivesoftware.wildfire.server.IncomingServerSession,
                 org.jivesoftware.wildfire.server.OutgoingServerSession"
Gaston Dombiak's avatar
Gaston Dombiak committed
17 18 19 20 21
    errorPage="error.jsp"
%>

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

Gaston Dombiak's avatar
Gaston Dombiak committed
23
<jsp:useBean id="webManager" class="org.jivesoftware.util.WebManager" />
24
<% webManager.init(request, response, session, application, out ); %>
Gaston Dombiak's avatar
Gaston Dombiak committed
25 26 27 28 29 30 31 32 33 34 35 36

<%  // Get parameters
    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();
37
    List<IncomingServerSession> inSessions = sessionManager.getIncomingServerSessions(hostname);
Gaston Dombiak's avatar
Gaston Dombiak committed
38 39 40 41 42 43
    OutgoingServerSession outSession = sessionManager.getOutgoingServerSession(hostname);

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

44 45 46 47 48 49
<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
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72

<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>
73
        <% if (!inSessions.isEmpty() && outSession == null) { %>
Gaston Dombiak's avatar
Gaston Dombiak committed
74 75
            <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" />
76
        <% } else if (inSessions.isEmpty() && outSession != null) { %>
Gaston Dombiak's avatar
Gaston Dombiak committed
77 78 79 80 81 82 83 84 85 86 87 88 89
            <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>
90 91
        <% if (!inSessions.isEmpty()) { %>
            <%= inSessions.get(0).getConnection().getInetAddress().getHostAddress() %>
Gaston Dombiak's avatar
Gaston Dombiak committed
92
            /
93
            <%= inSessions.get(0).getConnection().getInetAddress().getHostName() %>
Gaston Dombiak's avatar
Gaston Dombiak committed
94 95 96 97 98 99 100 101 102 103 104 105
        <% } else if (outSession != null) { %>
            <%= outSession.getConnection().getInetAddress().getHostAddress() %>
            /
            <%= outSession.getConnection().getInetAddress().getHostName() %>
        <% } %>
        </td>
    </tr>
</tbody>
</table>
</div>
<br>

106 107
<%  // Show details of the incoming sessions
    for (IncomingServerSession inSession : inSessions) {
Gaston Dombiak's avatar
Gaston Dombiak committed
108 109 110 111 112
%>
    <b><fmt:message key="server.session.details.incoming_session" /></b>
    <div class="jive-table">
    <table cellpadding="3" cellspacing="1" border="0" width="100%">
    <tr>
113
        <th width="35%" colspan="2"><fmt:message key="server.session.details.streamid" /></th>
Gaston Dombiak's avatar
Gaston Dombiak committed
114 115
        <th width="20%"><fmt:message key="server.session.label.creation" /></th>
        <th width="20%"><fmt:message key="server.session.label.last_active" /></th>
116
        <th width="25%" nowrap><fmt:message key="server.session.details.incoming_statistics" /></th>
Gaston Dombiak's avatar
Gaston Dombiak committed
117 118
    </tr>
    <tr>
119 120 121 122 123 124 125
        <%  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>
         <% } %>
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
        <%
            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
141
        <td><%= inSession.getStreamID()%></td>
142 143
        <td align="center"><%= sameCreationDay ? JiveGlobals.formatTime(creationDate) : JiveGlobals.formatDateTime(creationDate) %></td>
        <td align="center"><%= sameActiveDay ? JiveGlobals.formatTime(lastActiveDate) : JiveGlobals.formatDateTime(lastActiveDate) %></td>
144
        <td align="center"><%= numFormatter.format(inSession.getNumClientPackets()) %></td>
Gaston Dombiak's avatar
Gaston Dombiak committed
145 146 147 148 149 150 151 152 153 154 155 156 157 158
    </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>
159
        <th width="35%" colspan="2"><fmt:message key="server.session.details.streamid" /></th>
Gaston Dombiak's avatar
Gaston Dombiak committed
160 161
        <th width="20%"><fmt:message key="server.session.label.creation" /></th>
        <th width="20%"><fmt:message key="server.session.label.last_active" /></th>
162
        <th width="25%" nowrap><fmt:message key="server.session.details.outgoing_statistics" /></th>
Gaston Dombiak's avatar
Gaston Dombiak committed
163 164
    </tr>
    <tr>
165 166 167 168 169 170 171
        <%  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>
         <% } %>
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
        <%
            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
187
        <td><%= outSession.getStreamID()%></td>
188 189
        <td align="center"><%= sameCreationDay ? JiveGlobals.formatTime(creationDate) : JiveGlobals.formatDateTime(creationDate) %></td>
        <td align="center"><%= sameActiveDay ? JiveGlobals.formatTime(lastActiveDate) : JiveGlobals.formatDateTime(lastActiveDate) %></td>
190
        <td align="center"><%= numFormatter.format(outSession.getNumServerPackets()) %></td>
Gaston Dombiak's avatar
Gaston Dombiak committed
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
    </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>

206 207
    </body>
</html>