2014-04-08 21:15:55 +00:00
|
|
|
package eu.siacs.conversations.xmpp.jingle;
|
2014-04-07 18:05:45 +00:00
|
|
|
|
|
|
|
import java.util.ArrayList;
|
2014-04-23 19:19:56 +00:00
|
|
|
import java.util.Arrays;
|
2014-04-13 09:32:45 +00:00
|
|
|
import java.util.Iterator;
|
2014-04-07 18:05:45 +00:00
|
|
|
import java.util.List;
|
2014-06-22 19:44:17 +00:00
|
|
|
import java.util.Locale;
|
2014-04-13 09:32:45 +00:00
|
|
|
import java.util.Map.Entry;
|
2014-08-19 13:06:50 +00:00
|
|
|
import java.util.concurrent.ConcurrentHashMap;
|
2014-04-07 18:05:45 +00:00
|
|
|
|
2014-08-08 09:49:23 +00:00
|
|
|
import android.content.Intent;
|
2014-04-25 21:06:20 +00:00
|
|
|
import android.graphics.BitmapFactory;
|
2014-08-08 09:49:23 +00:00
|
|
|
import android.net.Uri;
|
2014-04-07 18:05:45 +00:00
|
|
|
import android.util.Log;
|
2014-08-31 14:28:21 +00:00
|
|
|
import eu.siacs.conversations.Config;
|
2014-04-07 18:05:45 +00:00
|
|
|
import eu.siacs.conversations.entities.Account;
|
2014-04-13 09:32:45 +00:00
|
|
|
import eu.siacs.conversations.entities.Conversation;
|
2014-09-08 18:09:44 +00:00
|
|
|
import eu.siacs.conversations.entities.Downloadable;
|
2014-04-07 18:05:45 +00:00
|
|
|
import eu.siacs.conversations.entities.Message;
|
|
|
|
import eu.siacs.conversations.services.XmppConnectionService;
|
|
|
|
import eu.siacs.conversations.xml.Element;
|
2014-04-08 21:15:55 +00:00
|
|
|
import eu.siacs.conversations.xmpp.OnIqPacketReceived;
|
|
|
|
import eu.siacs.conversations.xmpp.jingle.stanzas.Content;
|
|
|
|
import eu.siacs.conversations.xmpp.jingle.stanzas.JinglePacket;
|
2014-04-13 09:32:45 +00:00
|
|
|
import eu.siacs.conversations.xmpp.jingle.stanzas.Reason;
|
2014-04-08 21:15:55 +00:00
|
|
|
import eu.siacs.conversations.xmpp.stanzas.IqPacket;
|
2014-04-07 18:05:45 +00:00
|
|
|
|
2014-09-08 18:09:44 +00:00
|
|
|
public class JingleConnection implements Downloadable {
|
2014-04-07 18:05:45 +00:00
|
|
|
|
2014-08-08 09:49:23 +00:00
|
|
|
private final String[] extensions = { "webp", "jpeg", "jpg", "png" };
|
|
|
|
private final String[] cryptoExtensions = { "pgp", "gpg", "otr" };
|
|
|
|
|
2014-04-07 18:05:45 +00:00
|
|
|
private JingleConnectionManager mJingleConnectionManager;
|
|
|
|
private XmppConnectionService mXmppConnectionService;
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-10 12:12:08 +00:00
|
|
|
public static final int STATUS_INITIATED = 0;
|
|
|
|
public static final int STATUS_ACCEPTED = 1;
|
2014-04-11 19:13:09 +00:00
|
|
|
public static final int STATUS_TERMINATED = 2;
|
2014-04-13 09:32:45 +00:00
|
|
|
public static final int STATUS_CANCELED = 3;
|
|
|
|
public static final int STATUS_FINISHED = 4;
|
2014-04-13 19:10:36 +00:00
|
|
|
public static final int STATUS_TRANSMITTING = 5;
|
2014-04-10 12:12:08 +00:00
|
|
|
public static final int STATUS_FAILED = 99;
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-22 11:11:53 +00:00
|
|
|
private int ibbBlockSize = 4096;
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-10 12:12:08 +00:00
|
|
|
private int status = -1;
|
2014-04-08 21:15:55 +00:00
|
|
|
private Message message;
|
2014-04-07 18:05:45 +00:00
|
|
|
private String sessionId;
|
|
|
|
private Account account;
|
2014-04-08 21:15:55 +00:00
|
|
|
private String initiator;
|
|
|
|
private String responder;
|
2014-04-17 12:52:10 +00:00
|
|
|
private List<JingleCandidate> candidates = new ArrayList<JingleCandidate>();
|
2014-08-19 13:06:50 +00:00
|
|
|
private ConcurrentHashMap<String, JingleSocks5Transport> connections = new ConcurrentHashMap<String, JingleSocks5Transport>();
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-17 12:52:10 +00:00
|
|
|
private String transportId;
|
|
|
|
private Element fileOffer;
|
2014-04-13 09:32:45 +00:00
|
|
|
private JingleFile file = null;
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-05-03 16:47:53 +00:00
|
|
|
private String contentName;
|
|
|
|
private String contentCreator;
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-18 09:57:28 +00:00
|
|
|
private boolean receivedCandidate = false;
|
|
|
|
private boolean sentCandidate = false;
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-22 16:46:40 +00:00
|
|
|
private boolean acceptedAutomatically = false;
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-20 20:34:27 +00:00
|
|
|
private JingleTransport transport = null;
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-08 21:15:55 +00:00
|
|
|
private OnIqPacketReceived responseListener = new OnIqPacketReceived() {
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-08 21:15:55 +00:00
|
|
|
@Override
|
|
|
|
public void onIqPacketReceived(Account account, IqPacket packet) {
|
2014-04-10 12:12:08 +00:00
|
|
|
if (packet.getType() == IqPacket.TYPE_ERROR) {
|
2014-05-07 10:58:57 +00:00
|
|
|
if (initiator.equals(account.getFullJid())) {
|
2014-08-08 09:49:23 +00:00
|
|
|
mXmppConnectionService.markMessage(message,
|
|
|
|
Message.STATUS_SEND_FAILED);
|
2014-05-07 10:58:57 +00:00
|
|
|
}
|
2014-04-10 12:12:08 +00:00
|
|
|
status = STATUS_FAILED;
|
|
|
|
}
|
2014-04-08 21:15:55 +00:00
|
|
|
}
|
|
|
|
};
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-06-29 11:44:59 +00:00
|
|
|
final OnFileTransmissionStatusChanged onFileTransmissionSatusChanged = new OnFileTransmissionStatusChanged() {
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-20 20:34:27 +00:00
|
|
|
@Override
|
|
|
|
public void onFileTransmitted(JingleFile file) {
|
|
|
|
if (responder.equals(account.getFullJid())) {
|
|
|
|
sendSuccess();
|
2014-04-22 16:46:40 +00:00
|
|
|
if (acceptedAutomatically) {
|
|
|
|
message.markUnread();
|
2014-08-08 09:49:23 +00:00
|
|
|
JingleConnection.this.mXmppConnectionService.notifyUi(
|
|
|
|
message.getConversation(), true);
|
2014-04-22 16:46:40 +00:00
|
|
|
}
|
2014-04-25 21:06:20 +00:00
|
|
|
BitmapFactory.Options options = new BitmapFactory.Options();
|
|
|
|
options.inJustDecodeBounds = true;
|
2014-08-08 09:49:23 +00:00
|
|
|
BitmapFactory.decodeFile(file.getAbsolutePath(), options);
|
2014-04-25 21:06:20 +00:00
|
|
|
int imageHeight = options.outHeight;
|
|
|
|
int imageWidth = options.outWidth;
|
2014-09-08 21:58:37 +00:00
|
|
|
message.setBody(Long.toString(file.getSize()) + ','
|
|
|
|
+ imageWidth + ',' + imageHeight);
|
2014-04-23 19:19:56 +00:00
|
|
|
mXmppConnectionService.databaseBackend.createMessage(message);
|
2014-08-08 09:49:23 +00:00
|
|
|
mXmppConnectionService.markMessage(message,
|
2014-08-28 09:01:24 +00:00
|
|
|
Message.STATUS_RECEIVED);
|
2014-08-08 09:49:23 +00:00
|
|
|
}
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG,
|
2014-08-08 09:49:23 +00:00
|
|
|
"sucessfully transmitted file:" + file.getAbsolutePath());
|
2014-08-31 14:28:21 +00:00
|
|
|
if (message.getEncryption() != Message.ENCRYPTION_PGP) {
|
|
|
|
Intent intent = new Intent(
|
|
|
|
Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
|
2014-08-08 09:49:23 +00:00
|
|
|
intent.setData(Uri.fromFile(file));
|
|
|
|
mXmppConnectionService.sendBroadcast(intent);
|
2014-04-20 20:34:27 +00:00
|
|
|
}
|
|
|
|
}
|
2014-06-29 11:44:59 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onFileTransferAborted() {
|
2014-07-03 20:55:20 +00:00
|
|
|
JingleConnection.this.sendCancel();
|
2014-06-29 11:44:59 +00:00
|
|
|
JingleConnection.this.cancel();
|
|
|
|
}
|
2014-04-20 20:34:27 +00:00
|
|
|
};
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-20 20:34:27 +00:00
|
|
|
private OnProxyActivated onProxyActivated = new OnProxyActivated() {
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-20 20:34:27 +00:00
|
|
|
@Override
|
|
|
|
public void success() {
|
|
|
|
if (initiator.equals(account.getFullJid())) {
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG, "we were initiating. sending file");
|
2014-08-08 09:49:23 +00:00
|
|
|
transport.send(file, onFileTransmissionSatusChanged);
|
2014-04-20 20:34:27 +00:00
|
|
|
} else {
|
2014-08-08 09:49:23 +00:00
|
|
|
transport.receive(file, onFileTransmissionSatusChanged);
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG, "we were responding. receiving file");
|
2014-04-20 20:34:27 +00:00
|
|
|
}
|
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-20 20:34:27 +00:00
|
|
|
@Override
|
|
|
|
public void failed() {
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG, "proxy activation failed");
|
2014-04-20 20:34:27 +00:00
|
|
|
}
|
|
|
|
};
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-08 21:15:55 +00:00
|
|
|
public JingleConnection(JingleConnectionManager mJingleConnectionManager) {
|
2014-04-07 18:05:45 +00:00
|
|
|
this.mJingleConnectionManager = mJingleConnectionManager;
|
2014-08-08 09:49:23 +00:00
|
|
|
this.mXmppConnectionService = mJingleConnectionManager
|
|
|
|
.getXmppConnectionService();
|
2014-04-07 18:05:45 +00:00
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-07 18:05:45 +00:00
|
|
|
public String getSessionId() {
|
|
|
|
return this.sessionId;
|
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-10 12:12:08 +00:00
|
|
|
public String getAccountJid() {
|
2014-04-13 19:10:36 +00:00
|
|
|
return this.account.getFullJid();
|
2014-04-10 12:12:08 +00:00
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-10 12:12:08 +00:00
|
|
|
public String getCounterPart() {
|
|
|
|
return this.message.getCounterpart();
|
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-10 12:12:08 +00:00
|
|
|
public void deliverPacket(JinglePacket packet) {
|
2014-05-13 12:49:09 +00:00
|
|
|
boolean returnResult = true;
|
2014-04-11 19:13:09 +00:00
|
|
|
if (packet.isAction("session-terminate")) {
|
2014-04-13 09:32:45 +00:00
|
|
|
Reason reason = packet.getReason();
|
2014-08-08 09:49:23 +00:00
|
|
|
if (reason != null) {
|
2014-04-16 10:50:53 +00:00
|
|
|
if (reason.hasChild("cancel")) {
|
2014-06-29 11:44:59 +00:00
|
|
|
this.cancel();
|
2014-04-16 10:50:53 +00:00
|
|
|
} else if (reason.hasChild("success")) {
|
2014-04-23 19:19:56 +00:00
|
|
|
this.receiveSuccess();
|
2014-05-13 12:49:09 +00:00
|
|
|
} else {
|
2014-06-29 11:44:59 +00:00
|
|
|
this.cancel();
|
2014-04-16 10:50:53 +00:00
|
|
|
}
|
|
|
|
} else {
|
2014-06-29 11:44:59 +00:00
|
|
|
this.cancel();
|
2014-04-11 19:13:09 +00:00
|
|
|
}
|
2014-05-13 12:49:09 +00:00
|
|
|
} else if (packet.isAction("session-accept")) {
|
|
|
|
returnResult = receiveAccept(packet);
|
2014-04-11 20:49:26 +00:00
|
|
|
} else if (packet.isAction("transport-info")) {
|
2014-05-13 12:49:09 +00:00
|
|
|
returnResult = receiveTransportInfo(packet);
|
2014-04-22 11:11:53 +00:00
|
|
|
} else if (packet.isAction("transport-replace")) {
|
|
|
|
if (packet.getJingleContent().hasIbbTransport()) {
|
2014-05-13 12:49:09 +00:00
|
|
|
returnResult = this.receiveFallbackToIbb(packet);
|
2014-04-22 11:11:53 +00:00
|
|
|
} else {
|
2014-05-13 12:49:09 +00:00
|
|
|
returnResult = false;
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG, "trying to fallback to something unknown"
|
2014-08-08 09:49:23 +00:00
|
|
|
+ packet.toString());
|
2014-04-22 11:11:53 +00:00
|
|
|
}
|
|
|
|
} else if (packet.isAction("transport-accept")) {
|
2014-05-13 12:49:09 +00:00
|
|
|
returnResult = this.receiveTransportAccept(packet);
|
2014-04-11 19:13:09 +00:00
|
|
|
} else {
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG, "packet arrived in connection. action was "
|
2014-08-08 09:49:23 +00:00
|
|
|
+ packet.getAction());
|
2014-05-13 12:49:09 +00:00
|
|
|
returnResult = false;
|
|
|
|
}
|
|
|
|
IqPacket response;
|
|
|
|
if (returnResult) {
|
|
|
|
response = packet.generateRespone(IqPacket.TYPE_RESULT);
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-05-13 12:49:09 +00:00
|
|
|
} else {
|
|
|
|
response = packet.generateRespone(IqPacket.TYPE_ERROR);
|
2014-04-10 12:12:08 +00:00
|
|
|
}
|
2014-05-13 12:49:09 +00:00
|
|
|
account.getXmppConnection().sendIqPacket(response, null);
|
2014-04-10 12:12:08 +00:00
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-07 18:05:45 +00:00
|
|
|
public void init(Message message) {
|
2014-05-03 16:47:53 +00:00
|
|
|
this.contentCreator = "initiator";
|
|
|
|
this.contentName = this.mJingleConnectionManager.nextRandomId();
|
2014-04-08 21:15:55 +00:00
|
|
|
this.message = message;
|
|
|
|
this.account = message.getConversation().getAccount();
|
|
|
|
this.initiator = this.account.getFullJid();
|
2014-04-11 19:13:09 +00:00
|
|
|
this.responder = this.message.getCounterpart();
|
2014-04-13 09:32:45 +00:00
|
|
|
this.sessionId = this.mJingleConnectionManager.nextRandomId();
|
2014-04-11 19:13:09 +00:00
|
|
|
if (this.candidates.size() > 0) {
|
2014-04-08 21:15:55 +00:00
|
|
|
this.sendInitRequest();
|
|
|
|
} else {
|
2014-08-08 09:49:23 +00:00
|
|
|
this.mJingleConnectionManager.getPrimaryCandidate(account,
|
|
|
|
new OnPrimaryCandidateFound() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
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() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void failed() {
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG,
|
2014-08-08 09:49:23 +00:00
|
|
|
"connection to our own primary candidete failed");
|
|
|
|
sendInitRequest();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void established() {
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG,
|
2014-08-08 09:49:23 +00:00
|
|
|
"succesfully connected to our own primary candidate");
|
|
|
|
mergeCandidate(candidate);
|
|
|
|
sendInitRequest();
|
|
|
|
}
|
|
|
|
});
|
2014-04-18 09:57:28 +00:00
|
|
|
mergeCandidate(candidate);
|
2014-08-08 09:49:23 +00:00
|
|
|
} else {
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG,
|
2014-08-08 09:49:23 +00:00
|
|
|
"no primary candidate of our own was found");
|
2014-04-18 09:57:28 +00:00
|
|
|
sendInitRequest();
|
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
}
|
|
|
|
});
|
2014-04-08 21:15:55 +00:00
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-08 21:15:55 +00:00
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-13 09:32:45 +00:00
|
|
|
public void init(Account account, JinglePacket packet) {
|
2014-04-13 19:10:36 +00:00
|
|
|
this.status = STATUS_INITIATED;
|
2014-08-08 09:49:23 +00:00
|
|
|
Conversation conversation = this.mXmppConnectionService
|
|
|
|
.findOrCreateConversation(account,
|
|
|
|
packet.getFrom().split("/")[0], false);
|
2014-04-25 21:06:20 +00:00
|
|
|
this.message = new Message(conversation, "", Message.ENCRYPTION_NONE);
|
2014-04-13 09:32:45 +00:00
|
|
|
this.message.setType(Message.TYPE_IMAGE);
|
2014-04-22 16:46:40 +00:00
|
|
|
this.message.setStatus(Message.STATUS_RECEIVED_OFFER);
|
2014-09-08 18:09:44 +00:00
|
|
|
this.message.setDownloadable(this);
|
2014-04-13 16:09:40 +00:00
|
|
|
String[] fromParts = packet.getFrom().split("/");
|
|
|
|
this.message.setPresence(fromParts[1]);
|
2014-04-13 09:32:45 +00:00
|
|
|
this.account = account;
|
|
|
|
this.initiator = packet.getFrom();
|
|
|
|
this.responder = this.account.getFullJid();
|
|
|
|
this.sessionId = packet.getSessionId();
|
2014-04-17 12:52:10 +00:00
|
|
|
Content content = packet.getJingleContent();
|
2014-05-03 16:47:53 +00:00
|
|
|
this.contentCreator = content.getAttribute("creator");
|
|
|
|
this.contentName = content.getAttribute("name");
|
2014-04-17 12:52:10 +00:00
|
|
|
this.transportId = content.getTransportId();
|
2014-08-08 09:49:23 +00:00
|
|
|
this.mergeCandidates(JingleCandidate.parse(content.socks5transport()
|
|
|
|
.getChildren()));
|
2014-04-17 12:52:10 +00:00
|
|
|
this.fileOffer = packet.getJingleContent().getFileOffer();
|
2014-08-08 09:49:23 +00:00
|
|
|
if (fileOffer != null) {
|
2014-04-13 16:09:40 +00:00
|
|
|
Element fileSize = fileOffer.findChild("size");
|
2014-04-23 19:19:56 +00:00
|
|
|
Element fileNameElement = fileOffer.findChild("name");
|
2014-08-08 09:49:23 +00:00
|
|
|
if (fileNameElement != null) {
|
2014-04-23 19:19:56 +00:00
|
|
|
boolean supportedFile = false;
|
2014-08-08 09:49:23 +00:00
|
|
|
String[] filename = fileNameElement.getContent()
|
|
|
|
.toLowerCase(Locale.US).split("\\.");
|
|
|
|
if (Arrays.asList(this.extensions).contains(
|
|
|
|
filename[filename.length - 1])) {
|
2014-04-23 19:19:56 +00:00
|
|
|
supportedFile = true;
|
2014-08-08 09:49:23 +00:00
|
|
|
} else if (Arrays.asList(this.cryptoExtensions).contains(
|
|
|
|
filename[filename.length - 1])) {
|
2014-04-23 19:19:56 +00:00
|
|
|
if (filename.length == 3) {
|
2014-08-08 09:49:23 +00:00
|
|
|
if (Arrays.asList(this.extensions).contains(
|
|
|
|
filename[filename.length - 2])) {
|
2014-04-23 19:19:56 +00:00
|
|
|
supportedFile = true;
|
2014-06-20 15:30:19 +00:00
|
|
|
if (filename[filename.length - 1].equals("otr")) {
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG, "receiving otr file");
|
2014-08-08 09:49:23 +00:00
|
|
|
this.message
|
|
|
|
.setEncryption(Message.ENCRYPTION_OTR);
|
2014-06-20 15:30:19 +00:00
|
|
|
} else {
|
2014-08-08 09:49:23 +00:00
|
|
|
this.message
|
|
|
|
.setEncryption(Message.ENCRYPTION_PGP);
|
2014-06-20 15:30:19 +00:00
|
|
|
}
|
2014-04-23 19:19:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (supportedFile) {
|
2014-05-06 19:34:30 +00:00
|
|
|
long size = Long.parseLong(fileSize.getContent());
|
2014-09-01 08:40:45 +00:00
|
|
|
message.setBody(Long.toString(size));
|
2014-04-23 19:19:56 +00:00
|
|
|
conversation.getMessages().add(message);
|
2014-08-08 09:49:23 +00:00
|
|
|
if (size <= this.mJingleConnectionManager
|
|
|
|
.getAutoAcceptFileSize()) {
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG, "auto accepting file from "
|
2014-08-08 09:49:23 +00:00
|
|
|
+ packet.getFrom());
|
2014-04-23 19:19:56 +00:00
|
|
|
this.acceptedAutomatically = true;
|
|
|
|
this.sendAccept();
|
|
|
|
} else {
|
|
|
|
message.markUnread();
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG,
|
2014-08-08 09:49:23 +00:00
|
|
|
"not auto accepting new file offer with size: "
|
|
|
|
+ size
|
|
|
|
+ " allowed size:"
|
|
|
|
+ this.mJingleConnectionManager
|
|
|
|
.getAutoAcceptFileSize());
|
|
|
|
this.mXmppConnectionService
|
|
|
|
.notifyUi(conversation, true);
|
2014-04-23 19:19:56 +00:00
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
this.file = this.mXmppConnectionService.getFileBackend()
|
|
|
|
.getJingleFile(message, false);
|
2014-06-20 15:30:19 +00:00
|
|
|
if (message.getEncryption() == Message.ENCRYPTION_OTR) {
|
2014-07-03 20:55:20 +00:00
|
|
|
byte[] key = conversation.getSymmetricKey();
|
2014-08-08 09:49:23 +00:00
|
|
|
if (key == null) {
|
2014-07-03 20:55:20 +00:00
|
|
|
this.sendCancel();
|
|
|
|
this.cancel();
|
|
|
|
return;
|
|
|
|
} else {
|
2014-08-21 05:39:14 +00:00
|
|
|
this.file.setKey(key);
|
2014-07-03 20:55:20 +00:00
|
|
|
}
|
2014-06-20 15:30:19 +00:00
|
|
|
}
|
2014-05-06 19:34:30 +00:00
|
|
|
this.file.setExpectedSize(size);
|
2014-04-23 19:19:56 +00:00
|
|
|
} else {
|
2014-07-03 20:55:20 +00:00
|
|
|
this.sendCancel();
|
2014-06-29 11:44:59 +00:00
|
|
|
this.cancel();
|
2014-04-22 16:46:40 +00:00
|
|
|
}
|
2014-04-23 19:19:56 +00:00
|
|
|
} else {
|
2014-07-03 20:55:20 +00:00
|
|
|
this.sendCancel();
|
2014-06-29 11:44:59 +00:00
|
|
|
this.cancel();
|
2014-04-13 16:09:40 +00:00
|
|
|
}
|
|
|
|
} else {
|
2014-07-03 20:55:20 +00:00
|
|
|
this.sendCancel();
|
2014-06-29 11:44:59 +00:00
|
|
|
this.cancel();
|
2014-04-13 16:09:40 +00:00
|
|
|
}
|
2014-04-13 09:32:45 +00:00
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-08 21:15:55 +00:00
|
|
|
private void sendInitRequest() {
|
2014-04-16 10:50:53 +00:00
|
|
|
JinglePacket packet = this.bootstrapPacket("session-initiate");
|
2014-08-08 09:49:23 +00:00
|
|
|
Content content = new Content(this.contentCreator, this.contentName);
|
2014-04-07 18:05:45 +00:00
|
|
|
if (message.getType() == Message.TYPE_IMAGE) {
|
2014-04-20 20:34:27 +00:00
|
|
|
content.setTransportId(this.transportId);
|
2014-08-08 09:49:23 +00:00
|
|
|
this.file = this.mXmppConnectionService.getFileBackend()
|
|
|
|
.getJingleFile(message, false);
|
2014-06-20 15:30:19 +00:00
|
|
|
if (message.getEncryption() == Message.ENCRYPTION_OTR) {
|
|
|
|
Conversation conversation = this.message.getConversation();
|
|
|
|
this.mXmppConnectionService.renewSymmetricKey(conversation);
|
|
|
|
content.setFileOffer(this.file, true);
|
|
|
|
this.file.setKey(conversation.getSymmetricKey());
|
|
|
|
} else {
|
2014-08-08 09:49:23 +00:00
|
|
|
content.setFileOffer(this.file, false);
|
2014-06-20 15:30:19 +00:00
|
|
|
}
|
2014-04-17 12:52:10 +00:00
|
|
|
this.transportId = this.mJingleConnectionManager.nextRandomId();
|
2014-04-21 10:03:26 +00:00
|
|
|
content.setTransportId(this.transportId);
|
2014-04-20 20:34:27 +00:00
|
|
|
content.socks5transport().setChildren(getCandidatesAsElements());
|
2014-04-07 18:05:45 +00:00
|
|
|
packet.setContent(content);
|
2014-04-18 23:14:30 +00:00
|
|
|
this.sendJinglePacket(packet);
|
2014-04-10 12:12:08 +00:00
|
|
|
this.status = STATUS_INITIATED;
|
2014-04-07 18:05:45 +00:00
|
|
|
}
|
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-17 12:52:10 +00:00
|
|
|
private List<Element> getCandidatesAsElements() {
|
|
|
|
List<Element> elements = new ArrayList<Element>();
|
2014-08-08 09:49:23 +00:00
|
|
|
for (JingleCandidate c : this.candidates) {
|
2014-04-17 12:52:10 +00:00
|
|
|
elements.add(c.toElement());
|
|
|
|
}
|
|
|
|
return elements;
|
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-13 16:09:40 +00:00
|
|
|
private void sendAccept() {
|
2014-04-18 09:57:28 +00:00
|
|
|
status = STATUS_ACCEPTED;
|
2014-08-28 09:01:24 +00:00
|
|
|
mXmppConnectionService.markMessage(message, Message.STATUS_RECEIVING);
|
2014-08-08 09:49:23 +00:00
|
|
|
this.mJingleConnectionManager.getPrimaryCandidate(this.account,
|
|
|
|
new OnPrimaryCandidateFound() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onPrimaryCandidateFound(boolean success,
|
|
|
|
final JingleCandidate candidate) {
|
|
|
|
final JinglePacket packet = bootstrapPacket("session-accept");
|
|
|
|
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);
|
|
|
|
connections.put(candidate.getCid(), socksConnection);
|
|
|
|
socksConnection.connect(new OnTransportConnected() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void failed() {
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG,
|
2014-08-08 09:49:23 +00:00
|
|
|
"connection to our own primary candidate failed");
|
|
|
|
content.socks5transport().setChildren(
|
|
|
|
getCandidatesAsElements());
|
|
|
|
packet.setContent(content);
|
|
|
|
sendJinglePacket(packet);
|
|
|
|
connectNextCandidate();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void established() {
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG,
|
2014-08-08 09:49:23 +00:00
|
|
|
"connected to primary candidate");
|
|
|
|
mergeCandidate(candidate);
|
|
|
|
content.socks5transport().setChildren(
|
|
|
|
getCandidatesAsElements());
|
|
|
|
packet.setContent(content);
|
|
|
|
sendJinglePacket(packet);
|
|
|
|
connectNextCandidate();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG,
|
2014-08-08 09:49:23 +00:00
|
|
|
"did not find a primary candidate for ourself");
|
|
|
|
content.socks5transport().setChildren(
|
|
|
|
getCandidatesAsElements());
|
2014-04-18 09:57:28 +00:00
|
|
|
packet.setContent(content);
|
2014-04-18 23:14:30 +00:00
|
|
|
sendJinglePacket(packet);
|
2014-04-21 18:39:57 +00:00
|
|
|
connectNextCandidate();
|
2014-04-18 09:57:28 +00:00
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-04-13 16:09:40 +00:00
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-16 10:50:53 +00:00
|
|
|
private JinglePacket bootstrapPacket(String action) {
|
2014-04-07 18:05:45 +00:00
|
|
|
JinglePacket packet = new JinglePacket();
|
2014-04-16 10:50:53 +00:00
|
|
|
packet.setAction(action);
|
2014-04-07 18:05:45 +00:00
|
|
|
packet.setFrom(account.getFullJid());
|
2014-04-18 09:57:28 +00:00
|
|
|
packet.setTo(this.message.getCounterpart());
|
2014-04-07 18:05:45 +00:00
|
|
|
packet.setSessionId(this.sessionId);
|
2014-04-13 16:09:40 +00:00
|
|
|
packet.setInitiator(this.initiator);
|
2014-04-07 18:05:45 +00:00
|
|
|
return packet;
|
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-18 23:14:30 +00:00
|
|
|
private void sendJinglePacket(JinglePacket packet) {
|
2014-08-31 14:28:21 +00:00
|
|
|
// Log.d(Config.LOGTAG,packet.toString());
|
2014-08-08 09:49:23 +00:00
|
|
|
account.getXmppConnection().sendIqPacket(packet, responseListener);
|
2014-04-18 23:14:30 +00:00
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-05-13 12:49:09 +00:00
|
|
|
private boolean receiveAccept(JinglePacket packet) {
|
2014-04-11 19:13:09 +00:00
|
|
|
Content content = packet.getJingleContent();
|
2014-08-08 09:49:23 +00:00
|
|
|
mergeCandidates(JingleCandidate.parse(content.socks5transport()
|
|
|
|
.getChildren()));
|
2014-04-11 19:13:09 +00:00
|
|
|
this.status = STATUS_ACCEPTED;
|
2014-04-22 16:46:40 +00:00
|
|
|
mXmppConnectionService.markMessage(message, Message.STATUS_UNSEND);
|
2014-04-14 19:21:13 +00:00
|
|
|
this.connectNextCandidate();
|
2014-05-13 12:49:09 +00:00
|
|
|
return true;
|
2014-04-11 19:13:09 +00:00
|
|
|
}
|
2014-04-13 16:09:40 +00:00
|
|
|
|
2014-05-13 12:49:09 +00:00
|
|
|
private boolean receiveTransportInfo(JinglePacket packet) {
|
2014-04-11 20:49:26 +00:00
|
|
|
Content content = packet.getJingleContent();
|
2014-04-20 20:34:27 +00:00
|
|
|
if (content.hasSocks5Transport()) {
|
|
|
|
if (content.socks5transport().hasChild("activated")) {
|
2014-08-08 09:49:23 +00:00
|
|
|
if ((this.transport != null)
|
|
|
|
&& (this.transport instanceof JingleSocks5Transport)) {
|
2014-04-23 19:19:56 +00:00
|
|
|
onProxyActivated.success();
|
|
|
|
} else {
|
2014-08-08 09:49:23 +00:00
|
|
|
String cid = content.socks5transport()
|
|
|
|
.findChild("activated").getAttribute("cid");
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG, "received proxy activated (" + cid
|
2014-08-08 09:49:23 +00:00
|
|
|
+ ")prior to choosing our own transport");
|
|
|
|
JingleSocks5Transport connection = this.connections
|
|
|
|
.get(cid);
|
|
|
|
if (connection != null) {
|
2014-04-23 19:19:56 +00:00
|
|
|
connection.setActivated(true);
|
|
|
|
} else {
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG, "activated connection not found");
|
2014-07-03 20:55:20 +00:00
|
|
|
this.sendCancel();
|
2014-06-29 11:44:59 +00:00
|
|
|
this.cancel();
|
2014-04-23 19:19:56 +00:00
|
|
|
}
|
|
|
|
}
|
2014-05-13 12:49:09 +00:00
|
|
|
return true;
|
|
|
|
} else if (content.socks5transport().hasChild("proxy-error")) {
|
2014-04-20 20:34:27 +00:00
|
|
|
onProxyActivated.failed();
|
2014-05-13 12:49:09 +00:00
|
|
|
return true;
|
2014-04-20 20:34:27 +00:00
|
|
|
} else if (content.socks5transport().hasChild("candidate-error")) {
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG, "received candidate error");
|
2014-04-20 20:34:27 +00:00
|
|
|
this.receivedCandidate = true;
|
2014-08-08 09:49:23 +00:00
|
|
|
if ((status == STATUS_ACCEPTED) && (this.sentCandidate)) {
|
2014-04-20 20:34:27 +00:00
|
|
|
this.connect();
|
|
|
|
}
|
2014-05-13 12:49:09 +00:00
|
|
|
return true;
|
2014-08-08 09:49:23 +00:00
|
|
|
} else if (content.socks5transport().hasChild("candidate-used")) {
|
|
|
|
String cid = content.socks5transport()
|
|
|
|
.findChild("candidate-used").getAttribute("cid");
|
|
|
|
if (cid != null) {
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG, "candidate used by counterpart:" + cid);
|
2014-04-20 20:34:27 +00:00
|
|
|
JingleCandidate candidate = getCandidate(cid);
|
|
|
|
candidate.flagAsUsedByCounterpart();
|
|
|
|
this.receivedCandidate = true;
|
2014-08-08 09:49:23 +00:00
|
|
|
if ((status == STATUS_ACCEPTED) && (this.sentCandidate)) {
|
2014-04-20 20:34:27 +00:00
|
|
|
this.connect();
|
|
|
|
} else {
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG,
|
2014-08-08 09:49:23 +00:00
|
|
|
"ignoring because file is already in transmission or we havent sent our candidate yet");
|
2014-04-20 20:34:27 +00:00
|
|
|
}
|
2014-05-13 12:49:09 +00:00
|
|
|
return true;
|
2014-04-20 20:34:27 +00:00
|
|
|
} else {
|
2014-05-13 12:49:09 +00:00
|
|
|
return false;
|
2014-04-20 20:34:27 +00:00
|
|
|
}
|
2014-04-13 19:10:36 +00:00
|
|
|
} else {
|
2014-05-13 12:49:09 +00:00
|
|
|
return false;
|
2014-04-13 16:09:40 +00:00
|
|
|
}
|
2014-05-13 12:49:09 +00:00
|
|
|
} else {
|
|
|
|
return true;
|
2014-04-13 16:09:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-17 12:52:10 +00:00
|
|
|
private void connect() {
|
2014-04-22 11:11:53 +00:00
|
|
|
final JingleSocks5Transport connection = chooseConnection();
|
2014-04-20 20:34:27 +00:00
|
|
|
this.transport = connection;
|
2014-08-08 09:49:23 +00:00
|
|
|
if (connection == null) {
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG, "could not find suitable candidate");
|
2014-04-18 23:14:30 +00:00
|
|
|
this.disconnect();
|
2014-04-22 11:11:53 +00:00
|
|
|
if (this.initiator.equals(account.getFullJid())) {
|
|
|
|
this.sendFallbackToIbb();
|
|
|
|
}
|
2014-04-18 23:14:30 +00:00
|
|
|
} else {
|
|
|
|
this.status = STATUS_TRANSMITTING;
|
2014-04-23 19:19:56 +00:00
|
|
|
if (connection.needsActivation()) {
|
2014-04-20 20:34:27 +00:00
|
|
|
if (connection.getCandidate().isOurs()) {
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG, "candidate "
|
2014-08-08 09:49:23 +00:00
|
|
|
+ connection.getCandidate().getCid()
|
|
|
|
+ " was our proxy. going to activate");
|
2014-04-20 20:34:27 +00:00
|
|
|
IqPacket activation = new IqPacket(IqPacket.TYPE_SET);
|
|
|
|
activation.setTo(connection.getCandidate().getJid());
|
2014-08-08 09:49:23 +00:00
|
|
|
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) {
|
|
|
|
if (packet.getType() == IqPacket.TYPE_ERROR) {
|
|
|
|
onProxyActivated.failed();
|
|
|
|
} else {
|
|
|
|
onProxyActivated.success();
|
|
|
|
sendProxyActivated(connection
|
|
|
|
.getCandidate().getCid());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-04-25 21:06:20 +00:00
|
|
|
} else {
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG,
|
2014-08-08 09:49:23 +00:00
|
|
|
"candidate "
|
|
|
|
+ connection.getCandidate().getCid()
|
|
|
|
+ " was a proxy. waiting for other party to activate");
|
2014-04-20 20:34:27 +00:00
|
|
|
}
|
2014-04-13 16:09:40 +00:00
|
|
|
} else {
|
2014-04-18 23:14:30 +00:00
|
|
|
if (initiator.equals(account.getFullJid())) {
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG, "we were initiating. sending file");
|
2014-08-08 09:49:23 +00:00
|
|
|
connection.send(file, onFileTransmissionSatusChanged);
|
2014-04-18 23:14:30 +00:00
|
|
|
} else {
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG, "we were responding. receiving file");
|
2014-08-08 09:49:23 +00:00
|
|
|
connection.receive(file, onFileTransmissionSatusChanged);
|
2014-04-18 23:14:30 +00:00
|
|
|
}
|
2014-04-11 20:49:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-22 11:11:53 +00:00
|
|
|
private JingleSocks5Transport chooseConnection() {
|
|
|
|
JingleSocks5Transport connection = null;
|
2014-08-08 09:49:23 +00:00
|
|
|
for (Entry<String, JingleSocks5Transport> cursor : connections
|
|
|
|
.entrySet()) {
|
|
|
|
JingleSocks5Transport currentConnection = cursor.getValue();
|
2014-08-31 14:28:21 +00:00
|
|
|
// Log.d(Config.LOGTAG,"comparing candidate: "+currentConnection.getCandidate().toString());
|
2014-08-08 09:49:23 +00:00
|
|
|
if (currentConnection.isEstablished()
|
|
|
|
&& (currentConnection.getCandidate().isUsedByCounterpart() || (!currentConnection
|
|
|
|
.getCandidate().isOurs()))) {
|
2014-08-31 14:28:21 +00:00
|
|
|
// Log.d(Config.LOGTAG,"is usable");
|
2014-08-08 09:49:23 +00:00
|
|
|
if (connection == null) {
|
|
|
|
connection = currentConnection;
|
|
|
|
} else {
|
|
|
|
if (connection.getCandidate().getPriority() < currentConnection
|
|
|
|
.getCandidate().getPriority()) {
|
|
|
|
connection = currentConnection;
|
|
|
|
} else if (connection.getCandidate().getPriority() == currentConnection
|
|
|
|
.getCandidate().getPriority()) {
|
2014-08-31 14:28:21 +00:00
|
|
|
// Log.d(Config.LOGTAG,"found two candidates with same priority");
|
2014-08-08 09:49:23 +00:00
|
|
|
if (initiator.equals(account.getFullJid())) {
|
|
|
|
if (currentConnection.getCandidate().isOurs()) {
|
|
|
|
connection = currentConnection;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!currentConnection.getCandidate().isOurs()) {
|
|
|
|
connection = currentConnection;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-04-17 12:52:10 +00:00
|
|
|
return connection;
|
|
|
|
}
|
|
|
|
|
2014-04-16 10:50:53 +00:00
|
|
|
private void sendSuccess() {
|
|
|
|
JinglePacket packet = bootstrapPacket("session-terminate");
|
|
|
|
Reason reason = new Reason();
|
|
|
|
reason.addChild("success");
|
|
|
|
packet.setReason(reason);
|
2014-04-18 23:14:30 +00:00
|
|
|
this.sendJinglePacket(packet);
|
2014-04-16 10:50:53 +00:00
|
|
|
this.disconnect();
|
|
|
|
this.status = STATUS_FINISHED;
|
2014-08-08 09:49:23 +00:00
|
|
|
this.mXmppConnectionService.markMessage(this.message,
|
2014-08-28 09:01:24 +00:00
|
|
|
Message.STATUS_RECEIVED);
|
2014-05-13 12:49:09 +00:00
|
|
|
this.mJingleConnectionManager.finishConnection(this);
|
2014-04-16 10:50:53 +00:00
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-22 11:11:53 +00:00
|
|
|
private void sendFallbackToIbb() {
|
|
|
|
JinglePacket packet = this.bootstrapPacket("transport-replace");
|
2014-08-08 09:49:23 +00:00
|
|
|
Content content = new Content(this.contentCreator, this.contentName);
|
2014-04-22 11:11:53 +00:00
|
|
|
this.transportId = this.mJingleConnectionManager.nextRandomId();
|
|
|
|
content.setTransportId(this.transportId);
|
2014-08-08 09:49:23 +00:00
|
|
|
content.ibbTransport().setAttribute("block-size",
|
2014-09-01 08:40:45 +00:00
|
|
|
Integer.toString(this.ibbBlockSize));
|
2014-04-22 11:11:53 +00:00
|
|
|
packet.setContent(content);
|
|
|
|
this.sendJinglePacket(packet);
|
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-05-13 12:49:09 +00:00
|
|
|
private boolean receiveFallbackToIbb(JinglePacket packet) {
|
2014-08-08 09:49:23 +00:00
|
|
|
String receivedBlockSize = packet.getJingleContent().ibbTransport()
|
|
|
|
.getAttribute("block-size");
|
|
|
|
if (receivedBlockSize != null) {
|
2014-04-22 11:11:53 +00:00
|
|
|
int bs = Integer.parseInt(receivedBlockSize);
|
2014-08-08 09:49:23 +00:00
|
|
|
if (bs > this.ibbBlockSize) {
|
2014-04-22 11:11:53 +00:00
|
|
|
this.ibbBlockSize = bs;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.transportId = packet.getJingleContent().getTransportId();
|
2014-08-08 09:49:23 +00:00
|
|
|
this.transport = new JingleInbandTransport(this.account,
|
|
|
|
this.responder, this.transportId, this.ibbBlockSize);
|
2014-06-29 11:44:59 +00:00
|
|
|
this.transport.receive(file, onFileTransmissionSatusChanged);
|
2014-04-22 11:11:53 +00:00
|
|
|
JinglePacket answer = bootstrapPacket("transport-accept");
|
|
|
|
Content content = new Content("initiator", "a-file-offer");
|
|
|
|
content.setTransportId(this.transportId);
|
2014-08-08 09:49:23 +00:00
|
|
|
content.ibbTransport().setAttribute("block-size",
|
2014-09-01 08:40:45 +00:00
|
|
|
Integer.toString(this.ibbBlockSize));
|
2014-04-22 11:11:53 +00:00
|
|
|
answer.setContent(content);
|
|
|
|
this.sendJinglePacket(answer);
|
2014-05-13 12:49:09 +00:00
|
|
|
return true;
|
2014-04-22 11:11:53 +00:00
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-05-13 12:49:09 +00:00
|
|
|
private boolean receiveTransportAccept(JinglePacket packet) {
|
2014-04-22 11:11:53 +00:00
|
|
|
if (packet.getJingleContent().hasIbbTransport()) {
|
2014-08-08 09:49:23 +00:00
|
|
|
String receivedBlockSize = packet.getJingleContent().ibbTransport()
|
|
|
|
.getAttribute("block-size");
|
|
|
|
if (receivedBlockSize != null) {
|
2014-04-22 11:11:53 +00:00
|
|
|
int bs = Integer.parseInt(receivedBlockSize);
|
2014-08-08 09:49:23 +00:00
|
|
|
if (bs > this.ibbBlockSize) {
|
2014-04-22 11:11:53 +00:00
|
|
|
this.ibbBlockSize = bs;
|
|
|
|
}
|
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
this.transport = new JingleInbandTransport(this.account,
|
|
|
|
this.responder, this.transportId, this.ibbBlockSize);
|
2014-04-22 11:11:53 +00:00
|
|
|
this.transport.connect(new OnTransportConnected() {
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-22 11:11:53 +00:00
|
|
|
@Override
|
|
|
|
public void failed() {
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG, "ibb open failed");
|
2014-04-22 11:11:53 +00:00
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-22 11:11:53 +00:00
|
|
|
@Override
|
|
|
|
public void established() {
|
2014-08-08 09:49:23 +00:00
|
|
|
JingleConnection.this.transport.send(file,
|
|
|
|
onFileTransmissionSatusChanged);
|
2014-04-22 11:11:53 +00:00
|
|
|
}
|
|
|
|
});
|
2014-05-13 12:49:09 +00:00
|
|
|
return true;
|
2014-04-22 11:11:53 +00:00
|
|
|
} else {
|
2014-05-13 12:49:09 +00:00
|
|
|
return false;
|
2014-04-22 11:11:53 +00:00
|
|
|
}
|
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-23 19:19:56 +00:00
|
|
|
private void receiveSuccess() {
|
2014-04-13 09:32:45 +00:00
|
|
|
this.status = STATUS_FINISHED;
|
2014-08-08 09:49:23 +00:00
|
|
|
this.mXmppConnectionService.markMessage(this.message,
|
|
|
|
Message.STATUS_SEND);
|
2014-04-13 09:32:45 +00:00
|
|
|
this.disconnect();
|
2014-05-13 12:49:09 +00:00
|
|
|
this.mJingleConnectionManager.finishConnection(this);
|
2014-04-13 09:32:45 +00:00
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-07-03 20:55:20 +00:00
|
|
|
public void cancel() {
|
2014-08-19 13:06:50 +00:00
|
|
|
this.status = STATUS_CANCELED;
|
2014-04-13 09:32:45 +00:00
|
|
|
this.disconnect();
|
2014-08-08 09:49:23 +00:00
|
|
|
if (this.message != null) {
|
2014-06-29 11:44:59 +00:00
|
|
|
if (this.responder.equals(account.getFullJid())) {
|
2014-08-08 09:49:23 +00:00
|
|
|
this.mXmppConnectionService.markMessage(this.message,
|
|
|
|
Message.STATUS_RECEPTION_FAILED);
|
2014-06-29 11:44:59 +00:00
|
|
|
} else {
|
|
|
|
if (this.status == STATUS_INITIATED) {
|
2014-08-08 09:49:23 +00:00
|
|
|
this.mXmppConnectionService.markMessage(this.message,
|
|
|
|
Message.STATUS_SEND_REJECTED);
|
2014-06-29 11:44:59 +00:00
|
|
|
} else {
|
2014-08-08 09:49:23 +00:00
|
|
|
this.mXmppConnectionService.markMessage(this.message,
|
|
|
|
Message.STATUS_SEND_FAILED);
|
2014-06-29 11:44:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-05-13 12:49:09 +00:00
|
|
|
this.mJingleConnectionManager.finishConnection(this);
|
2014-04-13 09:32:45 +00:00
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-23 19:19:56 +00:00
|
|
|
private void sendCancel() {
|
|
|
|
JinglePacket packet = bootstrapPacket("session-terminate");
|
|
|
|
Reason reason = new Reason();
|
|
|
|
reason.addChild("cancel");
|
|
|
|
packet.setReason(reason);
|
|
|
|
this.sendJinglePacket(packet);
|
|
|
|
}
|
2014-04-18 23:14:30 +00:00
|
|
|
|
2014-04-14 19:21:13 +00:00
|
|
|
private void connectNextCandidate() {
|
2014-08-08 09:49:23 +00:00
|
|
|
for (JingleCandidate candidate : this.candidates) {
|
|
|
|
if ((!connections.containsKey(candidate.getCid()) && (!candidate
|
|
|
|
.isOurs()))) {
|
2014-04-14 19:21:13 +00:00
|
|
|
this.connectWithCandidate(candidate);
|
2014-04-17 12:52:10 +00:00
|
|
|
return;
|
2014-04-14 19:21:13 +00:00
|
|
|
}
|
|
|
|
}
|
2014-04-17 12:52:10 +00:00
|
|
|
this.sendCandidateError();
|
2014-04-14 19:21:13 +00:00
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-17 12:52:10 +00:00
|
|
|
private void connectWithCandidate(final JingleCandidate candidate) {
|
2014-08-08 09:49:23 +00:00
|
|
|
final JingleSocks5Transport socksConnection = new JingleSocks5Transport(
|
|
|
|
this, candidate);
|
2014-04-17 12:52:10 +00:00
|
|
|
connections.put(candidate.getCid(), socksConnection);
|
2014-04-22 11:11:53 +00:00
|
|
|
socksConnection.connect(new OnTransportConnected() {
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-14 19:21:13 +00:00
|
|
|
@Override
|
|
|
|
public void failed() {
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG,
|
2014-08-08 09:49:23 +00:00
|
|
|
"connection failed with " + candidate.getHost() + ":"
|
|
|
|
+ candidate.getPort());
|
2014-04-14 19:21:13 +00:00
|
|
|
connectNextCandidate();
|
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-14 19:21:13 +00:00
|
|
|
@Override
|
|
|
|
public void established() {
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG,
|
2014-08-08 09:49:23 +00:00
|
|
|
"established connection with " + candidate.getHost()
|
|
|
|
+ ":" + candidate.getPort());
|
2014-04-17 12:52:10 +00:00
|
|
|
sendCandidateUsed(candidate.getCid());
|
2014-04-14 19:21:13 +00:00
|
|
|
}
|
|
|
|
});
|
2014-04-11 19:13:09 +00:00
|
|
|
}
|
2014-04-14 19:21:13 +00:00
|
|
|
|
2014-04-13 09:32:45 +00:00
|
|
|
private void disconnect() {
|
2014-08-08 09:49:23 +00:00
|
|
|
Iterator<Entry<String, JingleSocks5Transport>> it = this.connections
|
|
|
|
.entrySet().iterator();
|
|
|
|
while (it.hasNext()) {
|
|
|
|
Entry<String, JingleSocks5Transport> pairs = it.next();
|
|
|
|
pairs.getValue().disconnect();
|
|
|
|
it.remove();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-20 20:34:27 +00:00
|
|
|
private void sendProxyActivated(String cid) {
|
|
|
|
JinglePacket packet = bootstrapPacket("transport-info");
|
2014-08-08 09:49:23 +00:00
|
|
|
Content content = new Content(this.contentCreator, this.contentName);
|
2014-04-20 20:34:27 +00:00
|
|
|
content.setTransportId(this.transportId);
|
2014-08-08 09:49:23 +00:00
|
|
|
content.socks5transport().addChild("activated")
|
|
|
|
.setAttribute("cid", cid);
|
2014-04-20 20:34:27 +00:00
|
|
|
packet.setContent(content);
|
|
|
|
this.sendJinglePacket(packet);
|
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-14 18:35:11 +00:00
|
|
|
private void sendCandidateUsed(final String cid) {
|
2014-04-16 10:50:53 +00:00
|
|
|
JinglePacket packet = bootstrapPacket("transport-info");
|
2014-08-08 09:49:23 +00:00
|
|
|
Content content = new Content(this.contentCreator, this.contentName);
|
2014-04-20 20:34:27 +00:00
|
|
|
content.setTransportId(this.transportId);
|
2014-08-08 09:49:23 +00:00
|
|
|
content.socks5transport().addChild("candidate-used")
|
|
|
|
.setAttribute("cid", cid);
|
2014-04-13 19:10:36 +00:00
|
|
|
packet.setContent(content);
|
2014-04-18 09:57:28 +00:00
|
|
|
this.sentCandidate = true;
|
2014-08-08 09:49:23 +00:00
|
|
|
if ((receivedCandidate) && (status == STATUS_ACCEPTED)) {
|
2014-04-19 09:58:35 +00:00
|
|
|
connect();
|
|
|
|
}
|
2014-04-21 18:39:57 +00:00
|
|
|
this.sendJinglePacket(packet);
|
2014-04-17 12:52:10 +00:00
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-17 12:52:10 +00:00
|
|
|
private void sendCandidateError() {
|
|
|
|
JinglePacket packet = bootstrapPacket("transport-info");
|
2014-08-08 09:49:23 +00:00
|
|
|
Content content = new Content(this.contentCreator, this.contentName);
|
2014-04-20 20:34:27 +00:00
|
|
|
content.setTransportId(this.transportId);
|
2014-04-21 18:39:57 +00:00
|
|
|
content.socks5transport().addChild("candidate-error");
|
2014-04-17 12:52:10 +00:00
|
|
|
packet.setContent(content);
|
2014-04-18 09:57:28 +00:00
|
|
|
this.sentCandidate = true;
|
2014-08-08 09:49:23 +00:00
|
|
|
if ((receivedCandidate) && (status == STATUS_ACCEPTED)) {
|
2014-04-19 09:58:35 +00:00
|
|
|
connect();
|
|
|
|
}
|
2014-04-21 18:39:57 +00:00
|
|
|
this.sendJinglePacket(packet);
|
2014-04-11 19:13:09 +00:00
|
|
|
}
|
2014-04-07 18:05:45 +00:00
|
|
|
|
2014-04-11 19:13:09 +00:00
|
|
|
public String getInitiator() {
|
|
|
|
return this.initiator;
|
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-11 19:13:09 +00:00
|
|
|
public String getResponder() {
|
|
|
|
return this.responder;
|
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-13 09:32:45 +00:00
|
|
|
public int getStatus() {
|
|
|
|
return this.status;
|
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-17 12:52:10 +00:00
|
|
|
private boolean equalCandidateExists(JingleCandidate candidate) {
|
2014-08-08 09:49:23 +00:00
|
|
|
for (JingleCandidate c : this.candidates) {
|
2014-04-17 12:52:10 +00:00
|
|
|
if (c.equalValues(candidate)) {
|
2014-04-14 18:35:11 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-17 12:52:10 +00:00
|
|
|
private void mergeCandidate(JingleCandidate candidate) {
|
2014-08-08 09:49:23 +00:00
|
|
|
for (JingleCandidate c : this.candidates) {
|
2014-04-17 12:52:10 +00:00
|
|
|
if (c.equals(candidate)) {
|
2014-04-14 18:35:11 +00:00
|
|
|
return;
|
2014-04-13 16:09:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
this.candidates.add(candidate);
|
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-17 12:52:10 +00:00
|
|
|
private void mergeCandidates(List<JingleCandidate> candidates) {
|
2014-08-08 09:49:23 +00:00
|
|
|
for (JingleCandidate c : candidates) {
|
2014-04-14 18:35:11 +00:00
|
|
|
mergeCandidate(c);
|
2014-04-13 16:09:40 +00:00
|
|
|
}
|
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-17 12:52:10 +00:00
|
|
|
private JingleCandidate getCandidate(String cid) {
|
2014-08-08 09:49:23 +00:00
|
|
|
for (JingleCandidate c : this.candidates) {
|
2014-04-17 12:52:10 +00:00
|
|
|
if (c.getCid().equals(cid)) {
|
2014-04-14 19:21:13 +00:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-20 20:34:27 +00:00
|
|
|
interface OnProxyActivated {
|
|
|
|
public void success();
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-20 20:34:27 +00:00
|
|
|
public void failed();
|
|
|
|
}
|
2014-04-22 11:11:53 +00:00
|
|
|
|
|
|
|
public boolean hasTransportId(String sid) {
|
|
|
|
return sid.equals(this.transportId);
|
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-22 11:11:53 +00:00
|
|
|
public JingleTransport getTransport() {
|
|
|
|
return this.transport;
|
|
|
|
}
|
2014-04-22 16:46:40 +00:00
|
|
|
|
2014-09-08 18:09:44 +00:00
|
|
|
public void start() {
|
2014-08-08 09:49:23 +00:00
|
|
|
if (status == STATUS_INITIATED) {
|
2014-04-22 16:46:40 +00:00
|
|
|
new Thread(new Runnable() {
|
2014-08-08 09:49:23 +00:00
|
|
|
|
2014-04-22 16:46:40 +00:00
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
sendAccept();
|
|
|
|
}
|
|
|
|
}).start();
|
|
|
|
} else {
|
2014-08-31 14:28:21 +00:00
|
|
|
Log.d(Config.LOGTAG, "status (" + status + ") was not ok");
|
2014-04-22 16:46:40 +00:00
|
|
|
}
|
|
|
|
}
|
2014-04-07 18:05:45 +00:00
|
|
|
}
|