diff options
author | Daniel Gultsch <daniel.gultsch@rwth-aachen.de> | 2014-02-20 17:00:50 +0100 |
---|---|---|
committer | Daniel Gultsch <daniel.gultsch@rwth-aachen.de> | 2014-02-20 17:00:50 +0100 |
commit | c82179c0b8728a9c2cd567d4227c60c758a1e682 (patch) | |
tree | b866a099bb79225bf31a6498374f24f757af163e /src/de/gultsch/chat/services/XmppConnectionService.java | |
parent | 94ab61d5c0b060e2aea5caf58ac06864f980956b (diff) |
adding and removing roster items now possible. basic error display on error messages
Diffstat (limited to '')
-rw-r--r-- | src/de/gultsch/chat/services/XmppConnectionService.java | 53 |
1 files changed, 42 insertions, 11 deletions
diff --git a/src/de/gultsch/chat/services/XmppConnectionService.java b/src/de/gultsch/chat/services/XmppConnectionService.java index 7111d94a..2bff2af4 100644 --- a/src/de/gultsch/chat/services/XmppConnectionService.java +++ b/src/de/gultsch/chat/services/XmppConnectionService.java @@ -103,6 +103,8 @@ public class XmppConnectionService extends Service { if (message != null) { notify = (message.getStatus() == Message.STATUS_RECIEVED); } + } else if (packet.getType() == MessagePacket.TYPE_ERROR) { + message = MessageParser.parseError(packet,account,service); } else { Log.d(LOGTAG, "unparsed message " + packet.toString()); } @@ -126,7 +128,9 @@ public class XmppConnectionService extends Service { } Conversation conversation = message.getConversation(); conversation.getMessages().add(message); - databaseBackend.createMessage(message); + if (packet.getType() != MessagePacket.TYPE_ERROR) { + databaseBackend.createMessage(message); + } if (convChangedListener != null) { convChangedListener.onConversationListChanged(); } else { @@ -171,7 +175,7 @@ public class XmppConnectionService extends Service { Contact contact = findContact(account, fromParts[0]); if (contact == null) { // most likely muc, self or roster not synced - // Log.d(LOGTAG,"got presence for non contact "+packet.toString()); + Log.d(LOGTAG,"got presence for non contact "+packet.toString()); return; } String type = packet.getAttribute("type"); @@ -197,7 +201,7 @@ public class XmppConnectionService extends Service { databaseBackend.updateContact(contact); } } - replaceContactInConversation(contact); + replaceContactInConversation(contact.getJid(),contact); } }; @@ -233,21 +237,21 @@ public class XmppConnectionService extends Service { } else { if (subscription.equals("remove")) { databaseBackend.deleteContact(contact); + replaceContactInConversation(contact.getJid(), null); } else { contact.setSubscription(subscription); databaseBackend.updateContact(contact); - replaceContactInConversation(contact); + replaceContactInConversation(contact.getJid(),contact); } } } } } - private void replaceContactInConversation(Contact contact) { + private void replaceContactInConversation(String jid, Contact contact) { List<Conversation> conversations = getConversations(); for (int i = 0; i < conversations.size(); ++i) { - if ((conversations.get(i).getContact() != null) - && (conversations.get(i).getContact().equals(contact))) { + if ((conversations.get(i).getContactJid().equals(jid))) { conversations.get(i).setContact(contact); break; } @@ -458,6 +462,7 @@ public class XmppConnectionService extends Service { List<Contact> contactsToDelete = databaseBackend.getContats(mWhere.toString()); for(Contact contact : contactsToDelete) { databaseBackend.deleteContact(contact); + replaceContactInConversation(contact.getJid(), null); } } mergePhoneContactsWithRoster(new OnPhoneContactsMerged() { @@ -517,10 +522,6 @@ public class XmppConnectionService extends Service { }); } - public void addConversation(Conversation conversation) { - databaseBackend.createConversation(conversation); - } - public List<Conversation> getConversations() { if (this.conversations == null) { Hashtable<String, Account> accountLookupTable = new Hashtable<String, Account>(); @@ -629,6 +630,20 @@ public class XmppConnectionService extends Service { if (accountChangedListener != null) accountChangedListener.onAccountListChangedListener(); } + + public void deleteContact(Contact contact) { + IqPacket iq = new IqPacket(IqPacket.TYPE_SET); + Element query = new Element("query"); + query.setAttribute("xmlns", "jabber:iq:roster"); + Element item = new Element("item"); + item.setAttribute("jid", contact.getJid()); + item.setAttribute("subscription", "remove"); + query.addChild(item); + iq.addChild(query); + contact.getAccount().getXmppConnection().sendIqPacket(iq, null); + replaceContactInConversation(contact.getJid(), null); + databaseBackend.deleteContact(contact); + } public void updateAccount(Account account) { databaseBackend.updateAccount(account); @@ -735,4 +750,20 @@ public class XmppConnectionService extends Service { public void updateContact(Contact contact) { databaseBackend.updateContact(contact); } + + public void createContact(Contact contact) { + IqPacket iq = new IqPacket(IqPacket.TYPE_SET); + Element query = new Element("query"); + query.setAttribute("xmlns", "jabber:iq:roster"); + Element item = new Element("item"); + item.setAttribute("jid", contact.getJid()); + item.setAttribute("name", contact.getJid()); + query.addChild(item); + iq.addChild(query); + Account account = contact.getAccount(); + Log.d(LOGTAG,account.getJid()+": adding "+contact.getJid()+" to roster"); + account.getXmppConnection().sendIqPacket(iq, null); + replaceContactInConversation(contact.getJid(), contact); + databaseBackend.createContact(contact); + } }
\ No newline at end of file |