2011-03-03 18:29:20 +01:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2012-01-01 15:29:55 +01:00
|
|
|
* Copyright (C) 2010-2012 David Rosca <nowrep@gmail.com>
|
2011-03-03 18:29:20 +01: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-03-02 16:57:41 +01:00
|
|
|
#include "networkmanagerproxy.h"
|
|
|
|
#include "networkmanager.h"
|
|
|
|
#include "webpage.h"
|
|
|
|
#include "cookiejar.h"
|
|
|
|
#include "mainapplication.h"
|
|
|
|
|
2012-02-29 18:33:50 +01:00
|
|
|
#include <QNetworkRequest>
|
|
|
|
|
2011-11-28 19:17:48 +01:00
|
|
|
NetworkManagerProxy::NetworkManagerProxy(QObject* parent)
|
2011-11-06 17:01:23 +01:00
|
|
|
: QNetworkAccessManager(parent)
|
|
|
|
, m_page(0)
|
|
|
|
, m_manager(0)
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
2011-03-04 13:59:07 +01:00
|
|
|
setCookieJar(mApp->cookieJar());
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2011-03-19 13:15:01 +01:00
|
|
|
void NetworkManagerProxy::setPrimaryNetworkAccessManager(NetworkManager* manager)
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
|
|
|
Q_ASSERT(manager);
|
|
|
|
m_manager = manager;
|
|
|
|
|
2012-01-21 20:27:45 +01:00
|
|
|
connect(this, SIGNAL(authenticationRequired(QNetworkReply*, QAuthenticator*)), m_manager, SIGNAL(authenticationRequired(QNetworkReply*, QAuthenticator*)));
|
|
|
|
connect(this, SIGNAL(proxyAuthenticationRequired(QNetworkProxy, QAuthenticator*)), m_manager, SIGNAL(proxyAuthenticationRequired(QNetworkProxy, QAuthenticator*)));
|
|
|
|
connect(this, SIGNAL(finished(QNetworkReply*)), m_manager, SIGNAL(finished(QNetworkReply*)));
|
2012-06-15 17:43:19 +02:00
|
|
|
connect(this, SIGNAL(sslErrors(QNetworkReply*, const QList<QSslError> &)), m_manager, SIGNAL(sslErrors(QNetworkReply*, const QList<QSslError> &)));
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2011-03-17 17:03:04 +01:00
|
|
|
QNetworkReply* NetworkManagerProxy::createRequest(QNetworkAccessManager::Operation op, const QNetworkRequest &request, QIODevice* outgoingData)
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
2011-11-28 19:17:48 +01:00
|
|
|
if (m_manager) {
|
2011-03-02 16:57:41 +01:00
|
|
|
QNetworkRequest pageRequest = request;
|
2011-11-28 19:17:48 +01:00
|
|
|
if (m_page) {
|
|
|
|
m_page->populateNetworkRequest(pageRequest);
|
|
|
|
}
|
2011-03-02 16:57:41 +01:00
|
|
|
return m_manager->createRequest(op, pageRequest, outgoingData);
|
|
|
|
}
|
|
|
|
return QNetworkAccessManager::createRequest(op, request, outgoingData);
|
|
|
|
}
|
2011-12-04 19:15:44 +01:00
|
|
|
|
2012-01-21 20:27:45 +01:00
|
|
|
void NetworkManagerProxy::disconnectObjects()
|
|
|
|
{
|
|
|
|
disconnect(m_manager);
|
|
|
|
}
|
|
|
|
|
2011-12-04 19:15:44 +01:00
|
|
|
NetworkManagerProxy::~NetworkManagerProxy()
|
|
|
|
{
|
|
|
|
// Prevent deleting of cookie jar
|
|
|
|
cookieJar()->setParent(m_manager);
|
|
|
|
}
|