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
265
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
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
<%--
- $RCSfile$
- $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.*,
org.jivesoftware.messenger.*,
java.text.DateFormat,
java.text.NumberFormat,
org.jivesoftware.admin.*,
org.jivesoftware.messenger.user.User,
org.xmpp.packet.JID,
org.xmpp.packet.Presence,
java.net.URLEncoder"
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" %>
<jsp:useBean id="webManager" class="org.jivesoftware.util.WebManager" />
<% // 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 = webManager.getSessionManager();
JID address = new JID(jid);
ClientSession currentSess = sessionManager.getSession(address);
boolean isAnonymous = address.getNode() == null || "".equals(address.getNode());
// Get a presence manager
PresenceManager presenceManager = webManager.getPresenceManager();
// Get user object
User user = null;
if (!isAnonymous) {
user = webManager.getUserManager().getUser(address.getNode());
}
// Handle a "message" click:
if (request.getParameter("message") != null) {
response.sendRedirect("user-message.jsp?username=" + URLEncoder.encode(user.getUsername(), "UTF-8"));
return;
}
// See if there are multiple sessions for this user:
Collection<ClientSession> sessions = null;
int sessionCount = sessionManager.getSessionCount(address.getNode());
if (!isAnonymous && sessionCount > 1) {
sessions = sessionManager.getSessions(address.getNode());
}
// Number dateFormatter for all numbers on this page:
NumberFormat numFormatter = NumberFormat.getNumberInstance();
%>
<jsp:useBean id="pageinfo" scope="request" class="org.jivesoftware.admin.AdminPageBean" />
<% // Title of this page and breadcrumbs
String title = LocaleUtils.getLocalizedString("session.details.title");
pageinfo.setTitle(title);
pageinfo.getBreadcrumbs().add(new AdminPageBean.Breadcrumb(LocaleUtils.getLocalizedString("global.main"), "index.jsp"));
pageinfo.getBreadcrumbs().add(new AdminPageBean.Breadcrumb(title, "session-details.jsp"));
pageinfo.setPageID("session-summary");
%>
<jsp:include page="top.jsp" flush="true" />
<jsp:include page="title.jsp" flush="true" />
<p>
<fmt:message key="session.details.info">
<fmt:param value="<%= "<b>"+address.toString()+"</b>" %>" />
<fmt:param value="<%= address.getNode() == null ? "" : "<b>"+address.getNode()+"</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="session.details.title" />
</th>
</tr>
</thead>
<tbody>
<tr>
<td class="c1">
<fmt:message key="session.details.session_id" />
</td>
<td>
<%= address.toString() %>
</td>
</tr>
<tr>
<td class="c1">
<fmt:message key="session.details.username" />
</td>
<td>
<% String n = address.getNode(); %>
<% if (n == null || "".equals(n)) { %>
<i> <fmt:message key="session.details.anonymous" /> </i> - <%= address.getResource()==null?"":address.getResource() %>
<% } else { %>
<a href="user-properties.jsp?username=<%= n %>"><%= n %></a>
- <%= address.getResource()==null?"":address.getResource() %>
<% } %>
</td>
</tr>
<tr>
<td class="c1">
<fmt:message key="session.details.status" />:
</td>
<td>
<%
int status = currentSess.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 == Session.STATUS_AUTHENTICATED) {
%>
<fmt:message key="session.details.authenticated" />
<%
} else {
%>
<fmt:message key="session.details.unknown" />
<%
}
%>
</td>
</tr>
<tr>
<td class="c1">
<fmt:message key="session.details.presence" />:
</td>
<td>
<%
Presence.Show show = currentSess.getPresence().getShow();
String statusTxt = currentSess.getPresence().getStatus();
if (statusTxt != null) {
statusTxt = " -- " + statusTxt;
}
else {
statusTxt = "";
}
if (show == Presence.Show.away) {
%>
<img src="images/bullet-yellow-14x14.gif" width="14" height="14" border="0" title="Away">
<fmt:message key="session.details.away" /> <%= statusTxt %>
<%
} else if (show == Presence.Show.chat) {
%>
<img src="images/bullet-green-14x14.gif" width="14" height="14" border="0" title="Available to Chat">
<fmt:message key="session.details.chat_available" /> <%= statusTxt %>
<%
} else if (show == Presence.Show.dnd) {
%>
<img src="images/bullet-red-14x14.gif" width="14" height="14" border="0" title="Do not Disturb">
<fmt:message key="session.details.not_disturb" /> <%= statusTxt %>
<%
} else if (show == null) {
%>
<img src="images/bullet-green-14x14.gif" width="14" height="14" border="0" title="Online">
<fmt:message key="session.details.online" /> <%= statusTxt %>
<%
} else if (show == Presence.Show.xa) {
%>
<img src="images/bullet-yellow-14x14.gif" width="14" height="14" border="0" title="Extended Away">
<fmt:message key="session.details.extended" /> <%= statusTxt %>
<%
} else {
%>
<fmt:message key="session.details.unknown" />
<%
}
%>
</td>
</tr>
<tr>
<td class="c1">
<fmt:message key="session.details.session_created" />
</td>
<td>
<%= JiveGlobals.formatDateTime(currentSess.getCreationDate()) %>
</td>
</tr>
<tr>
<td class="c1">
<fmt:message key="session.details.last_active" />
</td>
<td>
<%= JiveGlobals.formatDateTime(currentSess.getLastActiveDate()) %>
</td>
</tr>
<tr>
<td class="c1">
<fmt:message key="session.details.statistics" />
</td>
<td>
<fmt:message key="session.details.received" />
<%= numFormatter.format(currentSess.getNumClientPackets()) %>/<%= numFormatter.format(currentSess.getNumServerPackets()) %>
</td>
</tr>
<tr>
<td class="c1">
<fmt:message key="session.details.hostname" />
</td>
<td>
<%= currentSess.getConnection().getInetAddress().getHostAddress() %>
/
<%= currentSess.getConnection().getInetAddress().getHostName() %>
</td>
</tr>
</tbody>
</table>
</div>
<% // Show a list of multiple user sessions if there is more than 1 session:
if (sessionCount > 1) {
%>
<p>
<b><fmt:message key="session.details.multiple_session" /></b>
</p>
<div class="jive-table">
<table cellpadding="3" cellspacing="1" border="0" width="100%">
<tr>
<th> </th>
<th><fmt:message key="session.details.name" /></th>
<th><fmt:message key="session.details.resource" /></th>
<th><fmt:message key="session.details.status" /></th>
<th nowrap colspan="2"><fmt:message key="session.details.if_presence" /></th>
<th nowrap><fmt:message key="session.details.clientip" /></th>
<th nowrap><fmt:message key="session.details.close_connect" /></th>
</tr>
<% int count = 0;
String linkURL = "session-details.jsp";
for (ClientSession sess : sessions) {
count++;
boolean current = sess.getAddress().equals(address);
%>
<%@ include file="session-row.jspf" %>
<% } %>
</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%">
= <fmt:message key="session.details.session_detail" />
</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="<fmt:message key="session.details.back_button" />">
</center>
</form>
<jsp:include page="bottom.jsp" flush="true" />