1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00

Bring back support for sending DNT header to servers

This commit is contained in:
David Rosca 2015-10-05 22:32:55 +02:00
parent 39c920f3ce
commit 3ec6da6103
3 changed files with 26 additions and 4 deletions

View File

@ -237,4 +237,6 @@ void NetworkManager::loadSettings()
settings.endGroup();
mApp->webProfile()->setHttpAcceptLanguage(AcceptLanguage::generateHeader(langs));
m_urlInterceptor->loadSettings();
}

View File

@ -18,20 +18,29 @@
#include "networkurlinterceptor.h"
#include "urlinterceptor.h"
#include "settings.h"
NetworkUrlInterceptor::NetworkUrlInterceptor(QObject *parent)
: QWebEngineUrlRequestInterceptor(parent)
, m_sendDNT(false)
{
}
bool NetworkUrlInterceptor::interceptRequest(QWebEngineUrlRequestInfo &info)
{
foreach (UrlInterceptor *interceptor, m_interceptors) {
if (interceptor->interceptRequest(info))
return true;
bool result = false;
if (m_sendDNT) {
result = true;
info.setExtraHeader(QByteArrayLiteral("DNT"), QByteArrayLiteral("1"));
}
return false;
foreach (UrlInterceptor *interceptor, m_interceptors) {
if (interceptor->interceptRequest(info))
result = true;
}
return result;
}
void NetworkUrlInterceptor::installUrlInterceptor(UrlInterceptor *interceptor)
@ -44,3 +53,11 @@ void NetworkUrlInterceptor::removeUrlInterceptor(UrlInterceptor *interceptor)
{
m_interceptors.removeOne(interceptor);
}
void NetworkUrlInterceptor::loadSettings()
{
Settings settings;
settings.beginGroup("Web-Browser-Settings");
m_sendDNT = settings.value("DoNotTrack", false).toBool();
settings.endGroup();
}

View File

@ -35,8 +35,11 @@ public:
void installUrlInterceptor(UrlInterceptor *interceptor);
void removeUrlInterceptor(UrlInterceptor *interceptor);
void loadSettings();
private:
QList<UrlInterceptor*> m_interceptors;
bool m_sendDNT;
};
#endif // NETWORKURLINTERCEPTOR_H