2014-10-22 16:38:44 +00:00
|
|
|
package eu.siacs.conversations.parser;
|
|
|
|
|
2014-11-17 19:45:00 +00:00
|
|
|
import android.util.Log;
|
|
|
|
|
|
|
|
import eu.siacs.conversations.Config;
|
2014-10-22 16:38:44 +00:00
|
|
|
import eu.siacs.conversations.entities.Account;
|
|
|
|
import eu.siacs.conversations.entities.Contact;
|
|
|
|
import eu.siacs.conversations.services.XmppConnectionService;
|
|
|
|
import eu.siacs.conversations.xml.Element;
|
|
|
|
import eu.siacs.conversations.xmpp.OnIqPacketReceived;
|
2014-11-05 20:55:47 +00:00
|
|
|
import eu.siacs.conversations.xmpp.jid.InvalidJidException;
|
|
|
|
import eu.siacs.conversations.xmpp.jid.Jid;
|
2014-10-22 16:38:44 +00:00
|
|
|
import eu.siacs.conversations.xmpp.stanzas.IqPacket;
|
|
|
|
|
|
|
|
public class IqParser extends AbstractParser implements OnIqPacketReceived {
|
|
|
|
|
|
|
|
public IqParser(XmppConnectionService service) {
|
|
|
|
super(service);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void rosterItems(Account account, Element query) {
|
|
|
|
String version = query.getAttribute("ver");
|
|
|
|
if (version != null) {
|
|
|
|
account.getRoster().setVersion(version);
|
|
|
|
}
|
|
|
|
for (Element item : query.getChildren()) {
|
|
|
|
if (item.getName().equals("item")) {
|
2014-12-01 09:25:36 +00:00
|
|
|
final Jid jid = item.getAttributeAsJid("jid");
|
|
|
|
if (jid == null) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
String name = item.getAttribute("name");
|
2014-10-22 16:38:44 +00:00
|
|
|
String subscription = item.getAttribute("subscription");
|
|
|
|
Contact contact = account.getRoster().getContact(jid);
|
|
|
|
if (!contact.getOption(Contact.Options.DIRTY_PUSH)) {
|
|
|
|
contact.setServerName(name);
|
2014-11-16 16:21:21 +00:00
|
|
|
contact.parseGroupsFromElement(item);
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
if (subscription != null) {
|
|
|
|
if (subscription.equals("remove")) {
|
|
|
|
contact.resetOption(Contact.Options.IN_ROSTER);
|
|
|
|
contact.resetOption(Contact.Options.DIRTY_DELETE);
|
|
|
|
contact.resetOption(Contact.Options.PREEMPTIVE_GRANT);
|
|
|
|
} else {
|
|
|
|
contact.setOption(Contact.Options.IN_ROSTER);
|
|
|
|
contact.resetOption(Contact.Options.DIRTY_PUSH);
|
|
|
|
contact.parseSubscriptionFromElement(item);
|
|
|
|
}
|
|
|
|
}
|
2014-11-17 20:28:16 +00:00
|
|
|
mXmppConnectionService.getAvatarService().clear(contact);
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
}
|
2014-11-17 20:28:16 +00:00
|
|
|
mXmppConnectionService.updateConversationUi();
|
2014-10-22 16:38:44 +00:00
|
|
|
mXmppConnectionService.updateRosterUi();
|
|
|
|
}
|
|
|
|
|
|
|
|
public String avatarData(IqPacket packet) {
|
|
|
|
Element pubsub = packet.findChild("pubsub",
|
|
|
|
"http://jabber.org/protocol/pubsub");
|
|
|
|
if (pubsub == null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
Element items = pubsub.findChild("items");
|
|
|
|
if (items == null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return super.avatarData(items);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onIqPacketReceived(Account account, IqPacket packet) {
|
|
|
|
if (packet.hasChild("query", "jabber:iq:roster")) {
|
2014-11-17 19:45:00 +00:00
|
|
|
final Jid from = packet.getFrom();
|
|
|
|
if ((from == null) || (from.equals(account.getJid().toBareJid()))) {
|
2014-10-22 16:38:44 +00:00
|
|
|
Element query = packet.findChild("query");
|
|
|
|
this.rosterItems(account, query);
|
|
|
|
}
|
|
|
|
} else {
|
2014-11-17 19:45:00 +00:00
|
|
|
if (packet.getFrom() == null) {
|
|
|
|
Log.d(Config.LOGTAG, account.getJid().toBareJid().toString() + ": received iq with invalid from "+packet.toString());
|
|
|
|
return;
|
|
|
|
} else if (packet.hasChild("open", "http://jabber.org/protocol/ibb")
|
|
|
|
|| packet.hasChild("data", "http://jabber.org/protocol/ibb")) {
|
|
|
|
mXmppConnectionService.getJingleConnectionManager()
|
|
|
|
.deliverIbbPacket(account, packet);
|
|
|
|
} else if (packet.hasChild("query", "http://jabber.org/protocol/disco#info")) {
|
|
|
|
IqPacket response = mXmppConnectionService.getIqGenerator()
|
|
|
|
.discoResponse(packet);
|
2014-10-22 16:38:44 +00:00
|
|
|
account.getXmppConnection().sendIqPacket(response, null);
|
2014-11-17 19:45:00 +00:00
|
|
|
} else if (packet.hasChild("ping", "urn:xmpp:ping")) {
|
|
|
|
IqPacket response = packet.generateRespone(IqPacket.TYPE_RESULT);
|
|
|
|
mXmppConnectionService.sendIqPacket(account, response, null);
|
|
|
|
} else {
|
|
|
|
if ((packet.getType() == IqPacket.TYPE_GET)
|
|
|
|
|| (packet.getType() == IqPacket.TYPE_SET)) {
|
|
|
|
IqPacket response = packet.generateRespone(IqPacket.TYPE_ERROR);
|
|
|
|
Element error = response.addChild("error");
|
|
|
|
error.setAttribute("type", "cancel");
|
|
|
|
error.addChild("feature-not-implemented",
|
|
|
|
"urn:ietf:params:xml:ns:xmpp-stanzas");
|
|
|
|
account.getXmppConnection().sendIqPacket(response, null);
|
|
|
|
}
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|