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-11 19:13:09 +00:00
|
|
|
import java.util.HashMap;
|
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-04-13 09:32:45 +00:00
|
|
|
import java.util.Map;
|
|
|
|
import java.util.Map.Entry;
|
2014-04-07 18:05:45 +00:00
|
|
|
|
|
|
|
import android.util.Log;
|
|
|
|
|
|
|
|
import eu.siacs.conversations.entities.Account;
|
2014-04-13 09:32:45 +00:00
|
|
|
import eu.siacs.conversations.entities.Conversation;
|
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
|
|
|
|
|
|
|
public class JingleConnection {
|
|
|
|
|
|
|
|
private JingleConnectionManager mJingleConnectionManager;
|
|
|
|
private XmppConnectionService mXmppConnectionService;
|
|
|
|
|
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-10 12:12:08 +00:00
|
|
|
public static final int STATUS_FAILED = 99;
|
|
|
|
|
|
|
|
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-11 19:13:09 +00:00
|
|
|
private List<Element> candidates = new ArrayList<Element>();
|
|
|
|
private HashMap<String, SocksConnection> connections = new HashMap<String, SocksConnection>();
|
2014-04-13 09:32:45 +00:00
|
|
|
private JingleFile file = null;
|
2014-04-07 18:05:45 +00:00
|
|
|
|
2014-04-08 21:15:55 +00:00
|
|
|
private OnIqPacketReceived responseListener = new OnIqPacketReceived() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onIqPacketReceived(Account account, IqPacket packet) {
|
2014-04-10 12:12:08 +00:00
|
|
|
if (packet.getType() == IqPacket.TYPE_ERROR) {
|
2014-04-11 19:13:09 +00:00
|
|
|
mXmppConnectionService.markMessage(message, Message.STATUS_SEND_FAILED);
|
2014-04-10 12:12:08 +00:00
|
|
|
status = STATUS_FAILED;
|
|
|
|
}
|
2014-04-08 21:15:55 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
public JingleConnection(JingleConnectionManager mJingleConnectionManager) {
|
2014-04-07 18:05:45 +00:00
|
|
|
this.mJingleConnectionManager = mJingleConnectionManager;
|
|
|
|
this.mXmppConnectionService = mJingleConnectionManager.getXmppConnectionService();
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getSessionId() {
|
|
|
|
return this.sessionId;
|
|
|
|
}
|
|
|
|
|
2014-04-10 12:12:08 +00:00
|
|
|
public String getAccountJid() {
|
|
|
|
return this.account.getJid();
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getCounterPart() {
|
|
|
|
return this.message.getCounterpart();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void deliverPacket(JinglePacket packet) {
|
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();
|
|
|
|
if (reason.hasChild("cancel")) {
|
|
|
|
this.cancel();
|
|
|
|
} else if (reason.hasChild("success")) {
|
|
|
|
this.finish();
|
2014-04-11 19:13:09 +00:00
|
|
|
}
|
|
|
|
} else if (packet.isAction("session-accept")) {
|
|
|
|
accept(packet);
|
2014-04-11 20:49:26 +00:00
|
|
|
} else if (packet.isAction("transport-info")) {
|
|
|
|
transportInfo(packet);
|
2014-04-11 19:13:09 +00:00
|
|
|
} else {
|
|
|
|
Log.d("xmppService","packet arrived in connection. action was "+packet.getAction());
|
2014-04-10 12:12:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-07 18:05:45 +00:00
|
|
|
public void init(Message message) {
|
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-04-11 19:13:09 +00:00
|
|
|
this.mJingleConnectionManager.getPrimaryCandidate(account, new OnPrimaryCandidateFound() {
|
2014-04-08 21:15:55 +00:00
|
|
|
|
|
|
|
@Override
|
2014-04-11 19:13:09 +00:00
|
|
|
public void onPrimaryCandidateFound(boolean success, Element canditate) {
|
2014-04-08 21:15:55 +00:00
|
|
|
if (success) {
|
2014-04-11 19:13:09 +00:00
|
|
|
candidates.add(canditate);
|
2014-04-08 21:15:55 +00:00
|
|
|
}
|
|
|
|
sendInitRequest();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-04-13 09:32:45 +00:00
|
|
|
public void init(Account account, JinglePacket packet) {
|
|
|
|
Conversation conversation = this.mXmppConnectionService.findOrCreateConversation(account, packet.getFrom().split("/")[0], false);
|
|
|
|
this.message = new Message(conversation, "receiving image file", Message.ENCRYPTION_NONE);
|
|
|
|
this.message.setType(Message.TYPE_IMAGE);
|
|
|
|
this.message.setStatus(Message.STATUS_RECIEVING);
|
|
|
|
this.account = account;
|
|
|
|
this.initiator = packet.getFrom();
|
|
|
|
this.responder = this.account.getFullJid();
|
|
|
|
this.sessionId = packet.getSessionId();
|
|
|
|
this.candidates.addAll(packet.getJingleContent().getCanditates());
|
|
|
|
Log.d("xmppService","new incomming jingle session "+this.sessionId+" num canditaes:"+this.candidates.size());
|
|
|
|
}
|
|
|
|
|
2014-04-08 21:15:55 +00:00
|
|
|
private void sendInitRequest() {
|
2014-04-07 18:05:45 +00:00
|
|
|
JinglePacket packet = this.bootstrapPacket();
|
|
|
|
packet.setAction("session-initiate");
|
|
|
|
packet.setInitiator(this.account.getFullJid());
|
|
|
|
Content content = new Content();
|
|
|
|
if (message.getType() == Message.TYPE_IMAGE) {
|
|
|
|
content.setAttribute("creator", "initiator");
|
|
|
|
content.setAttribute("name", "a-file-offer");
|
2014-04-12 08:02:48 +00:00
|
|
|
this.file = this.mXmppConnectionService.getFileBackend().getImageFile(message);
|
|
|
|
content.offerFile(file,message.getBody());
|
2014-04-11 19:13:09 +00:00
|
|
|
content.setCandidates(this.mJingleConnectionManager.nextRandomId(),this.candidates);
|
2014-04-07 18:05:45 +00:00
|
|
|
packet.setContent(content);
|
|
|
|
Log.d("xmppService",packet.toString());
|
2014-04-08 21:15:55 +00:00
|
|
|
account.getXmppConnection().sendIqPacket(packet, this.responseListener);
|
2014-04-10 12:12:08 +00:00
|
|
|
this.status = STATUS_INITIATED;
|
2014-04-07 18:05:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private JinglePacket bootstrapPacket() {
|
|
|
|
JinglePacket packet = new JinglePacket();
|
|
|
|
packet.setFrom(account.getFullJid());
|
2014-04-10 12:12:08 +00:00
|
|
|
packet.setTo(this.message.getCounterpart()); //fixme, not right in all cases;
|
2014-04-07 18:05:45 +00:00
|
|
|
packet.setSessionId(this.sessionId);
|
|
|
|
return packet;
|
|
|
|
}
|
2014-04-11 19:13:09 +00:00
|
|
|
|
|
|
|
private void accept(JinglePacket packet) {
|
|
|
|
Log.d("xmppService","session-accept: "+packet.toString());
|
|
|
|
Content content = packet.getJingleContent();
|
|
|
|
this.candidates.addAll(content.getCanditates());
|
|
|
|
this.status = STATUS_ACCEPTED;
|
|
|
|
this.connectWithCandidates();
|
|
|
|
IqPacket response = packet.generateRespone(IqPacket.TYPE_RESULT);
|
|
|
|
Log.d("xmppService","response "+response.toString());
|
|
|
|
account.getXmppConnection().sendIqPacket(response, null);
|
|
|
|
}
|
|
|
|
|
2014-04-11 20:49:26 +00:00
|
|
|
private void transportInfo(JinglePacket packet) {
|
|
|
|
Content content = packet.getJingleContent();
|
|
|
|
Log.d("xmppService","transport info : "+content.toString());
|
|
|
|
String cid = content.getUsedCandidate();
|
|
|
|
if (cid!=null) {
|
2014-04-13 09:32:45 +00:00
|
|
|
final JingleFile file = this.mXmppConnectionService.getFileBackend().getImageFile(this.message);
|
2014-04-11 20:49:26 +00:00
|
|
|
final SocksConnection connection = this.connections.get(cid);
|
2014-04-13 09:32:45 +00:00
|
|
|
final OnFileTransmitted callback = new OnFileTransmitted() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onFileTransmitted(JingleFile file) {
|
|
|
|
Log.d("xmppService","sucessfully transmitted file. sha1:"+file.getSha1Sum());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
final IqPacket response = packet.generateRespone(IqPacket.TYPE_RESULT);
|
2014-04-11 20:49:26 +00:00
|
|
|
if (connection.isProxy()) {
|
|
|
|
IqPacket activation = new IqPacket(IqPacket.TYPE_SET);
|
|
|
|
activation.setTo(connection.getJid());
|
|
|
|
activation.query("http://jabber.org/protocol/bytestreams").setAttribute("sid", this.getSessionId());
|
|
|
|
activation.query().addChild("activate").setContent(this.getResponder());
|
|
|
|
Log.d("xmppService","connection is proxy. need to activate "+activation.toString());
|
|
|
|
this.account.getXmppConnection().sendIqPacket(activation, new OnIqPacketReceived() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onIqPacketReceived(Account account, IqPacket packet) {
|
2014-04-13 09:32:45 +00:00
|
|
|
account.getXmppConnection().sendIqPacket(response, null);
|
2014-04-11 20:49:26 +00:00
|
|
|
Log.d("xmppService","activation result: "+packet.toString());
|
2014-04-13 09:32:45 +00:00
|
|
|
connection.send(file,callback);
|
2014-04-11 20:49:26 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
2014-04-13 09:32:45 +00:00
|
|
|
account.getXmppConnection().sendIqPacket(response, null);
|
|
|
|
connection.send(file,callback);
|
2014-04-11 20:49:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-13 09:32:45 +00:00
|
|
|
private void finish() {
|
|
|
|
this.status = STATUS_FINISHED;
|
|
|
|
this.mXmppConnectionService.markMessage(this.message, Message.STATUS_SEND);
|
|
|
|
this.disconnect();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void cancel() {
|
|
|
|
this.disconnect();
|
|
|
|
this.status = STATUS_CANCELED;
|
|
|
|
this.mXmppConnectionService.markMessage(this.message, Message.STATUS_SEND_REJECTED);
|
|
|
|
}
|
|
|
|
|
2014-04-11 19:13:09 +00:00
|
|
|
private void connectWithCandidates() {
|
|
|
|
for(Element canditate : this.candidates) {
|
|
|
|
String host = canditate.getAttribute("host");
|
|
|
|
int port = Integer.parseInt(canditate.getAttribute("port"));
|
2014-04-11 20:49:26 +00:00
|
|
|
String type = canditate.getAttribute("type");
|
|
|
|
String jid = canditate.getAttribute("jid");
|
|
|
|
SocksConnection socksConnection = new SocksConnection(this, host, jid, port,type);
|
2014-04-11 19:13:09 +00:00
|
|
|
socksConnection.connect();
|
|
|
|
this.connections.put(canditate.getAttribute("cid"), socksConnection);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-13 09:32:45 +00:00
|
|
|
private void disconnect() {
|
|
|
|
Iterator<Entry<String, SocksConnection>> it = this.connections.entrySet().iterator();
|
|
|
|
while (it.hasNext()) {
|
|
|
|
Entry<String, SocksConnection> pairs = it.next();
|
|
|
|
pairs.getValue().disconnect();
|
|
|
|
it.remove();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-11 19:13:09 +00:00
|
|
|
private void sendCandidateUsed(String cid) {
|
|
|
|
|
|
|
|
}
|
2014-04-07 18:05:45 +00:00
|
|
|
|
2014-04-11 19:13:09 +00:00
|
|
|
public String getInitiator() {
|
|
|
|
return this.initiator;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getResponder() {
|
|
|
|
return this.responder;
|
|
|
|
}
|
2014-04-13 09:32:45 +00:00
|
|
|
|
|
|
|
public int getStatus() {
|
|
|
|
return this.status;
|
|
|
|
}
|
2014-04-07 18:05:45 +00:00
|
|
|
}
|