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

90 lines
2.9 KiB
C
Raw Normal View History

2011-03-03 18:29:20 +01:00
/* ============================================================
* QupZilla - WebKit based browser
* Copyright (C) 2010-2013 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>
#include <QStringList>
2011-03-02 16:57:41 +01:00
#include "qz_namespace.h"
2011-03-02 16:57:41 +01:00
#include "networkmanagerproxy.h"
class AdBlockManager;
2011-04-26 19:47:12 +02:00
class NetworkProxyFactory;
class QupZillaSchemeHandler;
class SchemeHandler;
class QT_QUPZILLA_EXPORT NetworkManager : public NetworkManagerProxy
2011-03-02 16:57:41 +01:00
{
Q_OBJECT
public:
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
void loadSettings();
void saveCertificates();
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; }
void setIgnoreAllWarnings(bool state);
bool isIgnoringAllWarnings();
NetworkProxyFactory* proxyFactory() const;
bool registerSchemeHandler(const QString &scheme, SchemeHandler* handler);
bool unregisterSchemeHandler(const QString &scheme, SchemeHandler* handler);
void disconnectObjects();
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);
void proxyAuthentication(const QNetworkProxy &proxy, QAuthenticator* auth);
2011-03-02 16:57:41 +01:00
void sslError(QNetworkReply* reply, QList<QSslError> errors);
void setSSLConfiguration(QNetworkReply* reply);
2011-03-02 16:57:41 +01:00
private:
AdBlockManager* m_adblockManager;
2011-04-26 19:47:12 +02:00
NetworkProxyFactory* m_proxyFactory;
QStringList m_certPaths;
QList<QSslCertificate> m_caCerts;
QList<QSslCertificate> m_localCerts;
QList<QSslCertificate> m_ignoredCerts;
QHash<QString, SchemeHandler*> m_schemeHandlers;
QByteArray m_acceptLanguage;
bool m_ignoreAllWarnings;
bool m_doNotTrack;
bool m_sendReferer;
2011-03-02 16:57:41 +01:00
};
#endif // NETWORKMANAGER_H