conversations-classic/src/main/java/eu/siacs/conversations/http/HttpConnectionManager.java

83 lines
3.2 KiB
Java
Raw Normal View History

2014-10-22 16:38:44 +00:00
package eu.siacs.conversations.http;
2018-03-18 09:30:15 +00:00
import android.util.Log;
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;
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;
import javax.net.ssl.HostnameVerifier;
import javax.net.ssl.HttpsURLConnection;
import javax.net.ssl.SSLSocketFactory;
import javax.net.ssl.X509TrustManager;
2018-03-18 09:30:15 +00:00
import eu.siacs.conversations.Config;
import eu.siacs.conversations.entities.Account;
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;
import eu.siacs.conversations.utils.TLSSocketFactory;
2018-03-18 09:30:15 +00:00
import eu.siacs.conversations.xmpp.OnAdvancedStreamFeaturesLoaded;
2014-10-22 16:38:44 +00:00
public class HttpConnectionManager extends AbstractConnectionManager {
public HttpConnectionManager(XmppConnectionService service) {
super(service);
}
private List<HttpDownloadConnection> downloadConnections = new CopyOnWriteArrayList<>();
private List<HttpUploadConnection> uploadConnections = new CopyOnWriteArrayList<>();
2014-10-22 16:38:44 +00:00
public HttpDownloadConnection createNewDownloadConnection(Message message) {
return this.createNewDownloadConnection(message, false);
}
public HttpDownloadConnection createNewDownloadConnection(Message message, boolean interactive) {
HttpDownloadConnection connection = new HttpDownloadConnection(this);
connection.init(message,interactive);
this.downloadConnections.add(connection);
2014-10-22 16:38:44 +00:00
return connection;
}
2018-05-25 10:24:23 +00:00
public void createNewUploadConnection(Message message, boolean delay) {
HttpUploadConnection connection = new HttpUploadConnection(Method.determine(message.getConversation().getAccount()), this);
2015-07-20 16:11:33 +00:00
connection.init(message,delay);
this.uploadConnections.add(connection);
}
public void finishConnection(HttpDownloadConnection connection) {
this.downloadConnections.remove(connection);
2014-10-22 16:38:44 +00:00
}
public void finishUploadConnection(HttpUploadConnection httpUploadConnection) {
this.uploadConnections.remove(httpUploadConnection);
}
public void setupTrustManager(final HttpsURLConnection connection, final boolean interactive) {
final X509TrustManager trustManager;
final HostnameVerifier hostnameVerifier = mXmppConnectionService.getMemorizingTrustManager().wrapHostnameVerifier(new StrictHostnameVerifier(), interactive);
if (interactive) {
2016-12-05 20:52:44 +00:00
trustManager = mXmppConnectionService.getMemorizingTrustManager().getInteractive();
} else {
trustManager = mXmppConnectionService.getMemorizingTrustManager().getNonInteractive();
}
try {
final SSLSocketFactory sf = new TLSSocketFactory(new X509TrustManager[]{trustManager}, mXmppConnectionService.getRNG());
connection.setSSLSocketFactory(sf);
connection.setHostnameVerifier(hostnameVerifier);
} catch (final KeyManagementException | NoSuchAlgorithmException ignored) {
}
}
2015-11-28 19:11:38 +00:00
public static Proxy getProxy() throws IOException {
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
}