diff options
author | Daniel Gultsch <daniel@gultsch.de> | 2014-03-07 14:24:33 +0100 |
---|---|---|
committer | Daniel Gultsch <daniel@gultsch.de> | 2014-03-07 14:24:33 +0100 |
commit | 3bb5fcb3ca3586f2c641e0810ba0e019604ad7e4 (patch) | |
tree | 343b247e9a746cca31ed9c358bca2adf6fda309d /src/eu/siacs/conversations/services/XmppConnectionService.java | |
parent | 1cf05fccdb0823a99e0ea33cc51150c7e31f2f1e (diff) |
tls exceptions for untrusted certs
Diffstat (limited to '')
-rw-r--r-- | src/eu/siacs/conversations/services/XmppConnectionService.java | 46 |
1 files changed, 36 insertions, 10 deletions
diff --git a/src/eu/siacs/conversations/services/XmppConnectionService.java b/src/eu/siacs/conversations/services/XmppConnectionService.java index 716b3edc..c6af9d1d 100644 --- a/src/eu/siacs/conversations/services/XmppConnectionService.java +++ b/src/eu/siacs/conversations/services/XmppConnectionService.java @@ -41,6 +41,7 @@ import eu.siacs.conversations.xmpp.OnIqPacketReceived; import eu.siacs.conversations.xmpp.OnMessagePacketReceived; import eu.siacs.conversations.xmpp.OnPresencePacketReceived; import eu.siacs.conversations.xmpp.OnStatusChanged; +import eu.siacs.conversations.xmpp.OnTLSExceptionReceived; import eu.siacs.conversations.xmpp.PresencePacket; import eu.siacs.conversations.xmpp.XmppConnection; import android.app.AlarmManager; @@ -76,6 +77,11 @@ public class XmppConnectionService extends Service { public OnConversationListChangedListener convChangedListener = null; private OnAccountListChangedListener accountChangedListener = null; + private OnTLSExceptionReceived tlsException = null; + + public void setOnTLSExceptionReceivedListener(OnTLSExceptionReceived listener) { + tlsException = listener; + } private Random mRandom = new Random(System.currentTimeMillis()); @@ -169,7 +175,9 @@ public class XmppConnectionService extends Service { @Override public void onStatusChanged(Account account) { + Log.d(LOGTAG,account.getJid()+" status switched to " + account.getStatus()); if (accountChangedListener != null) { + Log.d(LOGTAG,"notifiy ui"); accountChangedListener.onAccountListChangedListener(); } if (account.getStatus() == Account.STATUS_ONLINE) { @@ -452,6 +460,16 @@ public class XmppConnectionService extends Service { connection.setOnPresencePacketReceivedListener(this.presenceListener); connection .setOnUnregisteredIqPacketReceivedListener(this.unknownIqListener); + connection.setOnTLSExceptionReceivedListener(new OnTLSExceptionReceived() { + + @Override + public void onTLSExceptionReceived(String fingerprint, Account account) { + Log.d(LOGTAG,"tls exception arrived in service"); + if (tlsException!=null) { + tlsException.onTLSExceptionReceived(fingerprint,account); + } + } + }); return connection; } @@ -816,16 +834,7 @@ public class XmppConnectionService extends Service { public void updateAccount(Account account) { databaseBackend.updateAccount(account); - if (account.getXmppConnection() != null) { - disconnect(account); - } - if (!account.isOptionSet(Account.OPTION_DISABLED)) { - if (account.getXmppConnection()==null) { - account.setXmppConnection(this.createConnection(account)); - } - Thread thread = new Thread(account.getXmppConnection()); - thread.start(); - } + reconnectAccount(account); if (accountChangedListener != null) accountChangedListener.onAccountListChangedListener(); } @@ -1097,4 +1106,21 @@ public class XmppConnectionService extends Service { } return contact; } + + public void removeOnTLSExceptionReceivedListener() { + this.tlsException = null; + } + + public void reconnectAccount(Account account) { + if (account.getXmppConnection() != null) { + disconnect(account); + } + if (!account.isOptionSet(Account.OPTION_DISABLED)) { + if (account.getXmppConnection()==null) { + account.setXmppConnection(this.createConnection(account)); + } + Thread thread = new Thread(account.getXmppConnection()); + thread.start(); + } + } }
\ No newline at end of file |