2015-06-28 09:19:07 +00:00
|
|
|
package eu.siacs.conversations.http;
|
|
|
|
|
2015-06-29 13:38:16 +00:00
|
|
|
import android.app.PendingIntent;
|
2015-07-29 21:45:37 +00:00
|
|
|
import android.content.Intent;
|
|
|
|
import android.net.Uri;
|
2015-06-28 09:19:07 +00:00
|
|
|
import android.util.Log;
|
2015-07-31 23:19:16 +00:00
|
|
|
import android.util.Pair;
|
2015-06-28 09:19:07 +00:00
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.InputStream;
|
|
|
|
import java.io.OutputStream;
|
|
|
|
import java.net.HttpURLConnection;
|
|
|
|
import java.net.MalformedURLException;
|
|
|
|
import java.net.URL;
|
|
|
|
|
2015-07-10 12:14:45 +00:00
|
|
|
import javax.net.ssl.HttpsURLConnection;
|
|
|
|
|
2015-06-28 09:19:07 +00:00
|
|
|
import eu.siacs.conversations.Config;
|
|
|
|
import eu.siacs.conversations.entities.Account;
|
|
|
|
import eu.siacs.conversations.entities.DownloadableFile;
|
|
|
|
import eu.siacs.conversations.entities.Message;
|
2015-07-20 12:26:29 +00:00
|
|
|
import eu.siacs.conversations.entities.Transferable;
|
2015-06-28 09:19:07 +00:00
|
|
|
import eu.siacs.conversations.persistance.FileBackend;
|
2015-07-31 23:19:16 +00:00
|
|
|
import eu.siacs.conversations.services.AbstractConnectionManager;
|
2015-06-28 09:19:07 +00:00
|
|
|
import eu.siacs.conversations.services.XmppConnectionService;
|
2015-06-29 13:38:16 +00:00
|
|
|
import eu.siacs.conversations.ui.UiCallback;
|
2015-06-29 00:04:58 +00:00
|
|
|
import eu.siacs.conversations.utils.CryptoHelper;
|
2015-06-28 09:19:07 +00:00
|
|
|
import eu.siacs.conversations.utils.Xmlns;
|
|
|
|
import eu.siacs.conversations.xml.Element;
|
|
|
|
import eu.siacs.conversations.xmpp.OnIqPacketReceived;
|
|
|
|
import eu.siacs.conversations.xmpp.jid.Jid;
|
|
|
|
import eu.siacs.conversations.xmpp.stanzas.IqPacket;
|
|
|
|
|
2015-07-10 13:11:03 +00:00
|
|
|
public class HttpUploadConnection implements Transferable {
|
2015-06-28 09:19:07 +00:00
|
|
|
|
|
|
|
private HttpConnectionManager mHttpConnectionManager;
|
|
|
|
private XmppConnectionService mXmppConnectionService;
|
|
|
|
|
|
|
|
private boolean canceled = false;
|
2015-07-20 16:11:33 +00:00
|
|
|
private boolean delayed = false;
|
2015-06-28 09:19:07 +00:00
|
|
|
private Account account;
|
|
|
|
private DownloadableFile file;
|
|
|
|
private Message message;
|
|
|
|
private URL mGetUrl;
|
|
|
|
private URL mPutUrl;
|
|
|
|
|
2015-06-29 00:04:58 +00:00
|
|
|
private byte[] key = null;
|
|
|
|
|
2015-06-28 09:19:07 +00:00
|
|
|
private long transmitted = 0;
|
2015-07-29 21:45:37 +00:00
|
|
|
private int expected = 1;
|
2015-06-28 09:19:07 +00:00
|
|
|
|
|
|
|
public HttpUploadConnection(HttpConnectionManager httpConnectionManager) {
|
|
|
|
this.mHttpConnectionManager = httpConnectionManager;
|
|
|
|
this.mXmppConnectionService = httpConnectionManager.getXmppConnectionService();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean start() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getStatus() {
|
|
|
|
return STATUS_UPLOADING;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public long getFileSize() {
|
|
|
|
return this.file.getExpectedSize();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getProgress() {
|
|
|
|
return (int) ((((double) transmitted) / expected) * 100);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void cancel() {
|
|
|
|
this.canceled = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void fail() {
|
|
|
|
mHttpConnectionManager.finishUploadConnection(this);
|
2015-07-10 13:11:03 +00:00
|
|
|
message.setTransferable(null);
|
2015-06-28 09:19:07 +00:00
|
|
|
mXmppConnectionService.markMessage(message,Message.STATUS_SEND_FAILED);
|
|
|
|
}
|
|
|
|
|
2015-07-20 16:11:33 +00:00
|
|
|
public void init(Message message, boolean delay) {
|
2015-06-28 09:19:07 +00:00
|
|
|
this.message = message;
|
2015-07-10 13:11:03 +00:00
|
|
|
message.setTransferable(this);
|
2015-06-28 09:19:07 +00:00
|
|
|
mXmppConnectionService.markMessage(message,Message.STATUS_UNSEND);
|
|
|
|
this.account = message.getConversation().getAccount();
|
|
|
|
this.file = mXmppConnectionService.getFileBackend().getFile(message, false);
|
|
|
|
this.file.setExpectedSize(this.file.getSize());
|
2015-07-20 16:11:33 +00:00
|
|
|
this.delayed = delay;
|
2015-06-29 00:04:58 +00:00
|
|
|
|
2015-07-19 12:17:25 +00:00
|
|
|
if (Config.ENCRYPT_ON_HTTP_UPLOADED
|
|
|
|
|| message.getEncryption() == Message.ENCRYPTION_AXOLOTL
|
|
|
|
|| message.getEncryption() == Message.ENCRYPTION_OTR) {
|
2015-06-29 00:04:58 +00:00
|
|
|
this.key = new byte[48];
|
|
|
|
mXmppConnectionService.getRNG().nextBytes(this.key);
|
2015-07-31 23:19:16 +00:00
|
|
|
this.file.setKeyAndIv(this.key);
|
2015-06-29 00:04:58 +00:00
|
|
|
}
|
|
|
|
|
2015-06-28 09:19:07 +00:00
|
|
|
Jid host = account.getXmppConnection().findDiscoItemByFeature(Xmlns.HTTP_UPLOAD);
|
|
|
|
IqPacket request = mXmppConnectionService.getIqGenerator().requestHttpUploadSlot(host,file);
|
|
|
|
mXmppConnectionService.sendIqPacket(account, request, new OnIqPacketReceived() {
|
|
|
|
@Override
|
|
|
|
public void onIqPacketReceived(Account account, IqPacket packet) {
|
|
|
|
if (packet.getType() == IqPacket.TYPE.RESULT) {
|
|
|
|
Element slot = packet.findChild("slot",Xmlns.HTTP_UPLOAD);
|
|
|
|
if (slot != null) {
|
|
|
|
try {
|
|
|
|
mGetUrl = new URL(slot.findChildContent("get"));
|
|
|
|
mPutUrl = new URL(slot.findChildContent("put"));
|
|
|
|
if (!canceled) {
|
|
|
|
new Thread(new FileUploader()).start();
|
|
|
|
}
|
|
|
|
} catch (MalformedURLException e) {
|
|
|
|
fail();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
fail();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
fail();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private class FileUploader implements Runnable {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
this.upload();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void upload() {
|
|
|
|
OutputStream os = null;
|
|
|
|
InputStream is = null;
|
|
|
|
HttpURLConnection connection = null;
|
|
|
|
try {
|
|
|
|
Log.d(Config.LOGTAG, "uploading to " + mPutUrl.toString());
|
|
|
|
connection = (HttpURLConnection) mPutUrl.openConnection();
|
2015-07-10 12:14:45 +00:00
|
|
|
if (connection instanceof HttpsURLConnection) {
|
|
|
|
mHttpConnectionManager.setupTrustManager((HttpsURLConnection) connection, true);
|
|
|
|
}
|
2015-07-31 23:19:16 +00:00
|
|
|
Pair<InputStream,Integer> pair = AbstractConnectionManager.createInputStream(file,true);
|
|
|
|
is = pair.first;
|
|
|
|
expected = pair.second;
|
2015-06-28 09:19:07 +00:00
|
|
|
connection.setRequestMethod("PUT");
|
2015-07-29 21:45:37 +00:00
|
|
|
connection.setFixedLengthStreamingMode(expected);
|
2015-06-28 09:19:07 +00:00
|
|
|
connection.setDoOutput(true);
|
|
|
|
connection.connect();
|
|
|
|
os = connection.getOutputStream();
|
|
|
|
transmitted = 0;
|
|
|
|
int count = -1;
|
|
|
|
byte[] buffer = new byte[4096];
|
|
|
|
while (((count = is.read(buffer)) != -1) && !canceled) {
|
|
|
|
transmitted += count;
|
|
|
|
os.write(buffer, 0, count);
|
|
|
|
mXmppConnectionService.updateConversationUi();
|
|
|
|
}
|
|
|
|
os.flush();
|
|
|
|
os.close();
|
|
|
|
is.close();
|
|
|
|
int code = connection.getResponseCode();
|
2015-07-19 11:36:02 +00:00
|
|
|
if (code == 200 || code == 201) {
|
2015-06-28 09:19:07 +00:00
|
|
|
Log.d(Config.LOGTAG, "finished uploading file");
|
2015-06-29 00:04:58 +00:00
|
|
|
if (key != null) {
|
|
|
|
mGetUrl = new URL(mGetUrl.toString() + "#" + CryptoHelper.bytesToHex(key));
|
|
|
|
}
|
2015-06-30 15:15:02 +00:00
|
|
|
mXmppConnectionService.getFileBackend().updateFileParams(message, mGetUrl);
|
2015-07-29 21:45:37 +00:00
|
|
|
Intent intent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
|
|
|
|
intent.setData(Uri.fromFile(file));
|
|
|
|
mXmppConnectionService.sendBroadcast(intent);
|
2015-07-10 13:11:03 +00:00
|
|
|
message.setTransferable(null);
|
2015-06-28 11:14:21 +00:00
|
|
|
message.setCounterpart(message.getConversation().getJid().toBareJid());
|
2015-06-29 13:38:16 +00:00
|
|
|
if (message.getEncryption() == Message.ENCRYPTION_DECRYPTED) {
|
|
|
|
mXmppConnectionService.getPgpEngine().encrypt(message, new UiCallback<Message>() {
|
|
|
|
@Override
|
|
|
|
public void success(Message message) {
|
2015-07-20 16:11:33 +00:00
|
|
|
mXmppConnectionService.resendMessage(message,delayed);
|
2015-06-29 13:38:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void error(int errorCode, Message object) {
|
|
|
|
fail();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void userInputRequried(PendingIntent pi, Message object) {
|
|
|
|
fail();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
2015-07-29 21:45:37 +00:00
|
|
|
mXmppConnectionService.resendMessage(message, delayed);
|
2015-06-29 13:38:16 +00:00
|
|
|
}
|
2015-06-28 09:19:07 +00:00
|
|
|
} else {
|
|
|
|
fail();
|
|
|
|
}
|
|
|
|
} catch (IOException e) {
|
2015-07-29 21:45:37 +00:00
|
|
|
e.printStackTrace();
|
2015-07-28 20:26:29 +00:00
|
|
|
Log.d(Config.LOGTAG,"http upload failed "+e.getMessage());
|
2015-06-28 09:19:07 +00:00
|
|
|
fail();
|
|
|
|
} finally {
|
|
|
|
FileBackend.close(is);
|
|
|
|
FileBackend.close(os);
|
|
|
|
if (connection != null) {
|
|
|
|
connection.disconnect();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|