|
|
|
@ -8,7 +8,9 @@ import java.util.List;
|
|
|
|
|
import java.util.Locale;
|
|
|
|
|
import java.util.Map.Entry;
|
|
|
|
|
|
|
|
|
|
import android.content.Intent;
|
|
|
|
|
import android.graphics.BitmapFactory;
|
|
|
|
|
import android.net.Uri;
|
|
|
|
|
import android.util.Log;
|
|
|
|
|
import eu.siacs.conversations.entities.Account;
|
|
|
|
|
import eu.siacs.conversations.entities.Conversation;
|
|
|
|
@ -68,7 +70,8 @@ public class JingleConnection {
|
|
|
|
|
public void onIqPacketReceived(Account account, IqPacket packet) {
|
|
|
|
|
if (packet.getType() == IqPacket.TYPE_ERROR) {
|
|
|
|
|
if (initiator.equals(account.getFullJid())) {
|
|
|
|
|
mXmppConnectionService.markMessage(message, Message.STATUS_SEND_FAILED);
|
|
|
|
|
mXmppConnectionService.markMessage(message,
|
|
|
|
|
Message.STATUS_SEND_FAILED);
|
|
|
|
|
}
|
|
|
|
|
status = STATUS_FAILED;
|
|
|
|
|
}
|
|
|
|
@ -83,18 +86,27 @@ public class JingleConnection {
|
|
|
|
|
sendSuccess();
|
|
|
|
|
if (acceptedAutomatically) {
|
|
|
|
|
message.markUnread();
|
|
|
|
|
JingleConnection.this.mXmppConnectionService.notifyUi(message.getConversation(), true);
|
|
|
|
|
JingleConnection.this.mXmppConnectionService.notifyUi(
|
|
|
|
|
message.getConversation(), true);
|
|
|
|
|
}
|
|
|
|
|
BitmapFactory.Options options = new BitmapFactory.Options();
|
|
|
|
|
options.inJustDecodeBounds = true;
|
|
|
|
|
BitmapFactory.decodeFile(file.getAbsolutePath(), options);
|
|
|
|
|
int imageHeight = options.outHeight;
|
|
|
|
|
int imageWidth = options.outWidth;
|
|
|
|
|
message.setBody(""+file.getSize()+","+imageWidth+","+imageHeight);
|
|
|
|
|
message.setBody("" + file.getSize() + "," + imageWidth + ","
|
|
|
|
|
+ imageHeight);
|
|
|
|
|
mXmppConnectionService.databaseBackend.createMessage(message);
|
|
|
|
|
mXmppConnectionService.markMessage(message, Message.STATUS_RECIEVED);
|
|
|
|
|
mXmppConnectionService.markMessage(message,
|
|
|
|
|
Message.STATUS_RECIEVED);
|
|
|
|
|
}
|
|
|
|
|
Log.d("xmppService",
|
|
|
|
|
"sucessfully transmitted file:" + file.getAbsolutePath());
|
|
|
|
|
if (message.getEncryption()!=Message.ENCRYPTION_PGP) {
|
|
|
|
|
Intent intent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
|
|
|
|
|
intent.setData(Uri.fromFile(file));
|
|
|
|
|
mXmppConnectionService.sendBroadcast(intent);
|
|
|
|
|
}
|
|
|
|
|
Log.d("xmppService","sucessfully transmitted file:"+file.getAbsolutePath());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@ -125,7 +137,8 @@ public class JingleConnection {
|
|
|
|
|
|
|
|
|
|
public JingleConnection(JingleConnectionManager mJingleConnectionManager) {
|
|
|
|
|
this.mJingleConnectionManager = mJingleConnectionManager;
|
|
|
|
|
this.mXmppConnectionService = mJingleConnectionManager.getXmppConnectionService();
|
|
|
|
|
this.mXmppConnectionService = mJingleConnectionManager
|
|
|
|
|
.getXmppConnectionService();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getSessionId() {
|
|
|
|
@ -164,12 +177,14 @@ public class JingleConnection {
|
|
|
|
|
returnResult = this.receiveFallbackToIbb(packet);
|
|
|
|
|
} else {
|
|
|
|
|
returnResult = false;
|
|
|
|
|
Log.d("xmppService","trying to fallback to something unknown"+packet.toString());
|
|
|
|
|
Log.d("xmppService", "trying to fallback to something unknown"
|
|
|
|
|
+ packet.toString());
|
|
|
|
|
}
|
|
|
|
|
} else if (packet.isAction("transport-accept")) {
|
|
|
|
|
returnResult = this.receiveTransportAccept(packet);
|
|
|
|
|
} else {
|
|
|
|
|
Log.d("xmppService","packet arrived in connection. action was "+packet.getAction());
|
|
|
|
|
Log.d("xmppService", "packet arrived in connection. action was "
|
|
|
|
|
+ packet.getAction());
|
|
|
|
|
returnResult = false;
|
|
|
|
|
}
|
|
|
|
|
IqPacket response;
|
|
|
|
@ -193,31 +208,39 @@ public class JingleConnection {
|
|
|
|
|
if (this.candidates.size() > 0) {
|
|
|
|
|
this.sendInitRequest();
|
|
|
|
|
} else {
|
|
|
|
|
this.mJingleConnectionManager.getPrimaryCandidate(account, new OnPrimaryCandidateFound() {
|
|
|
|
|
this.mJingleConnectionManager.getPrimaryCandidate(account,
|
|
|
|
|
new OnPrimaryCandidateFound() {
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void onPrimaryCandidateFound(boolean success, final JingleCandidate candidate) {
|
|
|
|
|
public void onPrimaryCandidateFound(boolean success,
|
|
|
|
|
final JingleCandidate candidate) {
|
|
|
|
|
if (success) {
|
|
|
|
|
final JingleSocks5Transport socksConnection = new JingleSocks5Transport(JingleConnection.this, candidate);
|
|
|
|
|
connections.put(candidate.getCid(), socksConnection);
|
|
|
|
|
socksConnection.connect(new OnTransportConnected() {
|
|
|
|
|
final JingleSocks5Transport socksConnection = new JingleSocks5Transport(
|
|
|
|
|
JingleConnection.this, candidate);
|
|
|
|
|
connections.put(candidate.getCid(),
|
|
|
|
|
socksConnection);
|
|
|
|
|
socksConnection
|
|
|
|
|
.connect(new OnTransportConnected() {
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void failed() {
|
|
|
|
|
Log.d("xmppService","connection to our own primary candidete failed");
|
|
|
|
|
Log.d("xmppService",
|
|
|
|
|
"connection to our own primary candidete failed");
|
|
|
|
|
sendInitRequest();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void established() {
|
|
|
|
|
Log.d("xmppService","succesfully connected to our own primary candidate");
|
|
|
|
|
Log.d("xmppService",
|
|
|
|
|
"succesfully connected to our own primary candidate");
|
|
|
|
|
mergeCandidate(candidate);
|
|
|
|
|
sendInitRequest();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
mergeCandidate(candidate);
|
|
|
|
|
} else {
|
|
|
|
|
Log.d("xmppService","no primary candidate of our own was found");
|
|
|
|
|
Log.d("xmppService",
|
|
|
|
|
"no primary candidate of our own was found");
|
|
|
|
|
sendInitRequest();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -228,7 +251,9 @@ public class JingleConnection {
|
|
|
|
|
|
|
|
|
|
public void init(Account account, JinglePacket packet) {
|
|
|
|
|
this.status = STATUS_INITIATED;
|
|
|
|
|
Conversation conversation = this.mXmppConnectionService.findOrCreateConversation(account, packet.getFrom().split("/")[0], false);
|
|
|
|
|
Conversation conversation = this.mXmppConnectionService
|
|
|
|
|
.findOrCreateConversation(account,
|
|
|
|
|
packet.getFrom().split("/")[0], false);
|
|
|
|
|
this.message = new Message(conversation, "", Message.ENCRYPTION_NONE);
|
|
|
|
|
this.message.setType(Message.TYPE_IMAGE);
|
|
|
|
|
this.message.setStatus(Message.STATUS_RECEIVED_OFFER);
|
|
|
|
@ -243,25 +268,32 @@ public class JingleConnection {
|
|
|
|
|
this.contentCreator = content.getAttribute("creator");
|
|
|
|
|
this.contentName = content.getAttribute("name");
|
|
|
|
|
this.transportId = content.getTransportId();
|
|
|
|
|
this.mergeCandidates(JingleCandidate.parse(content.socks5transport().getChildren()));
|
|
|
|
|
this.mergeCandidates(JingleCandidate.parse(content.socks5transport()
|
|
|
|
|
.getChildren()));
|
|
|
|
|
this.fileOffer = packet.getJingleContent().getFileOffer();
|
|
|
|
|
if (fileOffer != null) {
|
|
|
|
|
Element fileSize = fileOffer.findChild("size");
|
|
|
|
|
Element fileNameElement = fileOffer.findChild("name");
|
|
|
|
|
if (fileNameElement != null) {
|
|
|
|
|
boolean supportedFile = false;
|
|
|
|
|
String[] filename = fileNameElement.getContent().toLowerCase(Locale.US).split("\\.");
|
|
|
|
|
if (Arrays.asList(this.extensions).contains(filename[filename.length - 1])) {
|
|
|
|
|
String[] filename = fileNameElement.getContent()
|
|
|
|
|
.toLowerCase(Locale.US).split("\\.");
|
|
|
|
|
if (Arrays.asList(this.extensions).contains(
|
|
|
|
|
filename[filename.length - 1])) {
|
|
|
|
|
supportedFile = true;
|
|
|
|
|
} else if (Arrays.asList(this.cryptoExtensions).contains(filename[filename.length - 1])) {
|
|
|
|
|
} else if (Arrays.asList(this.cryptoExtensions).contains(
|
|
|
|
|
filename[filename.length - 1])) {
|
|
|
|
|
if (filename.length == 3) {
|
|
|
|
|
if (Arrays.asList(this.extensions).contains(filename[filename.length -2])) {
|
|
|
|
|
if (Arrays.asList(this.extensions).contains(
|
|
|
|
|
filename[filename.length - 2])) {
|
|
|
|
|
supportedFile = true;
|
|
|
|
|
if (filename[filename.length - 1].equals("otr")) {
|
|
|
|
|
Log.d("xmppService", "receiving otr file");
|
|
|
|
|
this.message.setEncryption(Message.ENCRYPTION_OTR);
|
|
|
|
|
this.message
|
|
|
|
|
.setEncryption(Message.ENCRYPTION_OTR);
|
|
|
|
|
} else {
|
|
|
|
|
this.message.setEncryption(Message.ENCRYPTION_PGP);
|
|
|
|
|
this.message
|
|
|
|
|
.setEncryption(Message.ENCRYPTION_PGP);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -270,16 +302,25 @@ public class JingleConnection {
|
|
|
|
|
long size = Long.parseLong(fileSize.getContent());
|
|
|
|
|
message.setBody("" + size);
|
|
|
|
|
conversation.getMessages().add(message);
|
|
|
|
|
if (size<=this.mJingleConnectionManager.getAutoAcceptFileSize()) {
|
|
|
|
|
Log.d("xmppService","auto accepting file from "+packet.getFrom());
|
|
|
|
|
if (size <= this.mJingleConnectionManager
|
|
|
|
|
.getAutoAcceptFileSize()) {
|
|
|
|
|
Log.d("xmppService", "auto accepting file from "
|
|
|
|
|
+ packet.getFrom());
|
|
|
|
|
this.acceptedAutomatically = true;
|
|
|
|
|
this.sendAccept();
|
|
|
|
|
} else {
|
|
|
|
|
message.markUnread();
|
|
|
|
|
Log.d("xmppService","not auto accepting new file offer with size: "+size+" allowed size:"+this.mJingleConnectionManager.getAutoAcceptFileSize());
|
|
|
|
|
this.mXmppConnectionService.notifyUi(conversation, true);
|
|
|
|
|
Log.d("xmppService",
|
|
|
|
|
"not auto accepting new file offer with size: "
|
|
|
|
|
+ size
|
|
|
|
|
+ " allowed size:"
|
|
|
|
|
+ this.mJingleConnectionManager
|
|
|
|
|
.getAutoAcceptFileSize());
|
|
|
|
|
this.mXmppConnectionService
|
|
|
|
|
.notifyUi(conversation, true);
|
|
|
|
|
}
|
|
|
|
|
this.file = this.mXmppConnectionService.getFileBackend().getJingleFile(message,false);
|
|
|
|
|
this.file = this.mXmppConnectionService.getFileBackend()
|
|
|
|
|
.getJingleFile(message, false);
|
|
|
|
|
if (message.getEncryption() == Message.ENCRYPTION_OTR) {
|
|
|
|
|
byte[] key = conversation.getSymmetricKey();
|
|
|
|
|
if (key == null) {
|
|
|
|
@ -310,7 +351,8 @@ public class JingleConnection {
|
|
|
|
|
Content content = new Content(this.contentCreator, this.contentName);
|
|
|
|
|
if (message.getType() == Message.TYPE_IMAGE) {
|
|
|
|
|
content.setTransportId(this.transportId);
|
|
|
|
|
this.file = this.mXmppConnectionService.getFileBackend().getJingleFile(message,false);
|
|
|
|
|
this.file = this.mXmppConnectionService.getFileBackend()
|
|
|
|
|
.getJingleFile(message, false);
|
|
|
|
|
if (message.getEncryption() == Message.ENCRYPTION_OTR) {
|
|
|
|
|
Conversation conversation = this.message.getConversation();
|
|
|
|
|
this.mXmppConnectionService.renewSymmetricKey(conversation);
|
|
|
|
@ -339,23 +381,29 @@ public class JingleConnection {
|
|
|
|
|
private void sendAccept() {
|
|
|
|
|
status = STATUS_ACCEPTED;
|
|
|
|
|
mXmppConnectionService.markMessage(message, Message.STATUS_RECIEVING);
|
|
|
|
|
this.mJingleConnectionManager.getPrimaryCandidate(this.account, new OnPrimaryCandidateFound() {
|
|
|
|
|
this.mJingleConnectionManager.getPrimaryCandidate(this.account,
|
|
|
|
|
new OnPrimaryCandidateFound() {
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void onPrimaryCandidateFound(boolean success,final JingleCandidate candidate) {
|
|
|
|
|
public void onPrimaryCandidateFound(boolean success,
|
|
|
|
|
final JingleCandidate candidate) {
|
|
|
|
|
final JinglePacket packet = bootstrapPacket("session-accept");
|
|
|
|
|
final Content content = new Content(contentCreator,contentName);
|
|
|
|
|
final Content content = new Content(contentCreator,
|
|
|
|
|
contentName);
|
|
|
|
|
content.setFileOffer(fileOffer);
|
|
|
|
|
content.setTransportId(transportId);
|
|
|
|
|
if ((success) && (!equalCandidateExists(candidate))) {
|
|
|
|
|
final JingleSocks5Transport socksConnection = new JingleSocks5Transport(JingleConnection.this, candidate);
|
|
|
|
|
final JingleSocks5Transport socksConnection = new JingleSocks5Transport(
|
|
|
|
|
JingleConnection.this, candidate);
|
|
|
|
|
connections.put(candidate.getCid(), socksConnection);
|
|
|
|
|
socksConnection.connect(new OnTransportConnected() {
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void failed() {
|
|
|
|
|
Log.d("xmppService","connection to our own primary candidate failed");
|
|
|
|
|
content.socks5transport().setChildren(getCandidatesAsElements());
|
|
|
|
|
Log.d("xmppService",
|
|
|
|
|
"connection to our own primary candidate failed");
|
|
|
|
|
content.socks5transport().setChildren(
|
|
|
|
|
getCandidatesAsElements());
|
|
|
|
|
packet.setContent(content);
|
|
|
|
|
sendJinglePacket(packet);
|
|
|
|
|
connectNextCandidate();
|
|
|
|
@ -363,17 +411,21 @@ public class JingleConnection {
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void established() {
|
|
|
|
|
Log.d("xmppService","connected to primary candidate");
|
|
|
|
|
Log.d("xmppService",
|
|
|
|
|
"connected to primary candidate");
|
|
|
|
|
mergeCandidate(candidate);
|
|
|
|
|
content.socks5transport().setChildren(getCandidatesAsElements());
|
|
|
|
|
content.socks5transport().setChildren(
|
|
|
|
|
getCandidatesAsElements());
|
|
|
|
|
packet.setContent(content);
|
|
|
|
|
sendJinglePacket(packet);
|
|
|
|
|
connectNextCandidate();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
Log.d("xmppService","did not find a primary candidate for ourself");
|
|
|
|
|
content.socks5transport().setChildren(getCandidatesAsElements());
|
|
|
|
|
Log.d("xmppService",
|
|
|
|
|
"did not find a primary candidate for ourself");
|
|
|
|
|
content.socks5transport().setChildren(
|
|
|
|
|
getCandidatesAsElements());
|
|
|
|
|
packet.setContent(content);
|
|
|
|
|
sendJinglePacket(packet);
|
|
|
|
|
connectNextCandidate();
|
|
|
|
@ -400,7 +452,8 @@ public class JingleConnection {
|
|
|
|
|
|
|
|
|
|
private boolean receiveAccept(JinglePacket packet) {
|
|
|
|
|
Content content = packet.getJingleContent();
|
|
|
|
|
mergeCandidates(JingleCandidate.parse(content.socks5transport().getChildren()));
|
|
|
|
|
mergeCandidates(JingleCandidate.parse(content.socks5transport()
|
|
|
|
|
.getChildren()));
|
|
|
|
|
this.status = STATUS_ACCEPTED;
|
|
|
|
|
mXmppConnectionService.markMessage(message, Message.STATUS_UNSEND);
|
|
|
|
|
this.connectNextCandidate();
|
|
|
|
@ -411,12 +464,16 @@ public class JingleConnection {
|
|
|
|
|
Content content = packet.getJingleContent();
|
|
|
|
|
if (content.hasSocks5Transport()) {
|
|
|
|
|
if (content.socks5transport().hasChild("activated")) {
|
|
|
|
|
if ((this.transport!=null)&&(this.transport instanceof JingleSocks5Transport)) {
|
|
|
|
|
if ((this.transport != null)
|
|
|
|
|
&& (this.transport instanceof JingleSocks5Transport)) {
|
|
|
|
|
onProxyActivated.success();
|
|
|
|
|
} else {
|
|
|
|
|
String cid = content.socks5transport().findChild("activated").getAttribute("cid");
|
|
|
|
|
Log.d("xmppService","received proxy activated ("+cid+")prior to choosing our own transport");
|
|
|
|
|
JingleSocks5Transport connection = this.connections.get(cid);
|
|
|
|
|
String cid = content.socks5transport()
|
|
|
|
|
.findChild("activated").getAttribute("cid");
|
|
|
|
|
Log.d("xmppService", "received proxy activated (" + cid
|
|
|
|
|
+ ")prior to choosing our own transport");
|
|
|
|
|
JingleSocks5Transport connection = this.connections
|
|
|
|
|
.get(cid);
|
|
|
|
|
if (connection != null) {
|
|
|
|
|
connection.setActivated(true);
|
|
|
|
|
} else {
|
|
|
|
@ -437,7 +494,8 @@ public class JingleConnection {
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
} else if (content.socks5transport().hasChild("candidate-used")) {
|
|
|
|
|
String cid = content.socks5transport().findChild("candidate-used").getAttribute("cid");
|
|
|
|
|
String cid = content.socks5transport()
|
|
|
|
|
.findChild("candidate-used").getAttribute("cid");
|
|
|
|
|
if (cid != null) {
|
|
|
|
|
Log.d("xmppService", "candidate used by counterpart:" + cid);
|
|
|
|
|
JingleCandidate candidate = getCandidate(cid);
|
|
|
|
@ -446,7 +504,8 @@ public class JingleConnection {
|
|
|
|
|
if ((status == STATUS_ACCEPTED) && (this.sentCandidate)) {
|
|
|
|
|
this.connect();
|
|
|
|
|
} else {
|
|
|
|
|
Log.d("xmppService","ignoring because file is already in transmission or we havent sent our candidate yet");
|
|
|
|
|
Log.d("xmppService",
|
|
|
|
|
"ignoring because file is already in transmission or we havent sent our candidate yet");
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
} else {
|
|
|
|
@ -473,25 +532,35 @@ public class JingleConnection {
|
|
|
|
|
this.status = STATUS_TRANSMITTING;
|
|
|
|
|
if (connection.needsActivation()) {
|
|
|
|
|
if (connection.getCandidate().isOurs()) {
|
|
|
|
|
Log.d("xmppService","candidate "+connection.getCandidate().getCid()+" was our proxy. going to activate");
|
|
|
|
|
Log.d("xmppService", "candidate "
|
|
|
|
|
+ connection.getCandidate().getCid()
|
|
|
|
|
+ " was our proxy. going to activate");
|
|
|
|
|
IqPacket activation = new IqPacket(IqPacket.TYPE_SET);
|
|
|
|
|
activation.setTo(connection.getCandidate().getJid());
|
|
|
|
|
activation.query("http://jabber.org/protocol/bytestreams").setAttribute("sid", this.getSessionId());
|
|
|
|
|
activation.query().addChild("activate").setContent(this.getCounterPart());
|
|
|
|
|
this.account.getXmppConnection().sendIqPacket(activation, new OnIqPacketReceived() {
|
|
|
|
|
activation.query("http://jabber.org/protocol/bytestreams")
|
|
|
|
|
.setAttribute("sid", this.getSessionId());
|
|
|
|
|
activation.query().addChild("activate")
|
|
|
|
|
.setContent(this.getCounterPart());
|
|
|
|
|
this.account.getXmppConnection().sendIqPacket(activation,
|
|
|
|
|
new OnIqPacketReceived() {
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void onIqPacketReceived(Account account, IqPacket packet) {
|
|
|
|
|
public void onIqPacketReceived(Account account,
|
|
|
|
|
IqPacket packet) {
|
|
|
|
|
if (packet.getType() == IqPacket.TYPE_ERROR) {
|
|
|
|
|
onProxyActivated.failed();
|
|
|
|
|
} else {
|
|
|
|
|
onProxyActivated.success();
|
|
|
|
|
sendProxyActivated(connection.getCandidate().getCid());
|
|
|
|
|
sendProxyActivated(connection
|
|
|
|
|
.getCandidate().getCid());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
Log.d("xmppService","candidate "+connection.getCandidate().getCid()+" was a proxy. waiting for other party to activate");
|
|
|
|
|
Log.d("xmppService",
|
|
|
|
|
"candidate "
|
|
|
|
|
+ connection.getCandidate().getCid()
|
|
|
|
|
+ " was a proxy. waiting for other party to activate");
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if (initiator.equals(account.getFullJid())) {
|
|
|
|
@ -507,17 +576,22 @@ public class JingleConnection {
|
|
|
|
|
|
|
|
|
|
private JingleSocks5Transport chooseConnection() {
|
|
|
|
|
JingleSocks5Transport connection = null;
|
|
|
|
|
for (Entry<String, JingleSocks5Transport> cursor : connections.entrySet()) {
|
|
|
|
|
for (Entry<String, JingleSocks5Transport> cursor : connections
|
|
|
|
|
.entrySet()) {
|
|
|
|
|
JingleSocks5Transport currentConnection = cursor.getValue();
|
|
|
|
|
// Log.d("xmppService","comparing candidate: "+currentConnection.getCandidate().toString());
|
|
|
|
|
if (currentConnection.isEstablished()&&(currentConnection.getCandidate().isUsedByCounterpart()||(!currentConnection.getCandidate().isOurs()))) {
|
|
|
|
|
if (currentConnection.isEstablished()
|
|
|
|
|
&& (currentConnection.getCandidate().isUsedByCounterpart() || (!currentConnection
|
|
|
|
|
.getCandidate().isOurs()))) {
|
|
|
|
|
// Log.d("xmppService","is usable");
|
|
|
|
|
if (connection == null) {
|
|
|
|
|
connection = currentConnection;
|
|
|
|
|
} else {
|
|
|
|
|
if (connection.getCandidate().getPriority()<currentConnection.getCandidate().getPriority()) {
|
|
|
|
|
if (connection.getCandidate().getPriority() < currentConnection
|
|
|
|
|
.getCandidate().getPriority()) {
|
|
|
|
|
connection = currentConnection;
|
|
|
|
|
} else if (connection.getCandidate().getPriority()==currentConnection.getCandidate().getPriority()) {
|
|
|
|
|
} else if (connection.getCandidate().getPriority() == currentConnection
|
|
|
|
|
.getCandidate().getPriority()) {
|
|
|
|
|
// Log.d("xmppService","found two candidates with same priority");
|
|
|
|
|
if (initiator.equals(account.getFullJid())) {
|
|
|
|
|
if (currentConnection.getCandidate().isOurs()) {
|
|
|
|
@ -543,7 +617,8 @@ public class JingleConnection {
|
|
|
|
|
this.sendJinglePacket(packet);
|
|
|
|
|
this.disconnect();
|
|
|
|
|
this.status = STATUS_FINISHED;
|
|
|
|
|
this.mXmppConnectionService.markMessage(this.message, Message.STATUS_RECIEVED);
|
|
|
|
|
this.mXmppConnectionService.markMessage(this.message,
|
|
|
|
|
Message.STATUS_RECIEVED);
|
|
|
|
|
this.mJingleConnectionManager.finishConnection(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -552,13 +627,15 @@ public class JingleConnection {
|
|
|
|
|
Content content = new Content(this.contentCreator, this.contentName);
|
|
|
|
|
this.transportId = this.mJingleConnectionManager.nextRandomId();
|
|
|
|
|
content.setTransportId(this.transportId);
|
|
|
|
|
content.ibbTransport().setAttribute("block-size",""+this.ibbBlockSize);
|
|
|
|
|
content.ibbTransport().setAttribute("block-size",
|
|
|
|
|
"" + this.ibbBlockSize);
|
|
|
|
|
packet.setContent(content);
|
|
|
|
|
this.sendJinglePacket(packet);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private boolean receiveFallbackToIbb(JinglePacket packet) {
|
|
|
|
|
String receivedBlockSize = packet.getJingleContent().ibbTransport().getAttribute("block-size");
|
|
|
|
|
String receivedBlockSize = packet.getJingleContent().ibbTransport()
|
|
|
|
|
.getAttribute("block-size");
|
|
|
|
|
if (receivedBlockSize != null) {
|
|
|
|
|
int bs = Integer.parseInt(receivedBlockSize);
|
|
|
|
|
if (bs > this.ibbBlockSize) {
|
|
|
|
@ -566,12 +643,14 @@ public class JingleConnection {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
this.transportId = packet.getJingleContent().getTransportId();
|
|
|
|
|
this.transport = new JingleInbandTransport(this.account,this.responder,this.transportId,this.ibbBlockSize);
|
|
|
|
|
this.transport = new JingleInbandTransport(this.account,
|
|
|
|
|
this.responder, this.transportId, this.ibbBlockSize);
|
|
|
|
|
this.transport.receive(file, onFileTransmissionSatusChanged);
|
|
|
|
|
JinglePacket answer = bootstrapPacket("transport-accept");
|
|
|
|
|
Content content = new Content("initiator", "a-file-offer");
|
|
|
|
|
content.setTransportId(this.transportId);
|
|
|
|
|
content.ibbTransport().setAttribute("block-size", ""+this.ibbBlockSize);
|
|
|
|
|
content.ibbTransport().setAttribute("block-size",
|
|
|
|
|
"" + this.ibbBlockSize);
|
|
|
|
|
answer.setContent(content);
|
|
|
|
|
this.sendJinglePacket(answer);
|
|
|
|
|
return true;
|
|
|
|
@ -579,14 +658,16 @@ public class JingleConnection {
|
|
|
|
|
|
|
|
|
|
private boolean receiveTransportAccept(JinglePacket packet) {
|
|
|
|
|
if (packet.getJingleContent().hasIbbTransport()) {
|
|
|
|
|
String receivedBlockSize = packet.getJingleContent().ibbTransport().getAttribute("block-size");
|
|
|
|
|
String receivedBlockSize = packet.getJingleContent().ibbTransport()
|
|
|
|
|
.getAttribute("block-size");
|
|
|
|
|
if (receivedBlockSize != null) {
|
|
|
|
|
int bs = Integer.parseInt(receivedBlockSize);
|
|
|
|
|
if (bs > this.ibbBlockSize) {
|
|
|
|
|
this.ibbBlockSize = bs;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
this.transport = new JingleInbandTransport(this.account,this.responder,this.transportId,this.ibbBlockSize);
|
|
|
|
|
this.transport = new JingleInbandTransport(this.account,
|
|
|
|
|
this.responder, this.transportId, this.ibbBlockSize);
|
|
|
|
|
this.transport.connect(new OnTransportConnected() {
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@ -596,7 +677,8 @@ public class JingleConnection {
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void established() {
|
|
|
|
|
JingleConnection.this.transport.send(file, onFileTransmissionSatusChanged);
|
|
|
|
|
JingleConnection.this.transport.send(file,
|
|
|
|
|
onFileTransmissionSatusChanged);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
return true;
|
|
|
|
@ -607,7 +689,8 @@ public class JingleConnection {
|
|
|
|
|
|
|
|
|
|
private void receiveSuccess() {
|
|
|
|
|
this.status = STATUS_FINISHED;
|
|
|
|
|
this.mXmppConnectionService.markMessage(this.message, Message.STATUS_SEND);
|
|
|
|
|
this.mXmppConnectionService.markMessage(this.message,
|
|
|
|
|
Message.STATUS_SEND);
|
|
|
|
|
this.disconnect();
|
|
|
|
|
this.mJingleConnectionManager.finishConnection(this);
|
|
|
|
|
}
|
|
|
|
@ -616,12 +699,15 @@ public class JingleConnection {
|
|
|
|
|
this.disconnect();
|
|
|
|
|
if (this.message != null) {
|
|
|
|
|
if (this.responder.equals(account.getFullJid())) {
|
|
|
|
|
this.mXmppConnectionService.markMessage(this.message, Message.STATUS_RECEPTION_FAILED);
|
|
|
|
|
this.mXmppConnectionService.markMessage(this.message,
|
|
|
|
|
Message.STATUS_RECEPTION_FAILED);
|
|
|
|
|
} else {
|
|
|
|
|
if (this.status == STATUS_INITIATED) {
|
|
|
|
|
this.mXmppConnectionService.markMessage(this.message, Message.STATUS_SEND_REJECTED);
|
|
|
|
|
this.mXmppConnectionService.markMessage(this.message,
|
|
|
|
|
Message.STATUS_SEND_REJECTED);
|
|
|
|
|
} else {
|
|
|
|
|
this.mXmppConnectionService.markMessage(this.message, Message.STATUS_SEND_FAILED);
|
|
|
|
|
this.mXmppConnectionService.markMessage(this.message,
|
|
|
|
|
Message.STATUS_SEND_FAILED);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -639,7 +725,8 @@ public class JingleConnection {
|
|
|
|
|
|
|
|
|
|
private void connectNextCandidate() {
|
|
|
|
|
for (JingleCandidate candidate : this.candidates) {
|
|
|
|
|
if ((!connections.containsKey(candidate.getCid())&&(!candidate.isOurs()))) {
|
|
|
|
|
if ((!connections.containsKey(candidate.getCid()) && (!candidate
|
|
|
|
|
.isOurs()))) {
|
|
|
|
|
this.connectWithCandidate(candidate);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
@ -648,26 +735,32 @@ public class JingleConnection {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void connectWithCandidate(final JingleCandidate candidate) {
|
|
|
|
|
final JingleSocks5Transport socksConnection = new JingleSocks5Transport(this,candidate);
|
|
|
|
|
final JingleSocks5Transport socksConnection = new JingleSocks5Transport(
|
|
|
|
|
this, candidate);
|
|
|
|
|
connections.put(candidate.getCid(), socksConnection);
|
|
|
|
|
socksConnection.connect(new OnTransportConnected() {
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void failed() {
|
|
|
|
|
Log.d("xmppService", "connection failed with "+candidate.getHost()+":"+candidate.getPort());
|
|
|
|
|
Log.d("xmppService",
|
|
|
|
|
"connection failed with " + candidate.getHost() + ":"
|
|
|
|
|
+ candidate.getPort());
|
|
|
|
|
connectNextCandidate();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void established() {
|
|
|
|
|
Log.d("xmppService", "established connection with "+candidate.getHost()+":"+candidate.getPort());
|
|
|
|
|
Log.d("xmppService",
|
|
|
|
|
"established connection with " + candidate.getHost()
|
|
|
|
|
+ ":" + candidate.getPort());
|
|
|
|
|
sendCandidateUsed(candidate.getCid());
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void disconnect() {
|
|
|
|
|
Iterator<Entry<String, JingleSocks5Transport>> it = this.connections.entrySet().iterator();
|
|
|
|
|
Iterator<Entry<String, JingleSocks5Transport>> it = this.connections
|
|
|
|
|
.entrySet().iterator();
|
|
|
|
|
while (it.hasNext()) {
|
|
|
|
|
Entry<String, JingleSocks5Transport> pairs = it.next();
|
|
|
|
|
pairs.getValue().disconnect();
|
|
|
|
@ -679,7 +772,8 @@ public class JingleConnection {
|
|
|
|
|
JinglePacket packet = bootstrapPacket("transport-info");
|
|
|
|
|
Content content = new Content(this.contentCreator, this.contentName);
|
|
|
|
|
content.setTransportId(this.transportId);
|
|
|
|
|
content.socks5transport().addChild("activated").setAttribute("cid", cid);
|
|
|
|
|
content.socks5transport().addChild("activated")
|
|
|
|
|
.setAttribute("cid", cid);
|
|
|
|
|
packet.setContent(content);
|
|
|
|
|
this.sendJinglePacket(packet);
|
|
|
|
|
}
|
|
|
|
@ -688,7 +782,8 @@ public class JingleConnection {
|
|
|
|
|
JinglePacket packet = bootstrapPacket("transport-info");
|
|
|
|
|
Content content = new Content(this.contentCreator, this.contentName);
|
|
|
|
|
content.setTransportId(this.transportId);
|
|
|
|
|
content.socks5transport().addChild("candidate-used").setAttribute("cid", cid);
|
|
|
|
|
content.socks5transport().addChild("candidate-used")
|
|
|
|
|
.setAttribute("cid", cid);
|
|
|
|
|
packet.setContent(content);
|
|
|
|
|
this.sentCandidate = true;
|
|
|
|
|
if ((receivedCandidate) && (status == STATUS_ACCEPTED)) {
|
|
|
|
@ -757,6 +852,7 @@ public class JingleConnection {
|
|
|
|
|
|
|
|
|
|
interface OnProxyActivated {
|
|
|
|
|
public void success();
|
|
|
|
|
|
|
|
|
|
public void failed();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|