File indexing completed on 2024-05-12 04:58:10

0001 /* ============================================================
0002 * Falkon - Qt web browser
0003 * Copyright (C) 2010-2018 David Rosca <nowrep@gmail.com>
0004 *
0005 * This program is free software: you can redistribute it and/or modify
0006 * it under the terms of the GNU General Public License as published by
0007 * the Free Software Foundation, either version 3 of the License, or
0008 * (at your option) any later version.
0009 *
0010 * This program is distributed in the hope that it will be useful,
0011 * but WITHOUT ANY WARRANTY; without even the implied warranty of
0012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0013 * GNU General Public License for more details.
0014 *
0015 * You should have received a copy of the GNU General Public License
0016 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
0017 * ============================================================ */
0018 #ifndef NETWORKMANAGER_H
0019 #define NETWORKMANAGER_H
0020 
0021 #include <QNetworkAccessManager>
0022 #include <QWebEngineCertificateError>
0023 
0024 #include "qzcommon.h"
0025 
0026 class UrlInterceptor;
0027 class NetworkUrlInterceptor;
0028 class ExtensionSchemeManager;
0029 class ExtensionSchemeHandler;
0030 
0031 class FALKON_EXPORT NetworkManager : public QNetworkAccessManager
0032 {
0033     Q_OBJECT
0034 
0035 public:
0036     explicit NetworkManager(QObject *parent = nullptr);
0037 
0038     bool certificateError(QWebEngineCertificateError &error, QWidget *parent = nullptr);
0039     void authentication(const QUrl &url, QAuthenticator *auth, QWidget *parent = nullptr);
0040     void proxyAuthentication(const QString &proxyHost, QAuthenticator *auth, QWidget *parent = nullptr);
0041 
0042     void installUrlInterceptor(UrlInterceptor *interceptor);
0043     void removeUrlInterceptor(UrlInterceptor *interceptor);
0044 
0045     void registerExtensionSchemeHandler(const QString &name, ExtensionSchemeHandler *handler);
0046     void unregisterExtensionSchemeHandler(ExtensionSchemeHandler *handler);
0047 
0048     void loadSettings();
0049     void shutdown();
0050 
0051     static void registerSchemes();
0052 
0053 protected:
0054     QNetworkReply *createRequest(Operation op, const QNetworkRequest &request, QIODevice *outgoingData) override;
0055 
0056 private:
0057     void saveIgnoredSslHosts();
0058 
0059     NetworkUrlInterceptor *m_urlInterceptor;
0060     ExtensionSchemeManager *m_extensionScheme;
0061     QHash<QString, QWebEngineCertificateError::Type> m_ignoredSslErrors;
0062     QHash<QString, QWebEngineCertificateError::Type> m_rejectedSslErrors;
0063     QStringList m_ignoredSslHosts;
0064 };
0065 
0066 #endif // NETWORKMANAGER_H