1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-23 02:32:10 +02:00
falkonOfficial/src/lib/network/networkproxyfactory.cpp

95 lines
3.2 KiB
C++
Raw Normal View History

2011-04-27 09:05:54 +02:00
/* ============================================================
* QupZilla - WebKit based browser
* Copyright (C) 2010-2012 David Rosca <nowrep@gmail.com>
2011-04-27 09:05:54 +02:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* ============================================================ */
2011-04-26 19:47:12 +02:00
#include "networkproxyfactory.h"
#include "mainapplication.h"
#include "settings.h"
2011-04-26 19:47:12 +02:00
NetworkProxyFactory::NetworkProxyFactory()
: QNetworkProxyFactory()
, m_proxyPreference(SystemProxy)
2011-04-26 19:47:12 +02:00
{
}
void NetworkProxyFactory::loadSettings()
{
Settings settings;
2011-04-26 19:47:12 +02:00
settings.beginGroup("Web-Proxy");
m_proxyPreference = ProxyPreference(settings.value("UseProxy", SystemProxy).toInt());
m_proxyType = QNetworkProxy::ProxyType(settings.value("ProxyType", QNetworkProxy::HttpProxy).toInt());
m_useDifferentProxyForHttps = settings.value("UseDifferentProxyForHttps", false).toBool();
2011-04-26 19:47:12 +02:00
m_hostName = settings.value("HostName", "").toString();
m_port = settings.value("Port", 8080).toInt();
m_username = settings.value("Username", "").toString();
m_password = settings.value("Password", "").toString();
m_httpsHostName = settings.value("HttpsHostName", "").toString();
m_httpsPort = settings.value("HttpsPort", 8080).toInt();
m_httpsUsername = settings.value("HttpsUsername", "").toString();
m_httpsPassword = settings.value("HttpsPassword", "").toString();
2011-04-26 19:47:12 +02:00
m_proxyExceptions = settings.value("ProxyExceptions", QStringList() << "localhost" << "127.0.0.1").toStringList();
settings.endGroup();
}
QList<QNetworkProxy> NetworkProxyFactory::queryProxy(const QNetworkProxyQuery &query)
{
QNetworkProxy proxy;
if (m_proxyExceptions.contains(query.url().host(), Qt::CaseInsensitive)) {
return QList<QNetworkProxy>() << QNetworkProxy::NoProxy;
}
2011-04-26 19:47:12 +02:00
switch (m_proxyPreference) {
case SystemProxy:
return systemProxyForQuery(query);
case NoProxy:
proxy = QNetworkProxy::NoProxy;
2011-04-26 19:47:12 +02:00
break;
case DefinedProxy:
proxy = m_proxyType;
if (m_useDifferentProxyForHttps && query.protocolTag() == "https") {
proxy.setHostName(m_httpsHostName);
proxy.setPort(m_httpsPort);
proxy.setUser(m_httpsUsername);
proxy.setPassword(m_httpsPassword);
}
else {
proxy.setHostName(m_hostName);
proxy.setPort(m_port);
proxy.setUser(m_username);
proxy.setPassword(m_password);
}
if (proxy.hostName().isEmpty()) {
proxy = QNetworkProxy::NoProxy;
}
break;
default:
qWarning("NetworkProxyFactory::queryProxy Unknown proxy type!");
2011-04-26 19:47:12 +02:00
break;
}
return QList<QNetworkProxy>() << proxy;
}