Simplify roster handling code
Merge result handling code into IqParser Fixes #20
This commit is contained in:
parent
36f1b816a8
commit
e152ed1e07
|
@ -71,20 +71,22 @@ public class IqParser extends AbstractParser implements OnIqPacketReceived {
|
||||||
return super.avatarData(items);
|
return super.avatarData(items);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static boolean fromServer(final Account account, final IqPacket packet) {
|
||||||
|
return packet.getFrom() == null || packet.getFrom().equals(account.getServer()) || packet.getFrom().equals(account.getJid().toBareJid());
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onIqPacketReceived(final Account account, final IqPacket packet) {
|
public void onIqPacketReceived(final Account account, final IqPacket packet) {
|
||||||
if (packet.hasChild("query", "jabber:iq:roster")) {
|
if (packet.hasChild("query", Xmlns.ROSTER) && fromServer(account, packet)) {
|
||||||
final Jid from = packet.getFrom();
|
|
||||||
if ((from == null) || (from.equals(account.getJid().toBareJid()))) {
|
|
||||||
final Element query = packet.findChild("query");
|
final Element query = packet.findChild("query");
|
||||||
this.rosterItems(account, query);
|
// If this is in response to a query for the whole roster:
|
||||||
|
if (packet.getType() == IqPacket.TYPE_RESULT) {
|
||||||
|
account.getRoster().markAllAsNotInRoster();
|
||||||
}
|
}
|
||||||
} else if (packet.hasChild("block", Xmlns.BLOCKING) || packet.hasChild("blocklist", Xmlns.BLOCKING)) {
|
this.rosterItems(account, query);
|
||||||
// Only accept block list changes from the server.
|
} else if ((packet.hasChild("block", Xmlns.BLOCKING) || packet.hasChild("blocklist", Xmlns.BLOCKING)) &&
|
||||||
// The server should probably prevent other people from faking a blocklist push,
|
fromServer(account, packet)) {
|
||||||
// but just in case let's prevent it client side as well.
|
// Block list or block push.
|
||||||
final Jid from = packet.getFrom();
|
|
||||||
if (from == null || from.equals(account.getServer()) || from.equals(account.getJid().toBareJid())) {
|
|
||||||
Log.d(Config.LOGTAG, "Received blocklist update from server");
|
Log.d(Config.LOGTAG, "Received blocklist update from server");
|
||||||
final Element blocklist = packet.findChild("blocklist", Xmlns.BLOCKING);
|
final Element blocklist = packet.findChild("blocklist", Xmlns.BLOCKING);
|
||||||
final Element block = packet.findChild("block", Xmlns.BLOCKING);
|
final Element block = packet.findChild("block", Xmlns.BLOCKING);
|
||||||
|
@ -110,15 +112,10 @@ public class IqParser extends AbstractParser implements OnIqPacketReceived {
|
||||||
}
|
}
|
||||||
// Update the UI
|
// Update the UI
|
||||||
mXmppConnectionService.updateBlocklistUi(OnUpdateBlocklist.Status.BLOCKED);
|
mXmppConnectionService.updateBlocklistUi(OnUpdateBlocklist.Status.BLOCKED);
|
||||||
} else {
|
} else if (packet.hasChild("unblock", Xmlns.BLOCKING) &&
|
||||||
Log.d(Config.LOGTAG, "Received blocklist update from invalid jid: " + from.toString());
|
fromServer(account, packet) && packet.getType() == IqPacket.TYPE_SET) {
|
||||||
}
|
|
||||||
} else if (packet.hasChild("unblock", Xmlns.BLOCKING)) {
|
|
||||||
final Jid from = packet.getFrom();
|
|
||||||
if ((from == null || from.equals(account.getServer()) || from.equals(account.getJid().toBareJid())) &&
|
|
||||||
packet.getType() == IqPacket.TYPE_SET) {
|
|
||||||
Log.d(Config.LOGTAG, "Received unblock update from server");
|
Log.d(Config.LOGTAG, "Received unblock update from server");
|
||||||
final Collection<Element> items = packet.getChildren().get(0).getChildren();
|
final Collection<Element> items = packet.findChild("unblock", Xmlns.BLOCKING).getChildren();
|
||||||
if (items.size() == 0) {
|
if (items.size() == 0) {
|
||||||
// No children to unblock == unblock all
|
// No children to unblock == unblock all
|
||||||
account.getBlocklist().clear();
|
account.getBlocklist().clear();
|
||||||
|
@ -133,19 +130,8 @@ public class IqParser extends AbstractParser implements OnIqPacketReceived {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
account.getBlocklist().removeAll(jids);
|
account.getBlocklist().removeAll(jids);
|
||||||
|
}
|
||||||
mXmppConnectionService.updateBlocklistUi(OnUpdateBlocklist.Status.UNBLOCKED);
|
mXmppConnectionService.updateBlocklistUi(OnUpdateBlocklist.Status.UNBLOCKED);
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if (packet.getType() == IqPacket.TYPE_SET) {
|
|
||||||
Log.d(Config.LOGTAG, "Received unblock update from invalid jid " + from.toString());
|
|
||||||
} else {
|
|
||||||
Log.d(Config.LOGTAG, "Received unblock update with invalid type " + packet.getType());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
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")
|
} else if (packet.hasChild("open", "http://jabber.org/protocol/ibb")
|
||||||
|| packet.hasChild("data", "http://jabber.org/protocol/ibb")) {
|
|| packet.hasChild("data", "http://jabber.org/protocol/ibb")) {
|
||||||
mXmppConnectionService.getJingleConnectionManager()
|
mXmppConnectionService.getJingleConnectionManager()
|
||||||
|
@ -169,6 +155,5 @@ public class IqParser extends AbstractParser implements OnIqPacketReceived {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -74,6 +74,7 @@ import eu.siacs.conversations.utils.ExceptionHelper;
|
||||||
import eu.siacs.conversations.utils.OnPhoneContactsLoadedListener;
|
import eu.siacs.conversations.utils.OnPhoneContactsLoadedListener;
|
||||||
import eu.siacs.conversations.utils.PRNGFixes;
|
import eu.siacs.conversations.utils.PRNGFixes;
|
||||||
import eu.siacs.conversations.utils.PhoneHelper;
|
import eu.siacs.conversations.utils.PhoneHelper;
|
||||||
|
import eu.siacs.conversations.utils.Xmlns;
|
||||||
import eu.siacs.conversations.xml.Element;
|
import eu.siacs.conversations.xml.Element;
|
||||||
import eu.siacs.conversations.xmpp.OnBindListener;
|
import eu.siacs.conversations.xmpp.OnBindListener;
|
||||||
import eu.siacs.conversations.xmpp.OnContactStatusChanged;
|
import eu.siacs.conversations.xmpp.OnContactStatusChanged;
|
||||||
|
@ -483,11 +484,11 @@ public class XmppConnectionService extends Service implements OnPhoneContactsLoa
|
||||||
this.mMemorizingTrustManager = new MemorizingTrustManager(
|
this.mMemorizingTrustManager = new MemorizingTrustManager(
|
||||||
getApplicationContext());
|
getApplicationContext());
|
||||||
|
|
||||||
int maxMemory = (int) (Runtime.getRuntime().maxMemory() / 1024);
|
final int maxMemory = (int) (Runtime.getRuntime().maxMemory() / 1024);
|
||||||
int cacheSize = maxMemory / 8;
|
final int cacheSize = maxMemory / 8;
|
||||||
this.mBitmapCache = new LruCache<String, Bitmap>(cacheSize) {
|
this.mBitmapCache = new LruCache<String, Bitmap>(cacheSize) {
|
||||||
@Override
|
@Override
|
||||||
protected int sizeOf(String key, Bitmap bitmap) {
|
protected int sizeOf(final String key, final Bitmap bitmap) {
|
||||||
return bitmap.getByteCount() / 1024;
|
return bitmap.getByteCount() / 1024;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -495,7 +496,7 @@ public class XmppConnectionService extends Service implements OnPhoneContactsLoa
|
||||||
this.databaseBackend = DatabaseBackend.getInstance(getApplicationContext());
|
this.databaseBackend = DatabaseBackend.getInstance(getApplicationContext());
|
||||||
this.accounts = databaseBackend.getAccounts();
|
this.accounts = databaseBackend.getAccounts();
|
||||||
|
|
||||||
for (Account account : this.accounts) {
|
for (final Account account : this.accounts) {
|
||||||
account.initOtrEngine(this);
|
account.initOtrEngine(this);
|
||||||
this.databaseBackend.readRoster(account.getRoster());
|
this.databaseBackend.readRoster(account.getRoster());
|
||||||
}
|
}
|
||||||
|
@ -521,7 +522,7 @@ public class XmppConnectionService extends Service implements OnPhoneContactsLoa
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onTaskRemoved(Intent rootIntent) {
|
public void onTaskRemoved(final Intent rootIntent) {
|
||||||
super.onTaskRemoved(rootIntent);
|
super.onTaskRemoved(rootIntent);
|
||||||
if (!getPreferences().getBoolean("keep_foreground_service",false)) {
|
if (!getPreferences().getBoolean("keep_foreground_service",false)) {
|
||||||
this.logoutAndSave();
|
this.logoutAndSave();
|
||||||
|
@ -529,7 +530,7 @@ public class XmppConnectionService extends Service implements OnPhoneContactsLoa
|
||||||
}
|
}
|
||||||
|
|
||||||
private void logoutAndSave() {
|
private void logoutAndSave() {
|
||||||
for (Account account : accounts) {
|
for (final Account account : accounts) {
|
||||||
databaseBackend.writeRoster(account.getRoster());
|
databaseBackend.writeRoster(account.getRoster());
|
||||||
if (account.getXmppConnection() != null) {
|
if (account.getXmppConnection() != null) {
|
||||||
disconnect(account, false);
|
disconnect(account, false);
|
||||||
|
@ -791,21 +792,9 @@ public class XmppConnectionService extends Service implements OnPhoneContactsLoa
|
||||||
} else {
|
} else {
|
||||||
Log.d(Config.LOGTAG, account.getJid().toBareJid() + ": fetching roster");
|
Log.d(Config.LOGTAG, account.getJid().toBareJid() + ": fetching roster");
|
||||||
}
|
}
|
||||||
iqPacket.query("jabber:iq:roster").setAttribute("ver",
|
iqPacket.query(Xmlns.ROSTER).setAttribute("ver",
|
||||||
account.getRosterVersion());
|
account.getRosterVersion());
|
||||||
account.getXmppConnection().sendIqPacket(iqPacket,
|
account.getXmppConnection().sendIqPacket(iqPacket, mIqParser);
|
||||||
new OnIqPacketReceived() {
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onIqPacketReceived(final Account account,
|
|
||||||
final IqPacket packet) {
|
|
||||||
final Element query = packet.findChild("query");
|
|
||||||
if (query != null) {
|
|
||||||
account.getRoster().markAllAsNotInRoster();
|
|
||||||
mIqParser.rosterItems(account, query);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void fetchBookmarks(final Account account) {
|
public void fetchBookmarks(final Account account) {
|
||||||
|
@ -1433,7 +1422,7 @@ public class XmppConnectionService extends Service implements OnPhoneContactsLoa
|
||||||
}
|
}
|
||||||
|
|
||||||
public void createAdhocConference(final Account account, final Iterable<Jid> jids, final UiCallback<Conversation> callback) {
|
public void createAdhocConference(final Account account, final Iterable<Jid> jids, final UiCallback<Conversation> callback) {
|
||||||
Log.d(Config.LOGTAG,account.getJid().toBareJid().toString()+": creating adhoc conference with "+ jids.toString());
|
Log.d(Config.LOGTAG, account.getJid().toBareJid().toString() + ": creating adhoc conference with " + jids.toString());
|
||||||
if (account.getStatus() == Account.State.ONLINE) {
|
if (account.getStatus() == Account.State.ONLINE) {
|
||||||
try {
|
try {
|
||||||
String server = findConferenceServer(account);
|
String server = findConferenceServer(account);
|
||||||
|
@ -1637,17 +1626,17 @@ public class XmppConnectionService extends Service implements OnPhoneContactsLoa
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void pushContactToServer(Contact contact) {
|
public void pushContactToServer(final Contact contact) {
|
||||||
contact.resetOption(Contact.Options.DIRTY_DELETE);
|
contact.resetOption(Contact.Options.DIRTY_DELETE);
|
||||||
contact.setOption(Contact.Options.DIRTY_PUSH);
|
contact.setOption(Contact.Options.DIRTY_PUSH);
|
||||||
Account account = contact.getAccount();
|
final Account account = contact.getAccount();
|
||||||
if (account.getStatus() == Account.State.ONLINE) {
|
if (account.getStatus() == Account.State.ONLINE) {
|
||||||
boolean ask = contact.getOption(Contact.Options.ASKING);
|
final boolean ask = contact.getOption(Contact.Options.ASKING);
|
||||||
boolean sendUpdates = contact
|
final boolean sendUpdates = contact
|
||||||
.getOption(Contact.Options.PENDING_SUBSCRIPTION_REQUEST)
|
.getOption(Contact.Options.PENDING_SUBSCRIPTION_REQUEST)
|
||||||
&& contact.getOption(Contact.Options.PREEMPTIVE_GRANT);
|
&& contact.getOption(Contact.Options.PREEMPTIVE_GRANT);
|
||||||
IqPacket iq = new IqPacket(IqPacket.TYPE_SET);
|
final IqPacket iq = new IqPacket(IqPacket.TYPE_SET);
|
||||||
iq.query("jabber:iq:roster").addChild(contact.asElement());
|
iq.query(Xmlns.ROSTER).addChild(contact.asElement());
|
||||||
account.getXmppConnection().sendIqPacket(iq, null);
|
account.getXmppConnection().sendIqPacket(iq, null);
|
||||||
if (sendUpdates) {
|
if (sendUpdates) {
|
||||||
sendPresencePacket(account,
|
sendPresencePacket(account,
|
||||||
|
@ -1660,7 +1649,8 @@ public class XmppConnectionService extends Service implements OnPhoneContactsLoa
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void publishAvatar(Account account, Uri image,
|
public void publishAvatar(final Account account,
|
||||||
|
final Uri image,
|
||||||
final UiCallback<Avatar> callback) {
|
final UiCallback<Avatar> callback) {
|
||||||
final Bitmap.CompressFormat format = Config.AVATAR_FORMAT;
|
final Bitmap.CompressFormat format = Config.AVATAR_FORMAT;
|
||||||
final int size = Config.AVATAR_SIZE;
|
final int size = Config.AVATAR_SIZE;
|
||||||
|
@ -1680,13 +1670,13 @@ public class XmppConnectionService extends Service implements OnPhoneContactsLoa
|
||||||
callback.error(R.string.error_saving_avatar, avatar);
|
callback.error(R.string.error_saving_avatar, avatar);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
IqPacket packet = this.mIqGenerator.publishAvatar(avatar);
|
final IqPacket packet = this.mIqGenerator.publishAvatar(avatar);
|
||||||
this.sendIqPacket(account, packet, new OnIqPacketReceived() {
|
this.sendIqPacket(account, packet, new OnIqPacketReceived() {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onIqPacketReceived(Account account, IqPacket result) {
|
public void onIqPacketReceived(Account account, IqPacket result) {
|
||||||
if (result.getType() == IqPacket.TYPE_RESULT) {
|
if (result.getType() == IqPacket.TYPE_RESULT) {
|
||||||
IqPacket packet = XmppConnectionService.this.mIqGenerator
|
final IqPacket packet = XmppConnectionService.this.mIqGenerator
|
||||||
.publishAvatarMetadata(avatar);
|
.publishAvatarMetadata(avatar);
|
||||||
sendIqPacket(account, packet, new OnIqPacketReceived() {
|
sendIqPacket(account, packet, new OnIqPacketReceived() {
|
||||||
|
|
||||||
|
@ -1819,7 +1809,7 @@ public class XmppConnectionService extends Service implements OnPhoneContactsLoa
|
||||||
Account account = contact.getAccount();
|
Account account = contact.getAccount();
|
||||||
if (account.getStatus() == Account.State.ONLINE) {
|
if (account.getStatus() == Account.State.ONLINE) {
|
||||||
IqPacket iq = new IqPacket(IqPacket.TYPE_SET);
|
IqPacket iq = new IqPacket(IqPacket.TYPE_SET);
|
||||||
Element item = iq.query("jabber:iq:roster").addChild("item");
|
Element item = iq.query(Xmlns.ROSTER).addChild("item");
|
||||||
item.setAttribute("jid", contact.getJid().toString());
|
item.setAttribute("jid", contact.getJid().toString());
|
||||||
item.setAttribute("subscription", "remove");
|
item.setAttribute("subscription", "remove");
|
||||||
account.getXmppConnection().sendIqPacket(iq, null);
|
account.getXmppConnection().sendIqPacket(iq, null);
|
||||||
|
@ -2027,12 +2017,12 @@ public class XmppConnectionService extends Service implements OnPhoneContactsLoa
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<String> getKnownHosts() {
|
public List<String> getKnownHosts() {
|
||||||
List<String> hosts = new ArrayList<>();
|
final List<String> hosts = new ArrayList<>();
|
||||||
for (Account account : getAccounts()) {
|
for (final Account account : getAccounts()) {
|
||||||
if (!hosts.contains(account.getServer().toString())) {
|
if (!hosts.contains(account.getServer().toString())) {
|
||||||
hosts.add(account.getServer().toString());
|
hosts.add(account.getServer().toString());
|
||||||
}
|
}
|
||||||
for (Contact contact : account.getRoster().getContacts()) {
|
for (final Contact contact : account.getRoster().getContacts()) {
|
||||||
if (contact.showInRoster()) {
|
if (contact.showInRoster()) {
|
||||||
final String server = contact.getServer().toString();
|
final String server = contact.getServer().toString();
|
||||||
if (server != null && !hosts.contains(server)) {
|
if (server != null && !hosts.contains(server)) {
|
||||||
|
@ -2045,10 +2035,10 @@ public class XmppConnectionService extends Service implements OnPhoneContactsLoa
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<String> getKnownConferenceHosts() {
|
public List<String> getKnownConferenceHosts() {
|
||||||
ArrayList<String> mucServers = new ArrayList<>();
|
final ArrayList<String> mucServers = new ArrayList<>();
|
||||||
for (Account account : accounts) {
|
for (final Account account : accounts) {
|
||||||
if (account.getXmppConnection() != null) {
|
if (account.getXmppConnection() != null) {
|
||||||
String server = account.getXmppConnection().getMucServer();
|
final String server = account.getXmppConnection().getMucServer();
|
||||||
if (server != null && !mucServers.contains(server)) {
|
if (server != null && !mucServers.contains(server)) {
|
||||||
mucServers.add(server);
|
mucServers.add(server);
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,4 +2,5 @@ package eu.siacs.conversations.utils;
|
||||||
|
|
||||||
public final class Xmlns {
|
public final class Xmlns {
|
||||||
public static final String BLOCKING = "urn:xmpp:blocking";
|
public static final String BLOCKING = "urn:xmpp:blocking";
|
||||||
|
public static final String ROSTER = "jabber:iq:roster";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue