/* ============================================================ * QupZilla - WebKit based browser * Copyright (C) 2010-2011 nowrep * * 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 . * ============================================================ */ #include "networkproxyfactory.h" #include "mainapplication.h" NetworkProxyFactory::NetworkProxyFactory() : QNetworkProxyFactory() { } void NetworkProxyFactory::loadSettings() { QSettings settings(mApp->getActiveProfil()+"settings.ini", QSettings::IniFormat); 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 NetworkProxyFactory::queryProxy(const QNetworkProxyQuery &query) { QNetworkProxy proxy; if (m_proxyExceptions.contains(query.url().host(), Qt::CaseInsensitive)) proxy.setType(QNetworkProxy::NoProxy); 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() << proxy; }