summaryrefslogtreecommitdiffstats
blob: aa8027ff9454a9b237a27b459bdc0282652df480 (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
/*
 * Copyright (c) 2010-2011 Thilo Cestonaro
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

/*
 * Copyright (c) 2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#include <Swiften/Network/EnvironmentProxyProvider.h>

#include <stdio.h>
#include <stdlib.h>

#include <iostream>

#include <Swiften/Base/Log.h>

namespace Swift {

EnvironmentProxyProvider::EnvironmentProxyProvider() {
    socksProxy = getFromEnv("all_proxy", "socks");
    httpProxy = getFromEnv("http_proxy", "http");
    SWIFT_LOG(debug) << "Environment: SOCKS5 => " << socksProxy.toString() << "; HTTP Connect => " << httpProxy.toString() << std::endl;
}

HostAddressPort EnvironmentProxyProvider::getHTTPConnectProxy() const {
    return httpProxy;
}

HostAddressPort EnvironmentProxyProvider::getSOCKS5Proxy() const {
    return socksProxy;
}

HostAddressPort EnvironmentProxyProvider::getFromEnv(const char* envVarName, std::string proxyProtocol) {
    char* envVar = NULL;
    std::string address;
    int port = 0;

    envVar = getenv(envVarName);

    proxyProtocol += "://";
    address = envVar != NULL ? envVar : "0.0.0.0";
    if(envVar != NULL && address.compare(0, proxyProtocol.length(), proxyProtocol) == 0) {
        address = address.substr(proxyProtocol.length(), address.length());
        port = atoi(address.substr(address.find(':') + 1, address.length()).c_str());
        address = address.substr(0, address.find(':'));
    }

    return HostAddressPort(HostAddress(address), port);
}

}