]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blobdiff - src/views/BrowserView.cpp
Partial filter list implementation.
[PrivacyBrowserPC.git] / src / views / BrowserView.cpp
diff --git a/src/views/BrowserView.cpp b/src/views/BrowserView.cpp
deleted file mode 100644 (file)
index 90539a3..0000000
+++ /dev/null
@@ -1,347 +0,0 @@
-/*
- * Copyright © 2022 Soren Stoutner <soren@stoutner.com>.
- *
- * This file is part of Privacy Browser PC <https://www.stoutner.com/privacy-browser-pc>.
- *
- * Privacy Browser PC 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.
- *
- * Privacy Browser PC 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 Privacy Browser PC.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-// Application headers.
-#include "BrowserView.h"
-#include "MouseEventFilter.h"
-#include "Settings.h"
-#include "ui_BrowserView.h"
-#include "UrlRequestInterceptor.h"
-#include "helpers/DomainsDatabaseHelper.h"
-#include "helpers/SearchEngineHelper.h"
-#include "helpers/UserAgentHelper.h"
-#include "windows/BrowserWindow.h"
-
-// Qt framework headers.
-#include <QAction>
-#include <QWebEngineProfile>
-
-BrowserView::BrowserView(QWidget *parent) : QWidget(parent)
-{
-    // Instantiate the browser view UI.
-    Ui::BrowserView browserViewUi;
-
-    // Setup the UI.
-    browserViewUi.setupUi(this);
-
-    // Get handles for the views.
-    webEngineViewPointer = browserViewUi.webEngineView;
-
-    // Get handles for the aspects of the WebEngine.
-    QWebEnginePage *webEnginePagePointer = webEngineViewPointer->page();
-    webEngineHistoryPointer = webEnginePagePointer->history();
-    webEngineProfilePointer = webEnginePagePointer->profile();
-    webEngineSettingsPointer = webEngineViewPointer->settings();
-
-    // Update the URL line edit from the webengine view.
-    connect(webEngineViewPointer, SIGNAL(loadStarted()), this, SLOT(updateInterface()));
-    connect(webEngineViewPointer, SIGNAL(loadProgress(const int)), this, SLOT(updateInterface()));
-    connect(webEngineViewPointer, SIGNAL(loadFinished(const bool)), this, SLOT(updateInterface()));
-
-    // Instantiate the mouse event filter pointer.
-    MouseEventFilter *mouseEventFilterPointer = new MouseEventFilter(webEngineViewPointer);
-
-    // Install the mouse event filter.
-    qApp->installEventFilter(mouseEventFilterPointer);
-
-    // Listen for hovered link URLs.
-    connect(webEnginePagePointer, SIGNAL(linkHovered(const QString)), this, SLOT(pageLinkHovered(const QString)));
-
-    // Instantiate the URL request interceptor.
-    UrlRequestInterceptor *urlRequestInterceptorPointer = new UrlRequestInterceptor();
-
-    // Set the URL request interceptor.
-    webEngineProfilePointer->setUrlRequestInterceptor(urlRequestInterceptorPointer);
-
-    // Reapply the domain settings when the host changes.
-    connect(urlRequestInterceptorPointer, SIGNAL(applyDomainSettings(QString)), this, SLOT(applyDomainSettingsWithoutReloading(QString)));
-
-    // Disable the cache.
-    webEngineProfilePointer->setHttpCacheType(QWebEngineProfile::NoCache);
-
-    // Don't allow JavaScript to open windows.
-    webEngineSettingsPointer->setAttribute(QWebEngineSettings::JavascriptCanOpenWindows, false);
-
-    // Allow keyboard navigation.
-    webEngineSettingsPointer->setAttribute(QWebEngineSettings::SpatialNavigationEnabled, true);
-
-    // Enable full screen support.
-    webEngineSettingsPointer->setAttribute(QWebEngineSettings::FullScreenSupportEnabled, true);
-
-    // Require user interaction to play media.
-    webEngineSettingsPointer->setAttribute(QWebEngineSettings::PlaybackRequiresUserGesture, true);
-
-    // Limit WebRTC to public IP addresses.
-    webEngineSettingsPointer->setAttribute(QWebEngineSettings::WebRTCPublicInterfacesOnly, true);
-
-    // Set the focus on the WebEngine view.
-    webEngineViewPointer->setFocus();
-}
-
-void BrowserView::applyApplicationSettings()
-{
-    // Set the search engine URL.
-    searchEngineUrl = SearchEngineHelper::getSearchUrl(Settings::searchEngine());
-
-    // Emit the search engine updated signal, which causes the on-the-fly menu to be updated.
-    emit searchEngineUpdated(Settings::searchEngine());
-}
-
-// This exists as a separate function from `applyDomainSettings()` so it can be listed as a slot and function without the need for a boolean argument.
-// Once <https://redmine.stoutner.com/issues/799> has been resolved this can be `const`.
-void BrowserView::applyDomainSettingsAndReload()
-{
-    // Apply the domain settings.  `true` reloads the website.
-    applyDomainSettings(webEngineViewPointer->url().host(), true);
-}
-
-// This exists as a separate function from `applyDomainSettings()` so it can be listed as a slot and function without the need for a boolean argument.
-// Once <https://redmine.stoutner.com/issues/799> has been resolved this can be `const`.
-void BrowserView::applyDomainSettingsWithoutReloading(const QString &hostname)
-{
-    // Apply the domain settings  `false` does not reload the website.
-    applyDomainSettings(hostname, false);
-}
-
-// Once <https://redmine.stoutner.com/issues/799> has been resolved this can be `const`.
-void BrowserView::applyDomainSettings(const QString &hostname, const bool reloadWebsite)
-{
-    // Get the record for the hostname.
-    QSqlQuery domainQuery = DomainsDatabaseHelper::getDomainQuery(hostname);
-
-    // Check if the hostname has domain settings.
-    if (domainQuery.isValid())  // The hostname has domain settings.
-    {
-        // Get the domain record.
-        QSqlRecord domainRecord = domainQuery.record();
-
-        // Set the JavaScript status.
-        switch (domainRecord.field(DomainsDatabaseHelper::JAVASCRIPT).value().toInt())
-        {
-            case (DomainsDatabaseHelper::SYSTEM_DEFAULT):
-            {
-                // Set the default JavaScript status.
-                webEngineSettingsPointer->setAttribute(QWebEngineSettings::JavascriptEnabled, Settings::javaScript());
-
-                break;
-            }
-
-            case (DomainsDatabaseHelper::DISABLED):
-            {
-                // Disable JavaScript.
-                webEngineSettingsPointer->setAttribute(QWebEngineSettings::JavascriptEnabled, false);
-
-                break;
-            }
-
-            case (DomainsDatabaseHelper::ENABLED):
-            {
-                // Enable JavaScript.
-                webEngineSettingsPointer->setAttribute(QWebEngineSettings::JavascriptEnabled, true);
-
-                break;
-            }
-        }
-
-        // Set the user agent.
-        webEngineProfilePointer->setHttpUserAgent(UserAgentHelper::getResultingDomainSettingsUserAgent(domainRecord.field(DomainsDatabaseHelper::USER_AGENT).value().toString()));
-
-        // Check if a custom zoom factor is set.  This can be removed once <https://redmine.stoutner.com/issues/799> has been resolved.
-        if (domainRecord.field(DomainsDatabaseHelper::ZOOM_FACTOR).value().toInt())
-        {
-            // Store the current zoom factor.
-            currentZoomFactor = domainRecord.field(DomainsDatabaseHelper::CUSTOM_ZOOM_FACTOR).value().toDouble();
-        }
-        else
-        {
-            // Reset the current zoom factor.
-            currentZoomFactor = Settings::zoomFactor();
-        }
-
-        // Set the zoom factor.
-        webEngineViewPointer->setZoomFactor(currentZoomFactor);
-
-        // Apply the domain settings palette to the URL line edit.
-        emit updateDomainSettingsIndicator(true);
-    }
-    else  // The hostname does not have domain settings.
-    {
-        // Set the JavaScript status.
-        webEngineSettingsPointer->setAttribute(QWebEngineSettings::JavascriptEnabled, Settings::javaScript());
-
-        // Set the user agent.
-        webEngineProfilePointer->setHttpUserAgent(UserAgentHelper::getUserAgentFromDatabaseName(Settings::userAgent()));
-
-        // Store the current zoom factor.
-        currentZoomFactor = Settings::zoomFactor();
-
-        // Set the zoom factor.
-        webEngineViewPointer->setZoomFactor(currentZoomFactor);
-
-        // Apply the no domain settings palette to the URL line edit.
-        emit updateDomainSettingsIndicator(false);
-    }
-
-    // Emit the on-the-fly menu update signals.
-    emit updateJavaScriptAction(webEngineSettingsPointer->testAttribute(QWebEngineSettings::JavascriptEnabled));
-    emit userAgentUpdated(webEngineProfilePointer->httpUserAgent());
-    emit zoomFactorUpdated(Settings::zoomFactor());
-
-    // Reload the website if requested.
-    if (reloadWebsite)
-    {
-        webEngineViewPointer->reload();
-    }
-}
-
-void BrowserView::applyOnTheFlySearchEngine(QAction *searchEngineActionPointer)
-{
-    // Store the search engine name.
-    QString searchEngineName = searchEngineActionPointer->text();
-
-    // Strip out any `&` characters.
-    searchEngineName.remove('&');
-
-    // Store the search engine string.
-    searchEngineUrl = SearchEngineHelper::getSearchUrl(searchEngineName);
-}
-
-void BrowserView::applyOnTheFlyUserAgent(QAction *userAgentActionPointer) const
-{
-    // Get the user agent name.
-    QString userAgentName = userAgentActionPointer->text();
-
-    // Strip out any `&` characters.
-    userAgentName.remove('&');
-
-    // Apply the user agent.
-    webEngineProfilePointer->setHttpUserAgent(UserAgentHelper::getUserAgentFromTranslatedName(userAgentName));
-
-    // Reload the website.
-    webEngineViewPointer->reload();
-}
-
-void BrowserView::applyOnTheFlyZoomFactor(const double &zoomFactor) const
-{
-    // Set the zoom factor.
-    webEngineViewPointer->setZoomFactor(zoomFactor);
-}
-
-void BrowserView::back() const
-{
-    // Go back.
-    webEngineViewPointer->back();
-}
-
-void BrowserView::forward() const
-{
-    // Go forward.
-    webEngineViewPointer->forward();
-}
-
-void BrowserView::home() const
-{
-    // Load the homepage.
-    webEngineViewPointer->load(QUrl::fromUserInput(Settings::homepage()));
-}
-
-void BrowserView::loadInitialWebsite()
-{
-    // Apply the application settings.
-    applyApplicationSettings();
-
-    // Get the arguments.
-    QStringList argumentsStringList = qApp->arguments();
-
-    // Check to see if the arguments lists contains a URL.
-    if (argumentsStringList.size() > 1)
-    {
-        // Load the URL from the arguments list.
-        webEngineViewPointer->load(QUrl::fromUserInput(argumentsStringList.at(1)));
-    }
-    else
-    {
-        // Load the homepage.
-        home();
-    }
-}
-
-void BrowserView::loadUrlFromLineEdit(QString url) const
-{
-    // Decide if the text is more likely to be a URL or a search.
-    if (url.startsWith("file://"))  // The text is likely a file URL.
-    {
-        // Load the URL.
-        webEngineViewPointer->load(QUrl::fromUserInput(url));
-    }
-    else if (url.contains("."))  // The text is likely a URL.
-    {
-        // Check if the URL does not start with a valid protocol.
-        if (!url.startsWith("http"))
-        {
-            // Add `https://` to the beginning of the URL.
-            url = "https://" + url;
-        }
-
-        // Load the URL.
-        webEngineViewPointer->load(QUrl::fromUserInput(url));
-    }
-    else  // The text is likely a search.
-    {
-        // Load the search.
-        webEngineViewPointer->load(QUrl::fromUserInput(searchEngineUrl + url));
-    }
-}
-
-void BrowserView::pageLinkHovered(const QString &linkUrl) const
-{
-    // Emit a signal so that the browser window can update the status bar.
-    emit linkHovered(linkUrl);
-}
-
-void BrowserView::refresh() const
-{
-    // Reload the website.
-    webEngineViewPointer->reload();
-}
-
-void BrowserView::toggleJavaScript() const
-{
-    // Toggle JavaScript.
-    webEngineSettingsPointer->setAttribute(QWebEngineSettings::JavascriptEnabled, !webEngineSettingsPointer->testAttribute(QWebEngineSettings::JavascriptEnabled));
-
-    // Update the JavaScript icon.
-    emit updateJavaScriptAction(webEngineSettingsPointer->testAttribute(QWebEngineSettings::JavascriptEnabled));
-
-    // Reload the website.
-    webEngineViewPointer->reload();
-}
-
-void BrowserView::updateInterface() const
-{
-    // Update the URL line edit.
-    emit updateUrlLineEdit(webEngineViewPointer->url().toString());
-
-    // Update the status of the forward and back buttons.
-    emit updateBackAction(webEngineHistoryPointer->canGoBack());
-    emit updateForwardAction(webEngineHistoryPointer->canGoForward());
-
-    // Reapply the zoom factor.  This is a bug in QWebEngineView that resets the zoom with every load.  <https://redmine.stoutner.com/issues/799>
-    webEngineViewPointer->setZoomFactor(currentZoomFactor);
-}