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;
|
|
|
|
|
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;
|
2018-05-27 18:39:12 +00:00
|
|
|
import java.net.URL;
|
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;
|
|
|
|
|
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;
|
2016-11-19 23:39:01 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
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);
|
2015-06-28 09:19:07 +00:00
|
|
|
this.uploadConnections.add(connection);
|
|
|
|
}
|
|
|
|
|
2018-05-27 18:39:12 +00:00
|
|
|
public boolean checkConnection(Message message) {
|
|
|
|
final Account account = message.getConversation().getAccount();
|
|
|
|
final URL url = message.getFileParams().url;
|
|
|
|
if (url.getProtocol().equalsIgnoreCase(P1S3UrlStreamHandler.PROTOCOL_NAME) && account.getStatus() != Account.State.ONLINE) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return mXmppConnectionService.hasInternetConnection();
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2018-05-11 10:42:39 +00:00
|
|
|
public static 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
|
|
|
}
|