📄 iqlastactivityhandler.java
字号:
package org.jivesoftware.wildfire.handler;
import org.dom4j.Element;
import org.jivesoftware.wildfire.IQHandlerInfo;
import org.jivesoftware.wildfire.PresenceManager;
import org.jivesoftware.wildfire.XMPPServer;
import org.jivesoftware.wildfire.auth.UnauthorizedException;
import org.jivesoftware.wildfire.disco.ServerFeaturesProvider;
import org.jivesoftware.wildfire.roster.RosterItem;
import org.jivesoftware.wildfire.roster.RosterManager;
import org.jivesoftware.wildfire.user.User;
import org.jivesoftware.wildfire.user.UserManager;
import org.jivesoftware.wildfire.user.UserNotFoundException;
import org.xmpp.packet.IQ;
import org.xmpp.packet.PacketError;
import java.util.ArrayList;
import java.util.Iterator;
/**
* Implements the TYPE_IQ jabber:iq:last protocol (last activity). Allows users to find out
* the number of seconds another user has been offline. This information is only available to
* those users that already subscribed to the users presence. Otherwhise, a <tt>forbidden</tt>
* error will be returned.
*
* @author Gaston Dombiak
*/
public class IQLastActivityHandler extends IQHandler implements ServerFeaturesProvider {
private IQHandlerInfo info;
private PresenceManager presenceManager;
private RosterManager rosterManager;
public IQLastActivityHandler() {
super("XMPP Last Activity Handler");
info = new IQHandlerInfo("query", "jabber:iq:last");
}
public IQ handleIQ(IQ packet) throws UnauthorizedException {
IQ reply = IQ.createResultIQ(packet);
Element lastActivity = reply.setChildElement("query", "jabber:iq:last");
String sender = packet.getFrom().getNode();
String username = packet.getTo() == null ? null : packet.getTo().getNode();
// Check if any of the usernames is null
if (sender == null || username == null) {
reply.setError(PacketError.Condition.forbidden);
return reply;
}
try {
RosterItem item = rosterManager.getRoster(username).getRosterItem(packet.getFrom());
// Check that the user requesting this information is subscribed to the user's presence
if (item.getSubStatus() == RosterItem.SUB_FROM ||
item.getSubStatus() == RosterItem.SUB_BOTH) {
if (sessionManager.getSessions(username).isEmpty()) {
User user = UserManager.getInstance().getUser(username);
// The user is offline so answer the user's "last available time and the
// status message of the last unavailable presence received from the user"
long lastActivityTime = presenceManager.getLastActivity(user);
if (lastActivityTime > -1) {
// Convert it to seconds
lastActivityTime = lastActivityTime / 1000;
}
lastActivity.addAttribute("seconds", String.valueOf(lastActivityTime));
String lastStatus = presenceManager.getLastPresenceStatus(user);
if (lastStatus != null && lastStatus.length() > 0) {
lastActivity.setText(lastStatus);
}
}
else {
// The user is online so answer seconds=0
lastActivity.addAttribute("seconds", "0");
}
}
else {
reply.setError(PacketError.Condition.forbidden);
}
}
catch (UserNotFoundException e) {
reply.setError(PacketError.Condition.forbidden);
}
return reply;
}
public IQHandlerInfo getInfo() {
return info;
}
public Iterator<String> getFeatures() {
ArrayList<String> features = new ArrayList<String>();
features.add("jabber:iq:last");
return features.iterator();
}
public void initialize(XMPPServer server) {
super.initialize(server);
presenceManager = server.getPresenceManager();
rosterManager = server.getRosterManager();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -