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

70 lines
2.4 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_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_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)) {
2011-04-26 19:47:12 +02:00
proxy.setType(QNetworkProxy::NoProxy);
}
2011-04-26 19:47:12 +02:00
switch (m_proxyPreference) {
case SystemProxy:
return systemProxyForQuery(query);
break;
case NoProxy:
proxy.setType(QNetworkProxy::NoProxy);
break;
case DefinedProxy:
proxy.setType(m_proxyType);
proxy.setHostName(m_hostName);
proxy.setPort(m_port);
proxy.setUser(m_username);
proxy.setPassword(m_password);
break;
}
return QList<QNetworkProxy>() << proxy;
}