2014-02-28 17:46:01 +00:00
|
|
|
package eu.siacs.conversations.xmpp;
|
2014-01-30 15:42:35 +00:00
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.InputStream;
|
|
|
|
import java.io.OutputStream;
|
|
|
|
import java.math.BigInteger;
|
|
|
|
import java.net.Socket;
|
|
|
|
import java.net.UnknownHostException;
|
|
|
|
import java.security.SecureRandom;
|
2014-02-09 13:10:52 +00:00
|
|
|
import java.util.HashSet;
|
2014-02-01 00:25:56 +00:00
|
|
|
import java.util.Hashtable;
|
2014-02-09 13:10:52 +00:00
|
|
|
import java.util.List;
|
2014-01-30 15:42:35 +00:00
|
|
|
|
|
|
|
import javax.net.ssl.SSLSocket;
|
|
|
|
import javax.net.ssl.SSLSocketFactory;
|
|
|
|
|
|
|
|
import org.xmlpull.v1.XmlPullParserException;
|
|
|
|
|
2014-02-07 05:52:09 +00:00
|
|
|
import android.os.Bundle;
|
2014-01-30 15:42:35 +00:00
|
|
|
import android.os.PowerManager;
|
|
|
|
import android.util.Log;
|
2014-02-28 17:46:01 +00:00
|
|
|
import eu.siacs.conversations.entities.Account;
|
|
|
|
import eu.siacs.conversations.utils.DNSHelper;
|
|
|
|
import eu.siacs.conversations.utils.SASL;
|
|
|
|
import eu.siacs.conversations.xml.Element;
|
|
|
|
import eu.siacs.conversations.xml.Tag;
|
|
|
|
import eu.siacs.conversations.xml.TagWriter;
|
|
|
|
import eu.siacs.conversations.xml.XmlReader;
|
2014-01-30 15:42:35 +00:00
|
|
|
|
|
|
|
public class XmppConnection implements Runnable {
|
|
|
|
|
|
|
|
protected Account account;
|
|
|
|
private static final String LOGTAG = "xmppService";
|
|
|
|
|
|
|
|
private PowerManager.WakeLock wakeLock;
|
|
|
|
|
|
|
|
private SecureRandom random = new SecureRandom();
|
2014-02-09 13:10:52 +00:00
|
|
|
|
2014-01-30 15:42:35 +00:00
|
|
|
private Socket socket;
|
|
|
|
private XmlReader tagReader;
|
|
|
|
private TagWriter tagWriter;
|
|
|
|
|
2014-02-01 00:25:56 +00:00
|
|
|
private boolean isTlsEncrypted = false;
|
2014-01-30 15:42:35 +00:00
|
|
|
private boolean isAuthenticated = false;
|
2014-02-09 13:10:52 +00:00
|
|
|
// private boolean shouldUseTLS = false;
|
2014-02-04 14:09:50 +00:00
|
|
|
private boolean shouldConnect = true;
|
2014-02-01 00:25:56 +00:00
|
|
|
private boolean shouldBind = true;
|
|
|
|
private boolean shouldAuthenticate = true;
|
|
|
|
private Element streamFeatures;
|
2014-02-09 13:10:52 +00:00
|
|
|
private HashSet<String> discoFeatures = new HashSet<String>();
|
|
|
|
|
2014-01-30 23:33:01 +00:00
|
|
|
private static final int PACKET_IQ = 0;
|
|
|
|
private static final int PACKET_MESSAGE = 1;
|
|
|
|
private static final int PACKET_PRESENCE = 2;
|
2014-02-09 13:10:52 +00:00
|
|
|
|
2014-03-03 04:01:02 +00:00
|
|
|
private Hashtable<String, PacketReceived> packetCallbacks = new Hashtable<String, PacketReceived>();
|
2014-02-01 14:07:20 +00:00
|
|
|
private OnPresencePacketReceived presenceListener = null;
|
|
|
|
private OnIqPacketReceived unregisteredIqListener = null;
|
|
|
|
private OnMessagePacketReceived messageListener = null;
|
2014-02-04 14:09:50 +00:00
|
|
|
private OnStatusChanged statusListener = null;
|
2014-01-30 15:42:35 +00:00
|
|
|
|
|
|
|
public XmppConnection(Account account, PowerManager pm) {
|
|
|
|
this.account = account;
|
|
|
|
wakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
|
|
|
|
"XmppConnection");
|
|
|
|
tagReader = new XmlReader(wakeLock);
|
|
|
|
tagWriter = new TagWriter();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void connect() {
|
|
|
|
try {
|
2014-02-07 05:52:09 +00:00
|
|
|
Bundle namePort = DNSHelper.getSRVRecord(account.getServer());
|
|
|
|
String srvRecordServer = namePort.getString("name");
|
|
|
|
int srvRecordPort = namePort.getInt("port");
|
2014-02-09 13:10:52 +00:00
|
|
|
if (srvRecordServer != null) {
|
|
|
|
Log.d(LOGTAG, account.getJid() + ": using values from dns "
|
|
|
|
+ srvRecordServer + ":" + srvRecordPort);
|
|
|
|
socket = new Socket(srvRecordServer, srvRecordPort);
|
2014-02-07 05:52:09 +00:00
|
|
|
} else {
|
|
|
|
socket = new Socket(account.getServer(), 5222);
|
|
|
|
}
|
2014-01-30 15:42:35 +00:00
|
|
|
OutputStream out = socket.getOutputStream();
|
|
|
|
tagWriter.setOutputStream(out);
|
|
|
|
InputStream in = socket.getInputStream();
|
|
|
|
tagReader.setInputStream(in);
|
|
|
|
tagWriter.beginDocument();
|
|
|
|
sendStartStream();
|
|
|
|
Tag nextTag;
|
|
|
|
while ((nextTag = tagReader.readTag()) != null) {
|
|
|
|
if (nextTag.isStart("stream")) {
|
|
|
|
processStream(nextTag);
|
2014-02-04 14:09:50 +00:00
|
|
|
break;
|
2014-01-30 15:42:35 +00:00
|
|
|
} else {
|
|
|
|
Log.d(LOGTAG, "found unexpected tag: " + nextTag.getName());
|
2014-02-01 00:25:56 +00:00
|
|
|
return;
|
2014-01-30 15:42:35 +00:00
|
|
|
}
|
|
|
|
}
|
2014-02-04 14:09:50 +00:00
|
|
|
if (socket.isConnected()) {
|
|
|
|
socket.close();
|
|
|
|
}
|
2014-02-01 00:25:56 +00:00
|
|
|
} catch (UnknownHostException e) {
|
2014-02-04 14:09:50 +00:00
|
|
|
account.setStatus(Account.STATUS_SERVER_NOT_FOUND);
|
2014-02-09 13:10:52 +00:00
|
|
|
if (statusListener != null) {
|
2014-02-04 21:58:29 +00:00
|
|
|
statusListener.onStatusChanged(account);
|
|
|
|
}
|
2014-02-01 00:25:56 +00:00
|
|
|
return;
|
2014-01-30 15:42:35 +00:00
|
|
|
} catch (IOException e) {
|
2014-02-09 13:10:52 +00:00
|
|
|
Log.d(LOGTAG, "bla " + e.getMessage());
|
2014-02-04 14:09:50 +00:00
|
|
|
if (shouldConnect) {
|
2014-02-09 13:10:52 +00:00
|
|
|
Log.d(LOGTAG, account.getJid() + ": connection lost");
|
2014-02-04 14:09:50 +00:00
|
|
|
account.setStatus(Account.STATUS_OFFLINE);
|
2014-02-09 13:10:52 +00:00
|
|
|
if (statusListener != null) {
|
2014-02-04 14:09:50 +00:00
|
|
|
statusListener.onStatusChanged(account);
|
|
|
|
}
|
|
|
|
}
|
2014-02-01 00:25:56 +00:00
|
|
|
} catch (XmlPullParserException e) {
|
2014-02-09 13:10:52 +00:00
|
|
|
Log.d(LOGTAG, "xml exception " + e.getMessage());
|
2014-02-01 00:25:56 +00:00
|
|
|
return;
|
|
|
|
}
|
2014-02-09 13:10:52 +00:00
|
|
|
|
2014-02-01 00:25:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void run() {
|
2014-02-04 14:09:50 +00:00
|
|
|
shouldConnect = true;
|
2014-02-09 13:10:52 +00:00
|
|
|
while (shouldConnect) {
|
2014-02-01 00:25:56 +00:00
|
|
|
connect();
|
2014-02-02 15:05:15 +00:00
|
|
|
try {
|
2014-02-04 14:09:50 +00:00
|
|
|
if (shouldConnect) {
|
|
|
|
Thread.sleep(30000);
|
|
|
|
}
|
2014-02-02 15:05:15 +00:00
|
|
|
} catch (InterruptedException e) {
|
|
|
|
// TODO Auto-generated catch block
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
2014-01-30 15:42:35 +00:00
|
|
|
}
|
2014-02-09 13:10:52 +00:00
|
|
|
Log.d(LOGTAG, "end run");
|
2014-01-30 15:42:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void processStream(Tag currentTag) throws XmlPullParserException,
|
|
|
|
IOException {
|
2014-02-04 14:09:50 +00:00
|
|
|
Tag nextTag = tagReader.readTag();
|
|
|
|
while ((nextTag != null) && (!nextTag.isEnd("stream"))) {
|
2014-01-30 15:42:35 +00:00
|
|
|
if (nextTag.isStart("error")) {
|
|
|
|
processStreamError(nextTag);
|
|
|
|
} else if (nextTag.isStart("features")) {
|
|
|
|
processStreamFeatures(nextTag);
|
|
|
|
} else if (nextTag.isStart("proceed")) {
|
|
|
|
switchOverToTls(nextTag);
|
|
|
|
} else if (nextTag.isStart("success")) {
|
|
|
|
isAuthenticated = true;
|
2014-02-09 13:10:52 +00:00
|
|
|
Log.d(LOGTAG, account.getJid()
|
|
|
|
+ ": read success tag in stream. reset again");
|
2014-01-30 15:42:35 +00:00
|
|
|
tagReader.readTag();
|
|
|
|
tagReader.reset();
|
|
|
|
sendStartStream();
|
|
|
|
processStream(tagReader.readTag());
|
2014-02-04 14:09:50 +00:00
|
|
|
break;
|
2014-02-09 13:10:52 +00:00
|
|
|
} else if (nextTag.isStart("failure")) {
|
2014-02-04 14:09:50 +00:00
|
|
|
Element failure = tagReader.readElement(nextTag);
|
2014-02-09 13:10:52 +00:00
|
|
|
Log.d(LOGTAG, "read failure element" + failure.toString());
|
2014-02-04 14:09:50 +00:00
|
|
|
account.setStatus(Account.STATUS_UNAUTHORIZED);
|
2014-02-09 13:10:52 +00:00
|
|
|
if (statusListener != null) {
|
2014-02-04 21:26:46 +00:00
|
|
|
statusListener.onStatusChanged(account);
|
|
|
|
}
|
2014-02-04 14:09:50 +00:00
|
|
|
tagWriter.writeTag(Tag.end("stream"));
|
2014-01-30 15:42:35 +00:00
|
|
|
} else if (nextTag.isStart("iq")) {
|
2014-02-01 14:07:20 +00:00
|
|
|
processIq(nextTag);
|
2014-01-30 23:33:01 +00:00
|
|
|
} else if (nextTag.isStart("message")) {
|
2014-02-01 14:07:20 +00:00
|
|
|
processMessage(nextTag);
|
2014-01-30 23:33:01 +00:00
|
|
|
} else if (nextTag.isStart("presence")) {
|
2014-02-01 14:07:20 +00:00
|
|
|
processPresence(nextTag);
|
2014-01-30 15:42:35 +00:00
|
|
|
} else {
|
|
|
|
Log.d(LOGTAG, "found unexpected tag: " + nextTag.getName()
|
|
|
|
+ " as child of " + currentTag.getName());
|
|
|
|
}
|
2014-02-04 14:09:50 +00:00
|
|
|
nextTag = tagReader.readTag();
|
|
|
|
}
|
|
|
|
if (account.getStatus() == Account.STATUS_ONLINE) {
|
|
|
|
account.setStatus(Account.STATUS_OFFLINE);
|
2014-02-09 13:10:52 +00:00
|
|
|
if (statusListener != null) {
|
2014-02-04 14:09:50 +00:00
|
|
|
statusListener.onStatusChanged(account);
|
|
|
|
}
|
2014-01-30 15:42:35 +00:00
|
|
|
}
|
|
|
|
}
|
2014-02-09 13:10:52 +00:00
|
|
|
|
|
|
|
private Element processPacket(Tag currentTag, int packetType)
|
|
|
|
throws XmlPullParserException, IOException {
|
2014-01-30 23:33:01 +00:00
|
|
|
Element element;
|
|
|
|
switch (packetType) {
|
|
|
|
case PACKET_IQ:
|
|
|
|
element = new IqPacket();
|
|
|
|
break;
|
|
|
|
case PACKET_MESSAGE:
|
|
|
|
element = new MessagePacket();
|
|
|
|
break;
|
|
|
|
case PACKET_PRESENCE:
|
|
|
|
element = new PresencePacket();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return null;
|
2014-01-30 15:42:35 +00:00
|
|
|
}
|
2014-01-30 23:33:01 +00:00
|
|
|
element.setAttributes(currentTag.getAttributes());
|
2014-01-30 15:42:35 +00:00
|
|
|
Tag nextTag = tagReader.readTag();
|
2014-02-09 13:10:52 +00:00
|
|
|
while (!nextTag.isEnd(element.getName())) {
|
2014-01-30 23:33:01 +00:00
|
|
|
if (!nextTag.isNo()) {
|
|
|
|
Element child = tagReader.readElement(nextTag);
|
|
|
|
element.addChild(child);
|
|
|
|
}
|
2014-01-30 15:42:35 +00:00
|
|
|
nextTag = tagReader.readTag();
|
|
|
|
}
|
2014-01-30 23:33:01 +00:00
|
|
|
return element;
|
|
|
|
}
|
|
|
|
|
2014-03-03 04:01:02 +00:00
|
|
|
private void processIq(Tag currentTag) throws XmlPullParserException,
|
2014-02-09 13:10:52 +00:00
|
|
|
IOException {
|
|
|
|
IqPacket packet = (IqPacket) processPacket(currentTag, PACKET_IQ);
|
2014-03-03 04:01:02 +00:00
|
|
|
if (packetCallbacks.containsKey(packet.getId())) {
|
|
|
|
if (packetCallbacks.get(packet.getId()) instanceof OnIqPacketReceived) {
|
|
|
|
((OnIqPacketReceived) packetCallbacks.get(packet.getId())).onIqPacketReceived(account,
|
|
|
|
packet);
|
|
|
|
}
|
|
|
|
|
|
|
|
packetCallbacks.remove(packet.getId());
|
2014-02-01 14:07:20 +00:00
|
|
|
} else if (this.unregisteredIqListener != null) {
|
2014-02-09 13:10:52 +00:00
|
|
|
this.unregisteredIqListener.onIqPacketReceived(account, packet);
|
2014-02-01 00:25:56 +00:00
|
|
|
}
|
2014-01-30 23:33:01 +00:00
|
|
|
}
|
2014-02-09 13:10:52 +00:00
|
|
|
|
|
|
|
private void processMessage(Tag currentTag) throws XmlPullParserException,
|
|
|
|
IOException {
|
|
|
|
MessagePacket packet = (MessagePacket) processPacket(currentTag,
|
|
|
|
PACKET_MESSAGE);
|
2014-03-03 04:01:02 +00:00
|
|
|
String id = packet.getAttribute("id");
|
|
|
|
if ((id!=null)&&(packetCallbacks.containsKey(id))) {
|
|
|
|
if (packetCallbacks.get(id) instanceof OnMessagePacketReceived) {
|
|
|
|
((OnMessagePacketReceived) packetCallbacks.get(id)).onMessagePacketReceived(account,
|
|
|
|
packet);
|
|
|
|
}
|
|
|
|
packetCallbacks.remove(id);
|
|
|
|
} else if (this.messageListener != null) {
|
2014-02-09 13:10:52 +00:00
|
|
|
this.messageListener.onMessagePacketReceived(account, packet);
|
2014-02-01 14:07:20 +00:00
|
|
|
}
|
2014-01-30 23:33:01 +00:00
|
|
|
}
|
2014-02-09 13:10:52 +00:00
|
|
|
|
|
|
|
private void processPresence(Tag currentTag) throws XmlPullParserException,
|
|
|
|
IOException {
|
|
|
|
PresencePacket packet = (PresencePacket) processPacket(currentTag,
|
|
|
|
PACKET_PRESENCE);
|
2014-03-03 04:01:02 +00:00
|
|
|
String id = packet.getAttribute("id");
|
|
|
|
if ((id!=null)&&(packetCallbacks.containsKey(id))) {
|
|
|
|
if (packetCallbacks.get(id) instanceof OnPresencePacketReceived) {
|
|
|
|
((OnPresencePacketReceived) packetCallbacks.get(id)).onPresencePacketReceived(account,
|
|
|
|
packet);
|
|
|
|
}
|
|
|
|
packetCallbacks.remove(id);
|
|
|
|
} else if (this.presenceListener != null) {
|
2014-02-09 13:10:52 +00:00
|
|
|
this.presenceListener.onPresencePacketReceived(account, packet);
|
2014-02-01 14:07:20 +00:00
|
|
|
}
|
2014-01-30 15:42:35 +00:00
|
|
|
}
|
|
|
|
|
2014-02-04 14:09:50 +00:00
|
|
|
private void sendStartTLS() {
|
2014-01-30 15:42:35 +00:00
|
|
|
Tag startTLS = Tag.empty("starttls");
|
|
|
|
startTLS.setAttribute("xmlns", "urn:ietf:params:xml:ns:xmpp-tls");
|
2014-02-09 13:10:52 +00:00
|
|
|
Log.d(LOGTAG, account.getJid() + ": sending starttls");
|
2014-02-04 14:09:50 +00:00
|
|
|
tagWriter.writeTag(startTLS);
|
2014-01-30 15:42:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void switchOverToTls(Tag currentTag) throws XmlPullParserException,
|
|
|
|
IOException {
|
|
|
|
Tag nextTag = tagReader.readTag(); // should be proceed end tag
|
2014-02-09 13:10:52 +00:00
|
|
|
Log.d(LOGTAG, account.getJid() + ": now switch to ssl");
|
2014-01-30 15:42:35 +00:00
|
|
|
SSLSocket sslSocket;
|
|
|
|
try {
|
|
|
|
sslSocket = (SSLSocket) ((SSLSocketFactory) SSLSocketFactory
|
|
|
|
.getDefault()).createSocket(socket, socket.getInetAddress()
|
|
|
|
.getHostAddress(), socket.getPort(), true);
|
|
|
|
tagReader.setInputStream(sslSocket.getInputStream());
|
|
|
|
Log.d(LOGTAG, "reset inputstream");
|
|
|
|
tagWriter.setOutputStream(sslSocket.getOutputStream());
|
|
|
|
Log.d(LOGTAG, "switch over seemed to work");
|
|
|
|
isTlsEncrypted = true;
|
|
|
|
sendStartStream();
|
|
|
|
processStream(tagReader.readTag());
|
2014-02-04 14:09:50 +00:00
|
|
|
sslSocket.close();
|
2014-01-30 15:42:35 +00:00
|
|
|
} catch (IOException e) {
|
2014-02-09 13:10:52 +00:00
|
|
|
Log.d(LOGTAG,
|
|
|
|
account.getJid() + ": error on ssl '" + e.getMessage()
|
|
|
|
+ "'");
|
2014-01-30 15:42:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void sendSaslAuth() throws IOException, XmlPullParserException {
|
|
|
|
String saslString = SASL.plain(account.getUsername(),
|
|
|
|
account.getPassword());
|
|
|
|
Element auth = new Element("auth");
|
|
|
|
auth.setAttribute("xmlns", "urn:ietf:params:xml:ns:xmpp-sasl");
|
|
|
|
auth.setAttribute("mechanism", "PLAIN");
|
|
|
|
auth.setContent(saslString);
|
2014-02-09 13:10:52 +00:00
|
|
|
Log.d(LOGTAG, account.getJid() + ": sending sasl " + auth.toString());
|
2014-01-30 15:42:35 +00:00
|
|
|
tagWriter.writeElement(auth);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void processStreamFeatures(Tag currentTag)
|
|
|
|
throws XmlPullParserException, IOException {
|
2014-02-01 00:25:56 +00:00
|
|
|
this.streamFeatures = tagReader.readElement(currentTag);
|
2014-02-09 13:10:52 +00:00
|
|
|
Log.d(LOGTAG, account.getJid() + ": process stream features "
|
|
|
|
+ streamFeatures);
|
|
|
|
if (this.streamFeatures.hasChild("starttls")
|
|
|
|
&& account.isOptionSet(Account.OPTION_USETLS)) {
|
2014-02-01 00:25:56 +00:00
|
|
|
sendStartTLS();
|
2014-02-09 13:10:52 +00:00
|
|
|
} else if (this.streamFeatures.hasChild("mechanisms")
|
|
|
|
&& shouldAuthenticate) {
|
2014-02-01 00:25:56 +00:00
|
|
|
sendSaslAuth();
|
|
|
|
}
|
2014-02-09 13:10:52 +00:00
|
|
|
if (this.streamFeatures.hasChild("bind") && shouldBind) {
|
2014-02-01 00:25:56 +00:00
|
|
|
sendBindRequest();
|
|
|
|
if (this.streamFeatures.hasChild("session")) {
|
|
|
|
IqPacket startSession = new IqPacket(IqPacket.TYPE_SET);
|
|
|
|
Element session = new Element("session");
|
2014-02-09 13:10:52 +00:00
|
|
|
session.setAttribute("xmlns",
|
|
|
|
"urn:ietf:params:xml:ns:xmpp-session");
|
2014-02-01 00:25:56 +00:00
|
|
|
session.setContent("");
|
|
|
|
startSession.addChild(session);
|
|
|
|
sendIqPacket(startSession, null);
|
|
|
|
tagWriter.writeElement(startSession);
|
|
|
|
}
|
|
|
|
Element presence = new Element("presence");
|
2014-02-09 13:10:52 +00:00
|
|
|
|
2014-02-01 00:25:56 +00:00
|
|
|
tagWriter.writeElement(presence);
|
2014-01-30 23:33:01 +00:00
|
|
|
}
|
2014-01-30 15:42:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void sendBindRequest() throws IOException {
|
2014-02-01 00:25:56 +00:00
|
|
|
IqPacket iq = new IqPacket(IqPacket.TYPE_SET);
|
2014-01-30 15:42:35 +00:00
|
|
|
Element bind = new Element("bind");
|
2014-02-09 13:10:52 +00:00
|
|
|
bind.setAttribute("xmlns", "urn:ietf:params:xml:ns:xmpp-bind");
|
2014-01-30 15:42:35 +00:00
|
|
|
iq.addChild(bind);
|
2014-02-09 13:10:52 +00:00
|
|
|
this.sendIqPacket(iq, new OnIqPacketReceived() {
|
2014-02-01 00:25:56 +00:00
|
|
|
@Override
|
2014-02-01 14:07:20 +00:00
|
|
|
public void onIqPacketReceived(Account account, IqPacket packet) {
|
2014-02-09 13:10:52 +00:00
|
|
|
String resource = packet.findChild("bind").findChild("jid")
|
|
|
|
.getContent().split("/")[1];
|
2014-02-04 14:09:50 +00:00
|
|
|
account.setResource(resource);
|
|
|
|
account.setStatus(Account.STATUS_ONLINE);
|
2014-02-09 13:10:52 +00:00
|
|
|
if (statusListener != null) {
|
2014-02-04 14:09:50 +00:00
|
|
|
statusListener.onStatusChanged(account);
|
|
|
|
}
|
2014-02-09 13:10:52 +00:00
|
|
|
sendServiceDiscovery();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private void sendServiceDiscovery() {
|
|
|
|
IqPacket iq = new IqPacket(IqPacket.TYPE_GET);
|
|
|
|
iq.setAttribute("to", account.getServer());
|
|
|
|
Element query = new Element("query");
|
|
|
|
query.setAttribute("xmlns", "http://jabber.org/protocol/disco#info");
|
|
|
|
iq.addChild(query);
|
|
|
|
this.sendIqPacket(iq, new OnIqPacketReceived() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onIqPacketReceived(Account account, IqPacket packet) {
|
|
|
|
if (packet.hasChild("query")) {
|
|
|
|
List<Element> elements = packet.findChild("query")
|
|
|
|
.getChildren();
|
|
|
|
for (int i = 0; i < elements.size(); ++i) {
|
|
|
|
if (elements.get(i).getName().equals("feature")) {
|
|
|
|
discoFeatures.add(elements.get(i).getAttribute(
|
|
|
|
"var"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (discoFeatures.contains("urn:xmpp:carbons:2")) {
|
|
|
|
sendEnableCarbons();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private void sendEnableCarbons() {
|
|
|
|
Log.d(LOGTAG,account.getJid()+": enable carbons");
|
|
|
|
IqPacket iq = new IqPacket(IqPacket.TYPE_SET);
|
|
|
|
Element enable = new Element("enable");
|
|
|
|
enable.setAttribute("xmlns", "urn:xmpp:carbons:2");
|
|
|
|
iq.addChild(enable);
|
|
|
|
this.sendIqPacket(iq, new OnIqPacketReceived() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onIqPacketReceived(Account account, IqPacket packet) {
|
|
|
|
if (!packet.hasChild("error")) {
|
|
|
|
Log.d(LOGTAG,account.getJid()+": successfully enabled carbons");
|
|
|
|
} else {
|
|
|
|
Log.d(LOGTAG,account.getJid()+": error enableing carbons "+packet.toString());
|
|
|
|
}
|
2014-02-01 00:25:56 +00:00
|
|
|
}
|
|
|
|
});
|
2014-01-30 15:42:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void processStreamError(Tag currentTag) {
|
|
|
|
Log.d(LOGTAG, "processStreamError");
|
|
|
|
}
|
|
|
|
|
2014-02-04 14:09:50 +00:00
|
|
|
private void sendStartStream() {
|
2014-02-07 15:50:29 +00:00
|
|
|
Tag stream = Tag.start("stream:stream");
|
2014-01-30 15:42:35 +00:00
|
|
|
stream.setAttribute("from", account.getJid());
|
|
|
|
stream.setAttribute("to", account.getServer());
|
|
|
|
stream.setAttribute("version", "1.0");
|
|
|
|
stream.setAttribute("xml:lang", "en");
|
|
|
|
stream.setAttribute("xmlns", "jabber:client");
|
|
|
|
stream.setAttribute("xmlns:stream", "http://etherx.jabber.org/streams");
|
2014-02-04 14:09:50 +00:00
|
|
|
tagWriter.writeTag(stream);
|
2014-01-30 15:42:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private String nextRandomId() {
|
|
|
|
return new BigInteger(50, random).toString(32);
|
|
|
|
}
|
2014-02-09 13:10:52 +00:00
|
|
|
|
2014-02-04 14:09:50 +00:00
|
|
|
public void sendIqPacket(IqPacket packet, OnIqPacketReceived callback) {
|
2014-02-01 00:25:56 +00:00
|
|
|
String id = nextRandomId();
|
2014-02-09 13:10:52 +00:00
|
|
|
packet.setAttribute("id", id);
|
2014-02-01 00:25:56 +00:00
|
|
|
tagWriter.writeElement(packet);
|
|
|
|
if (callback != null) {
|
2014-03-03 04:01:02 +00:00
|
|
|
packetCallbacks.put(id, callback);
|
2014-02-01 00:25:56 +00:00
|
|
|
}
|
|
|
|
}
|
2014-02-09 13:10:52 +00:00
|
|
|
|
|
|
|
public void sendMessagePacket(MessagePacket packet) {
|
2014-03-03 04:01:02 +00:00
|
|
|
this.sendMessagePacket(packet, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void sendMessagePacket(MessagePacket packet, OnMessagePacketReceived callback) {
|
|
|
|
String id = nextRandomId();
|
|
|
|
packet.setAttribute("id", id);
|
2014-02-01 14:07:20 +00:00
|
|
|
tagWriter.writeElement(packet);
|
2014-03-03 04:01:02 +00:00
|
|
|
if (callback != null) {
|
|
|
|
packetCallbacks.put(id, callback);
|
|
|
|
}
|
2014-02-01 14:07:20 +00:00
|
|
|
}
|
2014-02-09 13:10:52 +00:00
|
|
|
|
|
|
|
public void sendPresencePacket(PresencePacket packet) {
|
2014-03-03 04:01:02 +00:00
|
|
|
this.sendPresencePacket(packet, null);
|
|
|
|
}
|
|
|
|
|
2014-03-04 03:09:15 +00:00
|
|
|
public PresencePacket sendPresencePacket(PresencePacket packet, OnPresencePacketReceived callback) {
|
2014-03-03 04:01:02 +00:00
|
|
|
String id = nextRandomId();
|
|
|
|
packet.setAttribute("id", id);
|
2014-02-01 14:07:20 +00:00
|
|
|
tagWriter.writeElement(packet);
|
2014-03-03 04:01:02 +00:00
|
|
|
if (callback != null) {
|
|
|
|
packetCallbacks.put(id, callback);
|
|
|
|
}
|
2014-03-04 03:09:15 +00:00
|
|
|
return packet;
|
2014-02-01 14:07:20 +00:00
|
|
|
}
|
2014-02-09 13:10:52 +00:00
|
|
|
|
|
|
|
public void setOnMessagePacketReceivedListener(
|
|
|
|
OnMessagePacketReceived listener) {
|
2014-02-01 14:07:20 +00:00
|
|
|
this.messageListener = listener;
|
|
|
|
}
|
2014-02-09 13:10:52 +00:00
|
|
|
|
|
|
|
public void setOnUnregisteredIqPacketReceivedListener(
|
|
|
|
OnIqPacketReceived listener) {
|
2014-02-01 14:07:20 +00:00
|
|
|
this.unregisteredIqListener = listener;
|
|
|
|
}
|
2014-02-09 13:10:52 +00:00
|
|
|
|
|
|
|
public void setOnPresencePacketReceivedListener(
|
|
|
|
OnPresencePacketReceived listener) {
|
2014-02-01 14:07:20 +00:00
|
|
|
this.presenceListener = listener;
|
|
|
|
}
|
2014-02-09 13:10:52 +00:00
|
|
|
|
2014-02-04 14:09:50 +00:00
|
|
|
public void setOnStatusChangedListener(OnStatusChanged listener) {
|
|
|
|
this.statusListener = listener;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void disconnect() {
|
|
|
|
shouldConnect = false;
|
2014-02-13 22:40:08 +00:00
|
|
|
tagWriter.writeTag(Tag.end("stream:stream"));
|
2014-02-04 14:09:50 +00:00
|
|
|
}
|
2014-01-30 15:42:35 +00:00
|
|
|
}
|