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
<%--
- $Revision$
- $Date$
--%>
<%@ page import="org.jivesoftware.util.LocaleUtils,
org.jivesoftware.util.StringUtils,
org.jivesoftware.openfire.session.Session,
org.xmpp.packet.JID,
org.xmpp.packet.Presence"%>
<%@ page import="java.net.URLEncoder"%>
<%--
- This page is meant to be included in other pages. It assumes 2 variables:
- * 'sess', a org.jivesoftware.xmpp.Session object
- * 'count', an int representing the row number we're on.
- * 'current', a boolean which indicates the current row the user is looking (pass in
- false if there is no current row.
- * 'linkURL', a String representing the JSP page to link to
--%>
<% if (current) { %>
<tr class="jive-current">
<% } else { %>
<tr class="jive-<%= (((count % 2) == 0) ? "even" : "odd") %>">
<% } %>
<td width="1%" nowrap><%= count %></td>
<td width="10%" nowrap>
<% String name = sess.getAddress().getNode(); %>
<a href="session-details.jsp?jid=<%= URLEncoder.encode(sess.getAddress().toString(), "UTF-8") %>" title="<fmt:message key="session.row.cliked" />"
><%= ((!sessionManager.isAnonymousRoute(sess.getUsername())) ? JID.unescapeNode(name): "<i>"+LocaleUtils.getLocalizedString("session.details.anonymous")+"</i>") %></a>
</td>
<td width="15%" nowrap>
<%= StringUtils.escapeForXML(sess.getAddress().getResource()) %>
</td>
<td>
<% int _status = sess.getStatus();
if (_status == Session.STATUS_CLOSED) {
%>
<fmt:message key="session.details.close" />
<% } else if (_status == Session.STATUS_CONNECTED) { %>
<fmt:message key="session.details.connect" />
<% } else if (_status == Session.STATUS_STREAMING) { %>
<fmt:message key="session.details.streaming" />
<% } else if (_status == org.jivesoftware.openfire.session.Session.STATUS_AUTHENTICATED) { %>
<fmt:message key="session.details.authenticated" />
<% } else { %>
<fmt:message key="session.details.unknown" />
<% } %>
</td>
<% if (sess.getConnection().isSecure()) { %>
<td width="1%">
<img src="images/lock.gif" width="16" height="16" border="0"
title="<fmt:message key="session.row.cliked_ssl" />">
</td>
<% } else { %>
<td width="1%"><img src="images/blank.gif" width="1" height="1"></td>
<% } %>
<% Presence.Show _show = sess.getPresence().getShow();
String _stat = sess.getPresence().getStatus();
if (_show == Presence.Show.away) {
%>
<td width="1%"
><img src="images/im_away.gif" width="16" height="16" border="0" title="<fmt:message key="session.details.away" />"
></td>
<td width="46%">
<% if (_stat != null) { %>
<%= _stat %>
<% } else { %>
<fmt:message key="session.details.away" />
<% } %>
</td>
<% } else if (_show == Presence.Show.chat) { %>
<td width="1%"
><img src="images/im_free_chat.gif" width="16" height="16" border="0" title="<fmt:message key="session.details.chat_available" />"
></td>
<td width="46%">
<fmt:message key="session.details.chat_available" />
</td>
<% } else if (_show == Presence.Show.dnd) { %>
<td width="1%"
><img src="images/im_dnd.gif" width="16" height="16" border="0" title="<fmt:message key="session.details.not_disturb" />"
></td>
<td width="46%">
<% if (_stat != null) { %>
<%= sess.getPresence().getStatus() %>
<% } else { %>
<fmt:message key="session.details.not_disturb" />
<% } %>
</td>
<% } else if (_show == null) { %>
<td width="1%"
><img src="images/im_available.gif" width="16" height="16" border="0" title="<fmt:message key="session.details.online" />"
></td>
<td width="46%">
<fmt:message key="session.details.online" />
</td>
<% } else if (_show == Presence.Show.xa) { %>
<td width="1%"
><img src="images/im_away.gif" width="16" height="16" border="0" title="<fmt:message key="session.details.extended" />"
></td>
<td width="46%">
<% if (_stat != null) { %>
<%= sess.getPresence().getStatus() %>
<% } else { %>
<fmt:message key="session.details.extended" />
<% } %>
</td>
<% } else { %>
<td colspan="2" width="46%">
<fmt:message key="session.details.unknown" />
</td>
<% } %>
<td width="1%" nowrap>
<%= sess.getPresence().getPriority() %>
</td>
<td width="1%" nowrap>
<%= sess.getConnection().getInetAddress().getHostAddress() %>
</td>
<td width="1%" nowrap align="center" style="border-right:1px #ccc solid;">
<a href="session-summary.jsp?jid=<%= URLEncoder.encode(sess.getAddress().toString(), "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>