X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=src%2FUrlRequestInterceptor.cpp;fp=src%2FUrlRequestInterceptor.cpp;h=0000000000000000000000000000000000000000;hb=bbc06827f4301381ee3882000abbba147607aa35;hp=10f986200b9e60cd546c6fd63dc8310947edd432;hpb=27ddfe8833b1ebaf499755135aa5cbfc72acb802;p=PrivacyBrowserPC.git diff --git a/src/UrlRequestInterceptor.cpp b/src/UrlRequestInterceptor.cpp deleted file mode 100644 index 10f9862..0000000 --- a/src/UrlRequestInterceptor.cpp +++ /dev/null @@ -1,74 +0,0 @@ -/* - * Copyright © 2022 Soren Stoutner . - * - * This file is part of 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 . - */ - -// Application headers. -#include "UrlRequestInterceptor.h" - -// The default constructor. -UrlRequestInterceptor::UrlRequestInterceptor(QObject *parentObjectPointer) : QWebEngineUrlRequestInterceptor(parentObjectPointer) {} - -void UrlRequestInterceptor::interceptRequest(QWebEngineUrlRequestInfo &urlRequestInfo) -{ - // Handle the request according to the navigation type. - switch (urlRequestInfo.navigationType()) - { - case QWebEngineUrlRequestInfo::NavigationTypeLink: - case QWebEngineUrlRequestInfo::NavigationTypeTyped: - { - // Only check the hosts if the main URL is changing. - if (urlRequestInfo.resourceType() == QWebEngineUrlRequestInfo::ResourceTypeMainFrame) - { - // Get the hosts. - QString requestingHost = urlRequestInfo.initiator().host(); - QString requestedHost = urlRequestInfo.requestUrl().host(); - - // Reapply the domain settings if the host is changing. - if (requestingHost != requestedHost) - { - emit applyDomainSettings(requestedHost); - } - } - - break; - } - - default: - // Do nothing. - break; - } - - // Handle the request according to the resource type. - switch (urlRequestInfo.resourceType()) - { - // A naughty HTTP ping request. - case QWebEngineUrlRequestInfo::ResourceTypePing: - { - // Block HTTP ping requests. - urlRequestInfo.block(true); - - break; - } - - default: - { - // Do nothing. - break; - } - } -}