server-session-row.jspf 6.15 KB
Newer Older
1 2 3 4 5
 <%--
  -	$Revision$
  -	$Date$
--%>

6 7
<%@ page import="org.jivesoftware.openfire.session.IncomingServerSession,
                 org.jivesoftware.util.JiveGlobals,
8
                 java.net.URLEncoder,
9
                 java.util.Calendar,
10
                 java.util.Date"%>
Gaston Dombiak's avatar
Gaston Dombiak committed
11

12 13
 <%@ taglib uri="http://java.sun.com/jstl/fmt_rt" prefix="fmt" %>

14 15 16 17 18 19 20
 <%--
   - This page is meant to be included in other pages. It assumes 4 variables:
   -     * 'host', the name of the remote server
   -     * 'inSession', an  IncomingServerSession object
   -     * 'outSession', an OutgoingServerSession object
   -     * 'count', an int representing the row number we're on.
 --%>
Gaston Dombiak's avatar
Gaston Dombiak committed
21

22
<% // Show the secured icon only if ALL sessions are secure
23 24
    boolean isSecured = true;
    // Check if all incoming sessions are secured
25
    for (org.jivesoftware.openfire.session.IncomingServerSession inSession : inSessions) {
26
        if (!inSession.isSecure()) {
27 28 29 30 31 32
            isSecured = false;
            break;
        }
    }
    // Check if outgoing session is secured (only if incoming sessions are secured)
    if (isSecured && outSession != null) {
33
        isSecured = outSession.isSecure();
34 35
    }
%>
Gaston Dombiak's avatar
Gaston Dombiak committed
36 37 38
<tr class="jive-<%= (((count % 2) == 0) ? "even" : "odd") %>">
    <td width="1%" nowrap><%= count %></td>
    <td width="47%" nowrap>
39 40
        <table cellpadding="0" cellspacing="0" border="0">
            <tr>
41 42
            <td width="1%" ><img src="getFavicon?host=<%=host%>" width="16" height="16" alt=""></td>
            <td><a href="server-session-details.jsp?hostname=<%= URLEncoder.encode(host, "UTF-8") %>" title="<fmt:message key='session.row.cliked' />"><%= host %></a></td>
43 44
            </tr>
        </table>
Gaston Dombiak's avatar
Gaston Dombiak committed
45
    </td>
46 47
    <%  if (isSecured) { %>
    <td width="1%">
48
        <img src="images/lock.gif" width="16" height="16" border="0" alt="">
49 50
    </td>
     <% } else { %>
51
    <td width="1%"><img src="images/blank.gif" width="1" height="1" alt=""></td>
52
     <% } %>
53
    <% if (!inSessions.isEmpty() && outSession == null) { %>
Gaston Dombiak's avatar
Gaston Dombiak committed
54
        <td width="1%">
55
            <img src="images/incoming_32x16.gif" width="32" height="16" border="0" title="<fmt:message key='server.session.connection.incoming' />" alt="<fmt:message key='server.session.connection.incoming' />">
Gaston Dombiak's avatar
Gaston Dombiak committed
56 57
        </td>
        <td width="10%"><fmt:message key="server.session.connection.incoming" /></td>
58
    <% } else if (inSessions.isEmpty() && outSession != null) { %>
Gaston Dombiak's avatar
Gaston Dombiak committed
59
        <td width="1%">
60
            <img src="images/outgoing_32x16.gif" width="32" height="16" border="0" title="<fmt:message key='server.session.connection.outgoing' />" alt="<fmt:message key='server.session.connection.outgoing' />">
Gaston Dombiak's avatar
Gaston Dombiak committed
61 62 63 64
        </td>
        <td width="10%"><fmt:message key="server.session.connection.outgoing" /></td>
    <% } else { %>
        <td width="1%">
65
            <img src="images/both_32x16.gif" width="32" height="16" border="0" title="<fmt:message key='server.session.connection.both' />" alt="<fmt:message key='server.session.connection.both' />">
Gaston Dombiak's avatar
Gaston Dombiak committed
66 67 68 69 70 71
        </td>
        <td width="10%"><fmt:message key="server.session.connection.both" /></td>
    <% } %>

    <% Date creationDate = null;
        Date lastActiveDate = null;
72 73 74 75 76 77 78 79 80 81 82
        if (!inSessions.isEmpty() && outSession == null) {
            for (IncomingServerSession inSession : inSessions) {
                if (creationDate == null || creationDate.after(inSession.getCreationDate())) {
                    // Use the creation date of the oldest incoming session
                    creationDate = inSession.getCreationDate();
                }
                if (lastActiveDate == null || lastActiveDate.before(inSession.getLastActiveDate())) {
                    // Use the last active date of the newest incoming session
                    lastActiveDate = inSession.getLastActiveDate();
                }
            }
Gaston Dombiak's avatar
Gaston Dombiak committed
83
        }
84
        else if (inSessions.isEmpty() && outSession != null) {
Gaston Dombiak's avatar
Gaston Dombiak committed
85 86 87 88
            creationDate = outSession.getCreationDate();
            lastActiveDate = outSession.getLastActiveDate();
        }
        else {
89 90 91 92 93 94 95 96 97 98 99 100
            for (IncomingServerSession inSession : inSessions) {
                if (creationDate == null || creationDate.after(inSession.getCreationDate())) {
                    // Use the creation date of the oldest incoming session
                    creationDate = inSession.getCreationDate();
                }
                if (lastActiveDate == null || lastActiveDate.before(inSession.getLastActiveDate())) {
                    // Use the last active date of the newest incoming session
                    lastActiveDate = inSession.getLastActiveDate();
                }
            }
            creationDate = creationDate.before(outSession.getCreationDate()) ? creationDate : outSession.getCreationDate();
            lastActiveDate = lastActiveDate.after(outSession.getLastActiveDate()) ? lastActiveDate : outSession.getLastActiveDate();
Gaston Dombiak's avatar
Gaston Dombiak committed
101
        }
102 103 104 105 106 107 108 109 110 111
        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
112 113 114
    %>

    <td align="center" width="20%" nowrap>
115
        <%= sameCreationDay ? JiveGlobals.formatTime(creationDate) : JiveGlobals.formatDateTime(creationDate) %>
Gaston Dombiak's avatar
Gaston Dombiak committed
116 117
    </td>
    <td align="center" width="20%" nowrap>
118
        <%= sameActiveDay ? JiveGlobals.formatTime(lastActiveDate) : JiveGlobals.formatDateTime(lastActiveDate) %>
Gaston Dombiak's avatar
Gaston Dombiak committed
119 120 121 122 123 124 125 126 127
    </td>

    <td width="1%" nowrap align="center" style="border-right:1px #ccc solid;">
        <a href="server-session-summary.jsp?hostname=<%= URLEncoder.encode(host, "UTF-8") %>&close=true"
         title="<fmt:message key="session.row.cliked_kill_session" />"
         onclick="return confirm('<fmt:message key="session.row.confirm_close" />');"
         ><img src="images/delete-16x16.gif" width="16" height="16" border="0"></a>
    </td>
</tr>