-# Copyright © 2022-2023 Soren Stoutner <soren@stoutner.com>.
+# Copyright 2022-2023 Soren Stoutner <soren@stoutner.com>.
#
# This file is part of Privacy Browser PC <https://www.stoutner.com/privacy-browser-pc>.
#
/*
- * Copyright © 2022 Soren Stoutner <soren@stoutner.com>.
+ * Copyright 2022-2023 Soren Stoutner <soren@stoutner.com>.
*
* This file is part of Privacy Browser PC <https://www.stoutner.com/privacy-browser-pc>.
*
// KDE Framework headers.
#include <KLocalizedString>
-// Qt framework headers.
-#include <QMessageBox>
-
// Construct the class.
UrlRequestInterceptor::UrlRequestInterceptor(QObject *parentObjectPointer) : QWebEngineUrlRequestInterceptor(parentObjectPointer) {}
// A naughty HTTP ping request.
case QWebEngineUrlRequestInfo::ResourceTypePing:
{
- // Block HTTP ping requests.
+ // Block the HTTP ping request.
urlRequestInfo.block(true);
- // Instantiate an HTTP ping blocked message box.
- QMessageBox httpPingBlockedMessageBox;
-
- // Set the icon.
- httpPingBlockedMessageBox.setIcon(QMessageBox::Information);
-
- // Set the window title.
- httpPingBlockedMessageBox.setWindowTitle(i18nc("HTTP Ping blocked dialog title", "HTTP Ping Blocked"));
-
- // Set the text.
- httpPingBlockedMessageBox.setText(i18nc("HTTP Ping blocked dialog text", "This request has been blocked because it sends a naughty HTTP ping to %1.",
- urlRequestInfo.requestUrl().toString()));
-
- // Set the standard button.
- httpPingBlockedMessageBox.setStandardButtons(QMessageBox::Ok);
-
- // Display the message box.
- httpPingBlockedMessageBox.exec();
+ // Display the HTTP Ping blocked dialog.
+ emit displayHttpPingDialog(urlRequestInfo.requestUrl().toString());
break;
}
/*
- * Copyright © 2022 Soren Stoutner <soren@stoutner.com>.
+ * Copyright 2022-2023 Soren Stoutner <soren@stoutner.com>.
*
* This file is part of Privacy Browser PC <https://www.stoutner.com/privacy-browser-pc>.
*
signals:
// The signals.
- void applyDomainSettings(const QString hostname) const;
+ void applyDomainSettings(const QString &hostname) const;
+ void displayHttpPingDialog(const QString &httpPingUrl) const;
};
#endif
webEngineProfilePointer->setUrlRequestInterceptor(urlRequestInterceptorPointer);
// Reapply the domain settings when the host changes.
- connect(urlRequestInterceptorPointer, SIGNAL(applyDomainSettings(QString)), this, SLOT(applyDomainSettingsWithoutReloading(QString)));
+ connect(urlRequestInterceptorPointer, SIGNAL(applyDomainSettings(const QString&)), this, SLOT(applyDomainSettingsWithoutReloading(const QString&)));
+
+ // Display HTTP Ping blocked dialogs.
+ connect(urlRequestInterceptorPointer, SIGNAL(displayHttpPingDialog(const QString&)), this, SLOT(displayHttpPingDialog(const QString&)));
}
void PrivacyWebEngineView::addCookieToList(const QNetworkCookie &cookie) const
}
}
+void PrivacyWebEngineView::displayHttpPingDialog(const QString &httpPingUrl) const
+{
+ // Display the HTTP Ping blocked dialog.
+ emit displayHttpPingBlockedDialog(httpPingUrl);
+}
+
void PrivacyWebEngineView::removeCookieFromList(const QNetworkCookie &cookie) const
{
//qDebug() << "Remove cookie: " << cookie.toRawForm();
signals:
// The signals.
+ void displayHttpPingBlockedDialog(const QString &httpPingUrl) const;
void updateCookiesAction(const int numberOfCookies) const;
void updateUi(const PrivacyWebEngineView *privacyWebEngineViewPointer) const;
private Q_SLOTS:
// The private slots.
void applyDomainSettingsWithoutReloading(const QString &hostname);
+ void displayHttpPingDialog(const QString &httpPingUrl) const;
private:
// The private variables.
#include <QFileDialog>
#include <QGraphicsScene>
#include <QGraphicsView>
+#include <QMessageBox>
#include <QPrintDialog>
#include <QPrintPreviewDialog>
#include <QPrinter>
emit hideProgressBar();
});
+ // Display HTTP Ping blocked dialogs.
+ connect(privacyWebEngineViewPointer, &PrivacyWebEngineView::displayHttpPingBlockedDialog, [privacyWebEngineViewPointer, this] (const QString &httpPingUrl)
+ {
+ // Only display the HTTP Ping blocked dialog if this is the current tab.
+ if (privacyWebEngineViewPointer == currentPrivacyWebEngineViewPointer)
+ {
+ // Instantiate an HTTP ping blocked message box.
+ QMessageBox httpPingBlockedMessageBox;
+
+ // Set the icon.
+ httpPingBlockedMessageBox.setIcon(QMessageBox::Information);
+
+ // Set the window title.
+ httpPingBlockedMessageBox.setWindowTitle(i18nc("HTTP Ping blocked dialog title", "HTTP Ping Blocked"));
+
+ // Set the text.
+ httpPingBlockedMessageBox.setText(i18nc("HTTP Ping blocked dialog text", "This request has been blocked because it sends a naughty HTTP ping to %1.", httpPingUrl));
+
+ // Set the standard button.
+ httpPingBlockedMessageBox.setStandardButtons(QMessageBox::Ok);
+
+ // Display the message box.
+ httpPingBlockedMessageBox.exec();
+ }
+ });
+
// Update the zoom factor when changed by CTRL-Scrolling. This can be modified when <https://redmine.stoutner.com/issues/845> is fixed.
connect(webEnginePagePointer, &QWebEnginePage::contentsSizeChanged, [webEnginePagePointer, this] ()
{