2011-03-03 18:29:20 +01:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2014-01-11 16:11:42 +01:00
|
|
|
* Copyright (C) 2010-2014 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
|
|
|
#ifndef NETWORKMANAGER_H
|
|
|
|
#define NETWORKMANAGER_H
|
|
|
|
|
|
|
|
#include <QSslError>
|
2012-02-29 18:33:50 +01:00
|
|
|
#include <QStringList>
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2014-02-26 20:03:20 +01:00
|
|
|
#include "qzcommon.h"
|
2011-03-02 16:57:41 +01:00
|
|
|
#include "networkmanagerproxy.h"
|
|
|
|
|
2012-06-15 17:03:37 +02:00
|
|
|
class AdBlockManager;
|
2011-04-26 19:47:12 +02:00
|
|
|
class NetworkProxyFactory;
|
2011-09-18 15:35:44 +02:00
|
|
|
class QupZillaSchemeHandler;
|
2012-03-15 19:35:37 +01:00
|
|
|
class SchemeHandler;
|
2012-02-29 18:33:50 +01:00
|
|
|
|
2014-02-19 22:12:32 +01:00
|
|
|
class QUPZILLA_EXPORT NetworkManager : public NetworkManagerProxy
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2013-02-25 23:25:11 +01:00
|
|
|
explicit NetworkManager(QObject* parent = 0);
|
2011-03-17 17:03:04 +01:00
|
|
|
QNetworkReply* createRequest(QNetworkAccessManager::Operation op, const QNetworkRequest &request, QIODevice* outgoingData);
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2012-01-15 17:50:09 +01:00
|
|
|
void loadSettings();
|
2014-02-13 20:46:15 +01:00
|
|
|
void saveSettings();
|
2011-10-12 22:28:41 +02:00
|
|
|
void loadCertificates();
|
|
|
|
|
|
|
|
QList<QSslCertificate> getCaCertificates() { return m_caCerts; }
|
|
|
|
QList<QSslCertificate> getLocalCertificates() { return m_localCerts; }
|
|
|
|
|
|
|
|
void removeLocalCertificate(const QSslCertificate &cert);
|
|
|
|
void addLocalCertificate(const QSslCertificate &cert);
|
|
|
|
|
|
|
|
void setCertificatePaths(const QStringList &paths) { m_certPaths = paths; }
|
|
|
|
QStringList certificatePaths() { return m_certPaths; }
|
|
|
|
|
2014-07-13 19:43:18 +02:00
|
|
|
bool isIgnoringAllWarnings() const;
|
2013-05-22 14:59:42 +02:00
|
|
|
void setIgnoreAllWarnings(bool state);
|
2014-07-13 19:43:18 +02:00
|
|
|
|
|
|
|
bool isDisablingWeakCiphers() const;
|
|
|
|
void setDisableWeakCiphers(bool state);
|
2011-10-12 22:28:41 +02:00
|
|
|
|
2013-03-29 19:22:55 +01:00
|
|
|
NetworkProxyFactory* proxyFactory() const;
|
|
|
|
|
2012-03-15 19:35:37 +01:00
|
|
|
bool registerSchemeHandler(const QString &scheme, SchemeHandler* handler);
|
2013-04-12 18:05:45 +02:00
|
|
|
bool unregisterSchemeHandler(const QString &scheme, SchemeHandler* handler);
|
2012-03-15 19:35:37 +01:00
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
signals:
|
|
|
|
void sslDialogClosed();
|
|
|
|
|
2011-04-26 19:47:12 +02:00
|
|
|
private slots:
|
2011-03-02 16:57:41 +01:00
|
|
|
void authentication(QNetworkReply* reply, QAuthenticator* auth);
|
2013-01-28 10:52:55 +01:00
|
|
|
void ftpAuthentication(const QUrl &url, QAuthenticator* auth);
|
2011-11-06 17:01:23 +01:00
|
|
|
void proxyAuthentication(const QNetworkProxy &proxy, QAuthenticator* auth);
|
2011-03-02 16:57:41 +01:00
|
|
|
void sslError(QNetworkReply* reply, QList<QSslError> errors);
|
2011-03-22 21:36:15 +01:00
|
|
|
void setSSLConfiguration(QNetworkReply* reply);
|
2011-03-02 16:57:41 +01:00
|
|
|
|
|
|
|
private:
|
2014-07-13 19:43:18 +02:00
|
|
|
void disableWeakCiphers(bool disable);
|
|
|
|
|
2012-06-15 17:03:37 +02:00
|
|
|
AdBlockManager* m_adblockManager;
|
2011-04-26 19:47:12 +02:00
|
|
|
NetworkProxyFactory* m_proxyFactory;
|
2011-09-18 15:35:44 +02:00
|
|
|
|
2011-10-12 22:28:41 +02:00
|
|
|
QStringList m_certPaths;
|
|
|
|
QList<QSslCertificate> m_caCerts;
|
|
|
|
QList<QSslCertificate> m_localCerts;
|
2013-09-19 20:21:46 +02:00
|
|
|
QList<QSslCertificate> m_tempAllowedCerts;
|
2011-11-27 14:30:16 +01:00
|
|
|
|
2012-03-15 19:35:37 +01:00
|
|
|
QHash<QString, SchemeHandler*> m_schemeHandlers;
|
2011-10-18 17:39:51 +02:00
|
|
|
QByteArray m_acceptLanguage;
|
|
|
|
|
2011-03-04 15:15:21 +01:00
|
|
|
bool m_ignoreAllWarnings;
|
2014-07-13 19:43:18 +02:00
|
|
|
bool m_disableWeakCiphers;
|
2011-04-05 20:56:55 +02:00
|
|
|
bool m_doNotTrack;
|
2012-01-27 23:01:17 +01:00
|
|
|
bool m_sendReferer;
|
2011-03-02 16:57:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // NETWORKMANAGER_H
|