2015-06-28 09:19:07 +00:00
|
|
|
package eu.siacs.conversations.http;
|
|
|
|
|
2015-08-10 17:48:36 +00:00
|
|
|
import android.os.PowerManager;
|
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
|
|
|
|
2015-08-11 14:50:00 +00:00
|
|
|
import java.io.FileNotFoundException;
|
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;
|
2018-01-28 13:17:42 +00:00
|
|
|
import java.util.HashMap;
|
2015-06-28 09:19:07 +00:00
|
|
|
|
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;
|
2016-10-26 10:26:04 +00:00
|
|
|
import eu.siacs.conversations.parser.IqParser;
|
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 00:04:58 +00:00
|
|
|
import eu.siacs.conversations.utils.CryptoHelper;
|
2017-03-01 12:01:46 +00:00
|
|
|
import eu.siacs.conversations.xml.Namespace;
|
2015-06-28 09:19:07 +00:00
|
|
|
import eu.siacs.conversations.xml.Element;
|
|
|
|
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;
|
2015-08-01 20:37:17 +00:00
|
|
|
private String mime;
|
2015-06-28 09:19:07 +00:00
|
|
|
private URL mGetUrl;
|
|
|
|
private URL mPutUrl;
|
2018-01-28 13:17:42 +00:00
|
|
|
private HashMap<String,String> mPutHeaders;
|
2015-11-28 19:11:38 +00:00
|
|
|
private boolean mUseTor = false;
|
2015-06-28 09:19:07 +00:00
|
|
|
|
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-08-01 20:23:58 +00:00
|
|
|
|
|
|
|
private InputStream mFileInputStream;
|
2015-06-28 09:19:07 +00:00
|
|
|
|
|
|
|
public HttpUploadConnection(HttpConnectionManager httpConnectionManager) {
|
|
|
|
this.mHttpConnectionManager = httpConnectionManager;
|
|
|
|
this.mXmppConnectionService = httpConnectionManager.getXmppConnectionService();
|
2015-11-28 19:11:38 +00:00
|
|
|
this.mUseTor = mXmppConnectionService.useTorToConnect();
|
2015-06-28 09:19:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean start() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getStatus() {
|
|
|
|
return STATUS_UPLOADING;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public long getFileSize() {
|
2015-09-15 20:49:43 +00:00
|
|
|
return file == null ? 0 : file.getExpectedSize();
|
2015-06-28 09:19:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getProgress() {
|
2015-09-15 20:49:43 +00:00
|
|
|
if (file == null) {
|
|
|
|
return 0;
|
|
|
|
}
|
2015-08-01 20:23:58 +00:00
|
|
|
return (int) ((((double) transmitted) / file.getExpectedSize()) * 100);
|
2015-06-28 09:19:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void cancel() {
|
|
|
|
this.canceled = true;
|
|
|
|
}
|
|
|
|
|
2016-10-26 10:26:04 +00:00
|
|
|
private void fail(String errorMessage) {
|
2015-06-28 09:19:07 +00:00
|
|
|
mHttpConnectionManager.finishUploadConnection(this);
|
2015-07-10 13:11:03 +00:00
|
|
|
message.setTransferable(null);
|
2016-10-26 10:26:04 +00:00
|
|
|
mXmppConnectionService.markMessage(message, Message.STATUS_SEND_FAILED, errorMessage);
|
2015-08-01 20:23:58 +00:00
|
|
|
FileBackend.close(mFileInputStream);
|
2015-06-28 09:19:07 +00:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
this.account = message.getConversation().getAccount();
|
|
|
|
this.file = mXmppConnectionService.getFileBackend().getFile(message, false);
|
2017-06-01 05:35:18 +00:00
|
|
|
if (message.getEncryption() == Message.ENCRYPTION_PGP || message.getEncryption() == Message.ENCRYPTION_DECRYPTED) {
|
|
|
|
this.mime = "application/pgp-encrypted";
|
|
|
|
} else {
|
|
|
|
this.mime = this.file.getMimeType();
|
|
|
|
}
|
2015-07-20 16:11:33 +00:00
|
|
|
this.delayed = delay;
|
2015-07-19 12:17:25 +00:00
|
|
|
if (Config.ENCRYPT_ON_HTTP_UPLOADED
|
|
|
|
|| message.getEncryption() == Message.ENCRYPTION_AXOLOTL
|
|
|
|
|| message.getEncryption() == Message.ENCRYPTION_OTR) {
|
2017-08-10 03:42:35 +00:00
|
|
|
this.key = new byte[48]; // todo: change this to 44 for 12-byte IV instead of 16-byte at some point in future
|
2015-06-29 00:04:58 +00:00
|
|
|
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-08-11 14:50:00 +00:00
|
|
|
Pair<InputStream,Integer> pair;
|
|
|
|
try {
|
|
|
|
pair = AbstractConnectionManager.createInputStream(file, true);
|
|
|
|
} catch (FileNotFoundException e) {
|
2016-06-15 10:33:59 +00:00
|
|
|
Log.d(Config.LOGTAG,account.getJid().toBareJid()+": could not find file to upload - "+e.getMessage());
|
2016-10-26 10:26:04 +00:00
|
|
|
fail(e.getMessage());
|
2015-08-11 14:50:00 +00:00
|
|
|
return;
|
|
|
|
}
|
2015-08-01 20:23:58 +00:00
|
|
|
this.file.setExpectedSize(pair.second);
|
2017-08-04 09:58:12 +00:00
|
|
|
message.resetFileParams();
|
2015-08-01 20:23:58 +00:00
|
|
|
this.mFileInputStream = pair.first;
|
2017-03-01 12:01:46 +00:00
|
|
|
Jid host = account.getXmppConnection().findDiscoItemByFeature(Namespace.HTTP_UPLOAD);
|
2015-08-01 20:37:17 +00:00
|
|
|
IqPacket request = mXmppConnectionService.getIqGenerator().requestHttpUploadSlot(host,file,mime);
|
2018-01-28 13:17:42 +00:00
|
|
|
mXmppConnectionService.sendIqPacket(account, request, (account, packet) -> {
|
|
|
|
if (packet.getType() == IqPacket.TYPE.RESULT) {
|
|
|
|
Element slot = packet.findChild("slot", Namespace.HTTP_UPLOAD);
|
|
|
|
if (slot != null) {
|
|
|
|
try {
|
|
|
|
final Element put = slot.findChild("put");
|
|
|
|
final Element get = slot.findChild("get");
|
|
|
|
final String putUrl = put == null ? null : put.getAttribute("url");
|
|
|
|
final String getUrl = get == null ? null : get.getAttribute("url");
|
|
|
|
if (getUrl != null && putUrl != null) {
|
|
|
|
this.mGetUrl = new URL(getUrl);
|
|
|
|
this.mPutUrl = new URL(putUrl);
|
|
|
|
this.mPutHeaders = new HashMap<>();
|
|
|
|
for(Element child : put.getChildren()) {
|
|
|
|
if ("header".equals(child.getName())) {
|
|
|
|
String name = child.getAttribute("name");
|
|
|
|
String value = child.getContent();
|
|
|
|
if (name != null && value != null && !name.trim().contains("\n") && !value.trim().contains("\n")) {
|
|
|
|
this.mPutHeaders.put(name.trim(),value.trim());
|
|
|
|
}
|
|
|
|
}
|
2015-06-28 09:19:07 +00:00
|
|
|
}
|
|
|
|
}
|
2018-01-28 13:17:42 +00:00
|
|
|
if (!canceled) {
|
|
|
|
new Thread(this::upload).start();
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
} catch (MalformedURLException e) {
|
|
|
|
//fall through
|
2015-06-28 09:19:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-01-28 13:17:42 +00:00
|
|
|
Log.d(Config.LOGTAG,account.getJid().toString()+": invalid response to slot request "+packet);
|
|
|
|
fail(IqParser.extractErrorMessage(packet));
|
2015-06-28 09:19:07 +00:00
|
|
|
});
|
2015-09-15 20:49:43 +00:00
|
|
|
message.setTransferable(this);
|
|
|
|
mXmppConnectionService.markMessage(message, Message.STATUS_UNSEND);
|
2015-06-28 09:19:07 +00:00
|
|
|
}
|
|
|
|
|
2018-01-28 13:17:42 +00:00
|
|
|
private void upload() {
|
|
|
|
OutputStream os = null;
|
|
|
|
HttpURLConnection connection = null;
|
|
|
|
PowerManager.WakeLock wakeLock = mHttpConnectionManager.createWakeLock("http_upload_"+message.getUuid());
|
|
|
|
try {
|
|
|
|
final int expectedFileSize = (int) file.getExpectedSize();
|
|
|
|
final int readTimeout = (expectedFileSize / 2048) + Config.SOCKET_TIMEOUT; //assuming a minimum transfer speed of 16kbit/s
|
|
|
|
wakeLock.acquire(readTimeout);
|
|
|
|
Log.d(Config.LOGTAG, "uploading to " + mPutUrl.toString()+ " w/ read timeout of "+readTimeout+"s");
|
|
|
|
if (mUseTor) {
|
|
|
|
connection = (HttpURLConnection) mPutUrl.openConnection(mHttpConnectionManager.getProxy());
|
|
|
|
} else {
|
|
|
|
connection = (HttpURLConnection) mPutUrl.openConnection();
|
|
|
|
}
|
|
|
|
if (connection instanceof HttpsURLConnection) {
|
|
|
|
mHttpConnectionManager.setupTrustManager((HttpsURLConnection) connection, true);
|
|
|
|
}
|
|
|
|
connection.setRequestMethod("PUT");
|
|
|
|
connection.setFixedLengthStreamingMode(expectedFileSize);
|
|
|
|
connection.setRequestProperty("Content-Type", mime == null ? "application/octet-stream" : mime);
|
|
|
|
connection.setRequestProperty("User-Agent",mXmppConnectionService.getIqGenerator().getIdentityName());
|
|
|
|
if(mPutHeaders != null) {
|
|
|
|
for(HashMap.Entry<String,String> entry : mPutHeaders.entrySet()) {
|
|
|
|
connection.setRequestProperty(entry.getKey(),entry.getValue());
|
2015-06-28 09:19:07 +00:00
|
|
|
}
|
2018-01-28 13:17:42 +00:00
|
|
|
}
|
|
|
|
connection.setDoOutput(true);
|
|
|
|
connection.setConnectTimeout(Config.SOCKET_TIMEOUT * 1000);
|
|
|
|
connection.setReadTimeout(readTimeout * 1000);
|
|
|
|
connection.connect();
|
|
|
|
os = connection.getOutputStream();
|
|
|
|
transmitted = 0;
|
|
|
|
int count;
|
|
|
|
byte[] buffer = new byte[4096];
|
|
|
|
while (((count = mFileInputStream.read(buffer)) != -1) && !canceled) {
|
|
|
|
transmitted += count;
|
|
|
|
os.write(buffer, 0, count);
|
|
|
|
mHttpConnectionManager.updateConversationUi(false);
|
|
|
|
}
|
|
|
|
os.flush();
|
|
|
|
os.close();
|
|
|
|
mFileInputStream.close();
|
|
|
|
int code = connection.getResponseCode();
|
|
|
|
if (code == 200 || code == 201) {
|
|
|
|
Log.d(Config.LOGTAG, "finished uploading file");
|
|
|
|
if (key != null) {
|
|
|
|
mGetUrl = CryptoHelper.toAesGcmUrl(new URL(mGetUrl.toString() + "#" + CryptoHelper.bytesToHex(key)));
|
2015-06-28 09:19:07 +00:00
|
|
|
}
|
2018-01-28 13:17:42 +00:00
|
|
|
mXmppConnectionService.getFileBackend().updateFileParams(message, mGetUrl);
|
|
|
|
mXmppConnectionService.getFileBackend().updateMediaScanner(file);
|
|
|
|
message.setTransferable(null);
|
|
|
|
message.setCounterpart(message.getConversation().getJid().toBareJid());
|
|
|
|
mXmppConnectionService.resendMessage(message, delayed);
|
|
|
|
} else {
|
|
|
|
Log.d(Config.LOGTAG,"http upload failed because response code was "+code);
|
|
|
|
fail("http upload failed because response code was "+code);
|
|
|
|
}
|
|
|
|
} catch (IOException e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
Log.d(Config.LOGTAG,"http upload failed "+e.getMessage());
|
|
|
|
fail(e.getMessage());
|
|
|
|
} finally {
|
|
|
|
FileBackend.close(mFileInputStream);
|
|
|
|
FileBackend.close(os);
|
|
|
|
if (connection != null) {
|
|
|
|
connection.disconnect();
|
2015-06-28 09:19:07 +00:00
|
|
|
}
|
2018-01-28 13:17:42 +00:00
|
|
|
wakeLock.release();
|
2015-06-28 09:19:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|