aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/pixart/messenger/http/HttpConnectionManager.java
blob: 340bc6d7a073ae9eabc8f98dd490141ca30b4fc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package de.pixart.messenger.http;

import org.apache.http.conn.ssl.StrictHostnameVerifier;

import java.io.IOException;
import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.net.Proxy;
import java.security.KeyManagementException;
import java.security.NoSuchAlgorithmException;
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;

import de.pixart.messenger.entities.Message;
import de.pixart.messenger.services.AbstractConnectionManager;
import de.pixart.messenger.services.XmppConnectionService;
import de.pixart.messenger.utils.TLSSocketFactory;

public class HttpConnectionManager extends AbstractConnectionManager {

    public HttpConnectionManager(XmppConnectionService service) {
        super(service);
    }

    private List<HttpDownloadConnection> downloadConnections = new CopyOnWriteArrayList<>();
    private List<HttpUploadConnection> uploadConnections = new CopyOnWriteArrayList<>();

    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);
        return connection;
    }

    public HttpUploadConnection createNewUploadConnection(Message message, boolean delay) {
        HttpUploadConnection connection = new HttpUploadConnection(this);
        connection.init(message, delay);
        this.uploadConnections.add(connection);
        return connection;
    }

    public void finishConnection(HttpDownloadConnection connection) {
        this.downloadConnections.remove(connection);
    }

    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) {
            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) {
        }
    }

    public Proxy getProxy() throws IOException {
        return new Proxy(Proxy.Type.HTTP, new InetSocketAddress(InetAddress.getByAddress(new byte[]{127, 0, 0, 1}), 8118));
    }
}