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;
|
|
|
|
|
|
|
|
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.SSLContext;
|
|
|
|
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;
|
2015-07-10 12:14:45 +00:00
|
|
|
import eu.siacs.conversations.utils.CryptoHelper;
|
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-06-28 09:19:07 +00:00
|
|
|
public HttpUploadConnection createNewUploadConnection(Message message) {
|
|
|
|
HttpUploadConnection connection = new HttpUploadConnection(this);
|
|
|
|
connection.init(message);
|
|
|
|
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;
|
|
|
|
final HostnameVerifier hostnameVerifier;
|
|
|
|
if (interactive) {
|
|
|
|
trustManager = mXmppConnectionService.getMemorizingTrustManager();
|
|
|
|
hostnameVerifier = mXmppConnectionService
|
|
|
|
.getMemorizingTrustManager().wrapHostnameVerifier(
|
|
|
|
new StrictHostnameVerifier());
|
|
|
|
} else {
|
|
|
|
trustManager = mXmppConnectionService.getMemorizingTrustManager()
|
|
|
|
.getNonInteractive();
|
|
|
|
hostnameVerifier = mXmppConnectionService
|
|
|
|
.getMemorizingTrustManager()
|
|
|
|
.wrapHostnameVerifierNonInteractive(
|
|
|
|
new StrictHostnameVerifier());
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
final SSLContext sc = SSLContext.getInstance("TLS");
|
|
|
|
sc.init(null, new X509TrustManager[]{trustManager},
|
|
|
|
mXmppConnectionService.getRNG());
|
|
|
|
|
|
|
|
final SSLSocketFactory sf = sc.getSocketFactory();
|
|
|
|
final String[] cipherSuites = CryptoHelper.getOrderedCipherSuites(
|
|
|
|
sf.getSupportedCipherSuites());
|
|
|
|
if (cipherSuites.length > 0) {
|
|
|
|
sc.getDefaultSSLParameters().setCipherSuites(cipherSuites);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
connection.setSSLSocketFactory(sf);
|
|
|
|
connection.setHostnameVerifier(hostnameVerifier);
|
|
|
|
} catch (final KeyManagementException | NoSuchAlgorithmException ignored) {
|
|
|
|
}
|
|
|
|
}
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|