goldendict-ng/weburlrequestinterceptor.cpp

46 lines
1.3 KiB
C++
Raw Normal View History

2021-12-11 16:34:37 +00:00
#include "weburlrequestinterceptor.h"
#include <QDebug>
#include "utils.hh"
#include "globalbroadcaster.h"
2021-12-11 16:34:37 +00:00
WebUrlRequestInterceptor::WebUrlRequestInterceptor(QObject *p)
:QWebEngineUrlRequestInterceptor(p)
{
}
2021-12-31 14:11:55 +00:00
void WebUrlRequestInterceptor::interceptRequest( QWebEngineUrlRequestInfo &info) {
if( GlobalBroadcaster::instance()->getPreference()->disallowContentFromOtherSites && Utils::isExternalLink( info.requestUrl() ) )
{
//file:// link ,pass
if(info.requestUrl().scheme()=="file"){
return;
}
auto hostBase = getHostBase( info.requestUrl().host() );
if( GlobalBroadcaster::instance()->existedInWhitelist( hostBase ) )
{
//whitelist url does not block
return;
}
if(Utils::isCssFontImage(info.requestUrl())){
//let throuth the resources file.
return;
}
// block external links
{
info.block( true );
return;
}
}
2021-12-31 14:11:55 +00:00
if (QWebEngineUrlRequestInfo::NavigationTypeLink == info.navigationType() && info.resourceType() == QWebEngineUrlRequestInfo::ResourceTypeMainFrame) {
//workaround to fix devtool "Switch devtool to chinese" interface was blocked.
if( info.requestUrl().scheme() == "devtools" )
{
return;
}
// emit linkClicked( info.requestUrl() );
// info.block(true);
}
2021-12-11 16:34:37 +00:00
}