2014-10-22 16:38:44 +00:00
|
|
|
package eu.siacs.conversations.http;
|
|
|
|
|
2015-07-10 12:14:45 +00:00
|
|
|
import org.apache.http.conn.ssl.StrictHostnameVerifier;
|
|
|
|
|
2015-11-28 19:11:38 +00:00
|
|
|
import java.io.IOException;
|
|
|
|
import java.net.InetAddress;
|
|
|
|
import java.net.InetSocketAddress;
|
|
|
|
import java.net.Proxy;
|
2015-07-10 12:14:45 +00:00
|
|
|
import java.security.KeyManagementException;
|
|
|
|
import java.security.NoSuchAlgorithmException;
|
2014-10-22 16:38:44 +00:00
|
|
|
import java.util.List;
|
|
|
|
import java.util.concurrent.CopyOnWriteArrayList;
|
|
|
|
|
2015-07-10 12:14:45 +00:00
|
|
|
import javax.net.ssl.HostnameVerifier;
|
|
|
|
import javax.net.ssl.HttpsURLConnection;
|
|
|
|
import javax.net.ssl.SSLSocketFactory;
|
|
|
|
import javax.net.ssl.X509TrustManager;
|
|
|
|
|
2014-10-22 16:38:44 +00:00
|
|
|
import eu.siacs.conversations.entities.Message;
|
|
|
|
import eu.siacs.conversations.services.AbstractConnectionManager;
|
|
|
|
import eu.siacs.conversations.services.XmppConnectionService;
|
2016-11-19 23:39:01 +00:00
|
|
|
import eu.siacs.conversations.utils.TLSSocketFactory;
|
2014-10-22 16:38:44 +00:00
|
|
|
|
|
|
|
public class HttpConnectionManager extends AbstractConnectionManager {
|
|
|
|
|
|
|
|
public HttpConnectionManager(XmppConnectionService service) {
|
|
|
|
super(service);
|
|
|
|
}
|
|
|
|
|
2015-07-10 13:14:13 +00:00
|
|
|
private List<HttpDownloadConnection> downloadConnections = new CopyOnWriteArrayList<>();
|
2015-06-28 09:19:07 +00:00
|
|
|
private List<HttpUploadConnection> uploadConnections = new CopyOnWriteArrayList<>();
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2015-07-10 13:14:13 +00:00
|
|
|
public HttpDownloadConnection createNewDownloadConnection(Message message) {
|
|
|
|
return this.createNewDownloadConnection(message, false);
|
2015-07-10 11:28:50 +00:00
|
|
|
}
|
|
|
|
|
2015-07-10 13:14:13 +00:00
|
|
|
public HttpDownloadConnection createNewDownloadConnection(Message message, boolean interactive) {
|
|
|
|
HttpDownloadConnection connection = new HttpDownloadConnection(this);
|
2015-07-10 11:28:50 +00:00
|
|
|
connection.init(message,interactive);
|
2015-07-10 13:14:13 +00:00
|
|
|
this.downloadConnections.add(connection);
|
2014-10-22 16:38:44 +00:00
|
|
|
return connection;
|
|
|
|
}
|
|
|
|
|
2015-07-20 16:11:33 +00:00
|
|
|
public HttpUploadConnection createNewUploadConnection(Message message, boolean delay) {
|
2015-06-28 09:19:07 +00:00
|
|
|
HttpUploadConnection connection = new HttpUploadConnection(this);
|
2015-07-20 16:11:33 +00:00
|
|
|
connection.init(message,delay);
|
2015-06-28 09:19:07 +00:00
|
|
|
this.uploadConnections.add(connection);
|
|
|
|
return connection;
|
|
|
|
}
|
|
|
|
|
2015-07-10 13:14:13 +00:00
|
|
|
public void finishConnection(HttpDownloadConnection connection) {
|
|
|
|
this.downloadConnections.remove(connection);
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
2015-06-28 09:19:07 +00:00
|
|
|
|
|
|
|
public void finishUploadConnection(HttpUploadConnection httpUploadConnection) {
|
|
|
|
this.uploadConnections.remove(httpUploadConnection);
|
|
|
|
}
|
2015-07-10 12:14:45 +00:00
|
|
|
|
|
|
|
public void setupTrustManager(final HttpsURLConnection connection, final boolean interactive) {
|
|
|
|
final X509TrustManager trustManager;
|
2017-06-17 17:54:09 +00:00
|
|
|
final HostnameVerifier hostnameVerifier = mXmppConnectionService.getMemorizingTrustManager().wrapHostnameVerifier(new StrictHostnameVerifier(), interactive);
|
2015-07-10 12:14:45 +00:00
|
|
|
if (interactive) {
|
2016-12-05 20:52:44 +00:00
|
|
|
trustManager = mXmppConnectionService.getMemorizingTrustManager().getInteractive();
|
2015-07-10 12:14:45 +00:00
|
|
|
} else {
|
2017-06-17 17:54:09 +00:00
|
|
|
trustManager = mXmppConnectionService.getMemorizingTrustManager().getNonInteractive();
|
2015-07-10 12:14:45 +00:00
|
|
|
}
|
|
|
|
try {
|
2016-11-19 23:39:01 +00:00
|
|
|
final SSLSocketFactory sf = new TLSSocketFactory(new X509TrustManager[]{trustManager}, mXmppConnectionService.getRNG());
|
2015-07-10 12:14:45 +00:00
|
|
|
connection.setSSLSocketFactory(sf);
|
|
|
|
connection.setHostnameVerifier(hostnameVerifier);
|
|
|
|
} catch (final KeyManagementException | NoSuchAlgorithmException ignored) {
|
|
|
|
}
|
|
|
|
}
|
2015-11-28 19:11:38 +00:00
|
|
|
|
|
|
|
public Proxy getProxy() throws IOException {
|
2016-10-31 08:53:14 +00:00
|
|
|
return new Proxy(Proxy.Type.HTTP, new InetSocketAddress(InetAddress.getByAddress(new byte[]{127,0,0,1}), 8118));
|
2015-11-28 19:11:38 +00:00
|
|
|
}
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|